/* ==========================================================================
   Bloxvale — Design Tokens
   ========================================================================== */

:root {
  --bg: #0b0d14;
  --bg-elevated: #12151f;
  --card: rgba(22, 24, 39, 0.82);
  --card-solid: #161827;
  --accent: #3b82f6;
  --accent-light: #60a5fa;
  --accent-violet: #8b5cf6;
  --text: #ffffff;
  --muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.14);
  --green: #34d399;
  --amber: #fbbf24;
  --red: #f87171;
  --radius-sm: 0.75rem;
  --radius-md: 1rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.5rem;
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.25);
  --container: 72rem;
  --prose-width: 70ch;
  --font: "Inter", ui-sans-serif, system-ui, sans-serif;
  --transition: 200ms ease;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

::selection {
  background: rgba(59, 130, 246, 0.35);
  color: var(--text);
}

/* ==========================================================================
   Utilities
   ========================================================================== */

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.section-title {
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.eyebrow--blue {
  padding: 0;
  background: none;
  border: none;
  color: var(--accent-light);
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: var(--text);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.page-glow {
  pointer-events: none;
  position: fixed;
  inset: 0 0 auto;
  height: 600px;
  background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.12), transparent 60%);
  z-index: 0;
}

/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: relative;
  z-index: 10;
  padding-block: 1.25rem;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--accent), var(--accent-violet));
}

.logo-text {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.online-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.online-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  z-index: 1;
  padding-block: clamp(2rem, 5vw, 3.5rem) clamp(2.5rem, 6vw, 4rem);
  text-align: center;
}

.hero-inner {
  max-width: 42rem;
}

.hero .eyebrow {
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 1.5rem + 2.5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #60a5fa, #93c5fd, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  margin-top: 1.25rem;
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  line-height: 1.65;
  color: var(--muted);
}

.hero-sub {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(148, 163, 184, 0.8);
}

/* ==========================================================================
   Tool Cards
   ========================================================================== */

.tools {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(2rem, 5vw, 3rem);
}

.tools-grid {
  display: grid;
  gap: 1rem;
  max-width: 56rem;
}

.tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: clamp(1.5rem, 4vw, 2rem);
  text-align: center;
  font: inherit;
  color: inherit;
  cursor: pointer;
  transition: border-color var(--transition);
}

.tool-card:hover,
.tool-card:focus-visible {
  border-color: var(--border-hover);
}

button.tool-card {
  appearance: none;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.tool-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 0;
}

.tool-icon--violet {
  background: rgba(139, 92, 246, 0.12);
}

.tool-icon--blue {
  background: rgba(59, 130, 246, 0.12);
}

.tool-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.tool-name {
  font-size: 1.125rem;
  font-weight: 700;
}

.badge {
  padding: 0.125rem 0.5rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 0.375rem;
}

.badge--violet {
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.2);
}

.badge--blue {
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.2);
}

.tool-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

.tool-live {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(52, 211, 153, 0.9);
}

/* ==========================================================================
   Features
   ========================================================================== */

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.125rem;
  border-radius: var(--radius-md);
}

.feature-icon--amber {
  background: rgba(251, 191, 36, 0.1);
}

.feature-icon--red {
  background: rgba(248, 113, 113, 0.1);
}

.feature-icon--blue {
  background: rgba(59, 130, 246, 0.1);
}

.feature-icon--green {
  background: rgba(52, 211, 153, 0.1);
}

.feature-name {
  font-size: clamp(0.875rem, 0.85rem + 0.15vw, 1rem);
  font-weight: 600;
}

.feature-desc {
  margin-top: 0.125rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
}

/* ==========================================================================
   SEO Content Section
   ========================================================================== */

.seo-card {
  padding: clamp(1.75rem, 4vw, 3.5rem);
}

.seo-header {
  max-width: 48rem;
  margin-bottom: 2.5rem;
}

.seo-header h2 {
  font-size: clamp(1.5rem, 1.25rem + 1vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.seo-body {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.prose {
  max-width: var(--prose-width);
}

.prose p {
  line-height: 1.8;
  color: var(--muted);
}

.prose p + p {
  margin-top: 1.25rem;
}

.prose h3 {
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1rem;
}

.prose--conclusion {
  max-width: var(--prose-width);
  line-height: 1.8;
  color: var(--muted);
}

/* Info highlight box */
.info-box {
  padding: clamp(1.25rem, 3vw, 2rem);
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-xl);
}

.info-box-label {
  margin-bottom: 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #93c5fd;
}

.info-grid {
  display: grid;
  gap: 1.25rem;
}

.info-item {
  display: flex;
  gap: 0.75rem;
}

.info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  color: var(--accent-light);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.info-icon--green {
  color: var(--green);
}

.info-icon--violet {
  color: #a78bfa;
}

.info-title {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.info-desc {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
}

.seo-subsections {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Check list */
.check-list {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-list li {
  position: relative;
  padding-left: 1.25rem;
  line-height: 1.8;
  color: var(--muted);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: var(--accent-light);
  transform: translateY(-50%);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: var(--border-hover);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  font-size: clamp(0.875rem, 0.85rem + 0.15vw, 1rem);
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.faq-item p {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 0.75rem;
  margin-top: 0;
}

/* ==========================================================================
   CTA
   ========================================================================== */

.cta-card {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  text-align: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.06));
  border-color: rgba(59, 130, 246, 0.25);
}

.cta-card h2 {
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  font-weight: 700;
}

.cta-card p {
  max-width: 42rem;
  margin: 0.75rem auto 0;
  line-height: 1.8;
  color: var(--muted);
}

.cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.btn:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 2px;
}

.btn--primary {
  color: var(--text);
  background: linear-gradient(135deg, var(--accent), #2563eb);
}

.btn--primary:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.btn--secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border);
}

.btn--secondary:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   Stats
   ========================================================================== */

.stats {
  padding-block: clamp(2.5rem, 5vw, 4rem) clamp(3rem, 6vw, 5rem);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 48rem;
  text-align: center;
}

.stat-value {
  font-size: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  font-weight: 700;
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  margin-top: 0.25rem;
  font-size: clamp(0.6875rem, 0.65rem + 0.15vw, 0.875rem);
  color: var(--muted);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding-block: 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-inner p {
  font-size: 0.8125rem;
  color: var(--muted);
  text-align: center;
}

/* ==========================================================================
   Responsive — 480px+
   ========================================================================== */

@media (min-width: 480px) {
  .container {
    width: min(100% - 2.5rem, var(--container));
  }

  .cta-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* ==========================================================================
   Responsive — 768px+
   ========================================================================== */

@media (min-width: 768px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .feature-item {
    align-items: center;
  }

  .info-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .stats-grid {
    gap: 2rem;
  }
}

/* ==========================================================================
   Responsive — 1024px+
   ========================================================================== */

@media (min-width: 1024px) {
  .container {
    width: min(100% - 3rem, var(--container));
  }

  .header-inner {
    padding-inline: 0;
  }
}

/* ==========================================================================
   Responsive — 1440px+
   ========================================================================== */

@media (min-width: 1440px) {
  :root {
    --container: 75rem;
  }
}

/* ==========================================================================
   Connect Delta Modal
   ========================================================================== */

body.is-modal-open {
  overflow: hidden;
}

.connect-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  background: var(--bg);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.connect-modal[hidden] {
  display: none;
}

.connect-modal__panel {
  width: 100%;
  max-width: 28rem;
  min-height: 100dvh;
  padding: clamp(1.25rem, 4vw, 2rem);
}

.connect-modal__header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 1.75rem;
}

.connect-modal__back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.connect-modal__back:hover {
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.08);
}

.connect-modal__back:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 2px;
}

.connect-modal__title {
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.connect-modal__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.connect-detect {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: var(--radius-md);
}

.connect-detect strong {
  font-weight: 600;
  color: #a7f3d0;
}

.connect-product {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
}

.connect-product__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.connect-product__info {
  flex: 1;
  min-width: 0;
}

.connect-product__name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
}

.connect-product__desc {
  margin-top: 0.125rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.connect-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.connect-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.connect-input {
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.875rem 1rem;
  font: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition);
}

.connect-input::placeholder {
  color: rgba(148, 163, 184, 0.6);
}

.connect-input:focus {
  border-color: rgba(139, 92, 246, 0.5);
}

.connect-input:focus-visible {
  outline: 2px solid rgba(139, 92, 246, 0.35);
  outline-offset: 2px;
}

.connect-platforms {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.connect-platform {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.75rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.connect-platform input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.connect-platform__icon {
  font-size: 1.375rem;
  line-height: 1;
}

.connect-platform__text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.connect-platform__text strong {
  font-size: 0.875rem;
  font-weight: 600;
}

.connect-platform__text em {
  font-size: 0.6875rem;
  font-style: normal;
  color: var(--muted);
}

.connect-platform:has(input:checked) {
  border-color: rgba(139, 92, 246, 0.45);
  background: rgba(139, 92, 246, 0.08);
}

.connect-platform:has(input:focus-visible) {
  outline: 2px solid rgba(139, 92, 246, 0.35);
  outline-offset: 2px;
}

.connect-submit {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem 1.5rem;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #c4b5fd;
  background: linear-gradient(135deg, #5b21b6, #6d28d9);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}

.connect-submit:hover:not(:disabled) {
  opacity: 0.92;
}

.connect-submit:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 2px;
}

.connect-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.connect-status {
  min-height: 1.25rem;
  font-size: 0.8125rem;
  text-align: center;
  color: var(--muted);
}

.connect-status.is-success {
  color: var(--green);
}

.connect-status.is-error {
  color: var(--red);
}

@media (min-width: 768px) {
  .connect-modal {
    justify-content: flex-start;
    padding-left: clamp(2rem, 8vw, 6rem);
  }

  .connect-modal__panel {
    min-height: auto;
    padding-top: clamp(2rem, 5vw, 3rem);
  }
}

@media (min-width: 1024px) {
  .connect-modal__panel {
    max-width: 26rem;
  }
}

/* ==========================================================================
   Setup Delta Modal
   ========================================================================== */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.setup-modal__panel {
  max-width: 30rem;
}

.setup-toast {
  position: fixed;
  top: 1rem;
  left: 50%;
  z-index: 1001;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: calc(100% - 2rem);
  padding: 0.625rem 1rem;
  font-size: 0.75rem;
  color: var(--muted);
  background: rgba(22, 24, 39, 0.95);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  transform: translateX(-50%);
  animation: setupToastIn 400ms ease;
}

.setup-toast[hidden] {
  display: none;
}

.setup-toast__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
  flex-shrink: 0;
}

@keyframes setupToastIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-0.5rem);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.setup-modal__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.setup-connected {
  padding: 1rem 1.125rem;
  border-top: 3px solid var(--accent-violet);
  background: rgba(139, 92, 246, 0.06);
}

.setup-connected__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #c4b5fd;
}

.setup-connected__sub {
  margin-top: 0.25rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.setup-user {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
}

.setup-user__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  font-size: 1.125rem;
  background: rgba(251, 191, 36, 0.12);
  border-radius: 50%;
  overflow: hidden;
}

.setup-user__info {
  flex: 1;
  min-width: 0;
}

.setup-user__name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  word-break: break-word;
}

.setup-user__platform {
  margin-top: 0.125rem;
  font-size: 0.8125rem;
  color: var(--muted);
}

.setup-ready-badge {
  flex-shrink: 0;
  padding: 0.25rem 0.625rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.15);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 999px;
}

.setup-section-title {
  margin-bottom: 0.875rem;
  font-size: 1rem;
  font-weight: 700;
}

.setup-config-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.setup-config-item {
  padding: 0;
}

.setup-config-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.875rem 1rem;
  cursor: pointer;
  user-select: none;
}

.setup-config-row input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.setup-config-item:has(.setup-config-check:not(:checked)) {
  opacity: 0.72;
}

.setup-config-item:has(.setup-config-check:not(:checked)) .setup-config-item__text strong {
  color: var(--muted);
}

.setup-check-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: transparent;
  background: transparent;
  border: 2px solid rgba(139, 92, 246, 0.35);
  border-radius: 50%;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.setup-config-row input:checked ~ .setup-check-toggle {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.setup-config-row input:checked ~ .setup-check-toggle::before {
  content: "✓";
}

.setup-config-row input:focus-visible ~ .setup-check-toggle,
.setup-config-row--switch input:focus-visible ~ .setup-toggle {
  outline: 2px solid var(--accent-light);
  outline-offset: 2px;
}

.setup-config-row--switch .setup-toggle {
  position: relative;
  flex-shrink: 0;
  display: inline-block;
  width: 2.75rem;
  height: 1.5rem;
  pointer-events: none;
}

.setup-config-row--switch .setup-toggle__slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transition: background var(--transition);
}

.setup-config-row--switch .setup-toggle__slider::before {
  content: "";
  position: absolute;
  left: 0.1875rem;
  top: 0.1875rem;
  width: 1.125rem;
  height: 1.125rem;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
}

.setup-config-row--switch input:checked ~ .setup-toggle .setup-toggle__slider {
  background: var(--accent-violet);
}

.setup-config-row--switch input:checked ~ .setup-toggle .setup-toggle__slider::before {
  transform: translateX(1.25rem);
}

.setup-config-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  font-size: 1.125rem;
  line-height: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.setup-config-item__text {
  flex: 1;
  min-width: 0;
}

.setup-config-item__text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
}

.setup-config-item__text p {
  margin-top: 0.125rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--muted);
}

.setup-check {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
}

/* Legacy setup-toggle (unused in config rows — kept for compatibility) */
.setup-toggle {
  position: relative;
  flex-shrink: 0;
  display: inline-block;
  width: 2.75rem;
  height: 1.5rem;
  cursor: pointer;
}

.setup-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.setup-toggle__slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transition: background var(--transition);
}

.setup-toggle__slider::before {
  content: "";
  position: absolute;
  left: 0.1875rem;
  top: 0.1875rem;
  width: 1.125rem;
  height: 1.125rem;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
}

.setup-toggle input:checked + .setup-toggle__slider {
  background: var(--accent-violet);
}

.setup-toggle input:checked + .setup-toggle__slider::before {
  transform: translateX(1.25rem);
}

.setup-toggle input:focus-visible + .setup-toggle__slider {
  outline: 2px solid var(--accent-light);
  outline-offset: 2px;
}

.setup-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  font-size: 0.6875rem;
  color: var(--muted);
}

.setup-add-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ede9fe;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: opacity var(--transition);
}

.setup-add-btn:hover:not(:disabled) {
  opacity: 0.92;
}

.setup-add-btn:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 2px;
}

.setup-add-btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.setup-activity__label {
  margin-bottom: 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.setup-activity__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.setup-activity__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.setup-activity__item span:first-child {
  flex: 1;
  min-width: 0;
}

.setup-verified {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--green);
}

.setup-pending {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--amber);
}

@media (min-width: 768px) {
  .setup-modal__panel {
    min-height: auto;
  }
}

/* ==========================================================================
   Connecting Delta Loading Modal
   ========================================================================== */

.loading-modal {
  align-items: center;
  justify-content: center;
}

.loading-modal__panel {
  width: 100%;
  max-width: 22rem;
  padding: clamp(2rem, 6vw, 3rem) clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}

.loading-ring-wrap {
  position: relative;
  width: 7.5rem;
  height: 7.5rem;
  margin: 0 auto 1.25rem;
}

.loading-ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.loading-ring__track {
  fill: none;
  stroke: rgba(139, 92, 246, 0.15);
  stroke-width: 4;
}

.loading-ring__progress {
  fill: none;
  stroke: #a78bfa;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 326.73;
  stroke-dashoffset: 326.73;
}

.loading-ring__icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-percent {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 1.5rem + 2vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #a78bfa;
}

.loading-title {
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.loading-subtitle {
  margin-top: 0.375rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.loading-bar {
  width: 100%;
  height: 0.375rem;
  margin-bottom: 2rem;
  background: rgba(139, 92, 246, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.loading-bar__fill {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
  border-radius: 999px;
}

.loading-steps {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  text-align: left;
}

.loading-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(148, 163, 184, 0.45);
  transition: color 300ms ease;
}

.loading-step.is-active {
  color: var(--muted);
}

.loading-step.is-done {
  color: var(--text);
}

.loading-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 300ms ease, border-color 300ms ease;
}

.loading-step.is-active .loading-step__icon {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.35);
}

.loading-step.is-done .loading-step__icon {
  background: rgba(52, 211, 153, 0.15);
  border-color: rgba(52, 211, 153, 0.35);
  color: var(--green);
  font-size: 0.6875rem;
  font-weight: 700;
}

.loading-step.is-done .loading-step__icon::before {
  content: "✓";
}

@media (min-width: 768px) {
  .loading-modal {
    padding-left: 0;
    justify-content: center;
  }
}

/* ==========================================================================
   Installing Delta Modal
   ========================================================================== */

.install-modal {
  align-items: center;
  justify-content: center;
}

.install-modal__panel {
  width: 100%;
  max-width: 20rem;
  padding: clamp(2rem, 6vw, 3rem) clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}

.install-icon {
  display: block;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  line-height: 1;
  filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.35));
  animation: installPulse 1.5s ease-in-out infinite;
}

@keyframes installPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.85;
  }
}

.install-title {
  font-size: clamp(1.375rem, 1.2rem + 0.6vw, 1.625rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.install-subtitle {
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.install-bar {
  width: 100%;
  height: 0.3125rem;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
}

.install-bar__fill {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #7c3aed, #a78bfa);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(167, 139, 250, 0.45);
}

@media (min-width: 768px) {
  .install-modal {
    padding-left: 0;
    justify-content: center;
  }
}

/* ==========================================================================
   Delta Ready Modal
   ========================================================================== */

.ready-modal {
  align-items: center;
  justify-content: center;
}

.ready-modal__panel {
  width: 100%;
  max-width: 24rem;
  padding: clamp(2rem, 6vw, 3rem) clamp(1.25rem, 4vw, 2rem);
  text-align: center;
}

.ready-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  color: var(--green);
  background: rgba(52, 211, 153, 0.12);
  border: 2px solid rgba(52, 211, 153, 0.35);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(52, 211, 153, 0.25);
}

.ready-title {
  font-size: clamp(1.5rem, 1.3rem + 0.6vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--green);
}

.ready-desc {
  margin-top: 0.625rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

.ready-desc strong {
  color: var(--text);
  font-weight: 600;
}

.recaptcha-box {
  padding: 1rem 1.125rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
}

.recaptcha-box__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.recaptcha-box__label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.recaptcha-box__badge {
  padding: 0.2rem 0.5rem;
  font-size: 0.5625rem;
  font-weight: 600;
  color: #6ee7b7;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 999px;
  white-space: nowrap;
}

.recaptcha-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.recaptcha-check input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.recaptcha-check__box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  background: #fff;
  border: 2px solid #cbd5e1;
  border-radius: 0.1875rem;
  transition: background var(--transition), border-color var(--transition), width var(--transition), height var(--transition);
}

.recaptcha-check__icon {
  display: none;
  color: #fff;
}

.recaptcha-check input:checked + .recaptcha-check__box {
  background: var(--accent);
  border-color: var(--accent);
}

.recaptcha-check input:checked + .recaptcha-check__box::after {
  content: "✓";
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.recaptcha-check.is-verifying {
  pointer-events: none;
  cursor: default;
}

.recaptcha-check.is-verifying .recaptcha-check__box {
  width: 2rem;
  height: 2rem;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.375rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  animation: recaptchaBoxSpin 1.1s linear infinite;
}

.recaptcha-check.is-verifying .recaptcha-check__box::after {
  content: none;
}

.recaptcha-check.is-verifying .recaptcha-check__icon {
  display: block;
}

.recaptcha-check.is-verifying .recaptcha-check__text {
  color: var(--muted);
}

@keyframes recaptchaBoxSpin {
  from {
    transform: rotate(12deg);
  }
  to {
    transform: rotate(372deg);
  }
}

.recaptcha-check input:focus-visible + .recaptcha-check__box {
  outline: 2px solid var(--accent-light);
  outline-offset: 2px;
}

.recaptcha-check__text {
  font-size: 0.875rem;
  color: var(--text);
}

.recaptcha-box__footer {
  margin-top: 1rem;
  font-size: 0.625rem;
  color: rgba(148, 163, 184, 0.6);
  text-align: right;
}

.recaptcha-box__footer a {
  color: inherit;
  pointer-events: none;
}

.ready-footer {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.55);
}

.ready-footer.is-done {
  color: var(--green);
}

.ready-verify-loading {
  padding: 2rem 0;
  text-align: center;
}

.ready-verify-loading[hidden] {
  display: none;
}

.ready-verify-loading__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin: 0 auto 1.25rem;
  color: #a78bfa;
  animation: installPulse 1.5s ease-in-out infinite;
}

.ready-verify-loading__title {
  font-size: 1.125rem;
  font-weight: 700;
}

.ready-verify-loading__sub {
  margin-top: 0.375rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: var(--muted);
}

.recaptcha-box--failed {
  border-color: rgba(248, 113, 113, 0.2);
}

.recaptcha-failed {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.25rem 0;
}

.recaptcha-failed__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.375rem;
  height: 1.375rem;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #fff;
  background: #ef4444;
  border-radius: 0.25rem;
}

.recaptcha-failed__title {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #f87171;
}

.recaptcha-failed__sub {
  margin-top: 0.125rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.verify-now-btn {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #ede9fe;
  background: linear-gradient(135deg, #7c3aed, #6d28d9);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: opacity var(--transition);
}

.verify-now-btn:hover:not(:disabled) {
  opacity: 0.92;
}

.verify-now-btn:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 2px;
}

.verify-now-btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

#recaptcha-failed-wrap[hidden] {
  display: none;
}

@media (min-width: 768px) {
  .ready-modal {
    padding-left: 0;
    justify-content: center;
  }
}

/* ==========================================================================
   Free Robux Flow
   ========================================================================== */

.connect-detect--robux {
  color: #6ee7b7;
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(52, 211, 153, 0.25);
}

.connect-product__icon--robux {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.connect-submit--robux {
  color: #bfdbfe;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

.connect-platforms--robux .connect-platform:has(input:checked) {
  border-color: rgba(59, 130, 246, 0.45);
  background: rgba(59, 130, 246, 0.08);
}

.loading-ring__track--robux {
  stroke: rgba(59, 130, 246, 0.15);
}

.loading-ring__progress--robux {
  stroke: #60a5fa;
  stroke-dasharray: 326.73;
  stroke-dashoffset: 326.73;
}

.loading-percent--robux {
  color: #60a5fa;
}

.loading-bar__fill--robux,
.install-bar__fill--robux {
  background: linear-gradient(90deg, #2563eb, #60a5fa);
  box-shadow: 0 0 12px rgba(96, 165, 250, 0.45);
}

.loading-step.is-active .loading-step__icon {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.35);
}

.robux-flow .loading-step.is-active .loading-step__icon {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.35);
}

.choose-robux-modal__panel {
  max-width: 30rem;
}

.choose-robux-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.robux-connected-banner {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  font-size: 0.8125rem;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: var(--radius-md);
}

.robux-connected-banner strong {
  display: block;
  color: #6ee7b7;
  font-weight: 600;
}

.robux-connected-banner span {
  color: var(--muted);
}

.robux-connected-banner__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.6);
  flex-shrink: 0;
}

.setup-user__avatar--robux {
  background: rgba(59, 130, 246, 0.12);
}

.robux-linked-badge {
  flex-shrink: 0;
  padding: 0.25rem 0.625rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #93c5fd;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 999px;
}

.choose-robux-heading {
  font-size: 1rem;
  font-weight: 700;
}

.robux-amount-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.robux-amount-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 1.25rem 0.75rem;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.robux-amount-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.robux-amount-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 0.875rem;
  color: #60a5fa;
}

.robux-amount-card__value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fbbf24;
}

.robux-amount-card__label {
  font-size: 0.6875rem;
  color: var(--muted);
}

.robux-amount-card:has(input:checked) {
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(59, 130, 246, 0.08);
}

.robux-hot-badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.125rem 0.375rem;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1e1b4b;
  background: #fbbf24;
  border-radius: 0.25rem;
}

.install-icon--robux {
  filter: drop-shadow(0 0 12px rgba(96, 165, 250, 0.35));
}

.ready-icon--robux {
  color: var(--green);
  background: rgba(52, 211, 153, 0.12);
  border-color: rgba(52, 211, 153, 0.35);
  box-shadow: 0 0 24px rgba(52, 211, 153, 0.25);
}

.ready-title--robux {
  color: var(--green);
}

.ready-verify-loading__icon--robux {
  display: block;
  margin: 0 auto 1.25rem;
  font-size: 2rem;
  animation: installPulse 1.5s ease-in-out infinite;
}

.robux-claim-btn {
  width: 100%;
  padding: 1rem 1.5rem;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(148, 163, 184, 0.7);
  background: rgba(59, 130, 246, 0.15);
  border: none;
  border-radius: var(--radius-md);
  cursor: not-allowed;
  transition: opacity var(--transition), background var(--transition), color var(--transition);
}

.robux-claim-btn.is-active {
  color: #dbeafe;
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  cursor: pointer;
}

.robux-claim-btn.is-active:hover:not(:disabled) {
  opacity: 0.92;
}

.robux-claim-btn:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 2px;
}

.verify-now-btn--robux {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

#robux-recaptcha-failed-wrap[hidden] {
  display: none;
}

.btn--secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border);
}

/* Product images (Delta Executor / Robux) */
.product-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.product-img--ring {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-md);
}

.product-img--install {
  width: 4rem;
  height: 4rem;
  margin: 0 auto;
  border-radius: var(--radius-lg);
}

.product-img--small {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: var(--radius-sm);
}

.product-img--tiny {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.25rem;
}

.install-icon .product-img--install {
  animation: installPulse 1.5s ease-in-out infinite;
}

.ready-verify-loading__icon--robux .product-img--install {
  animation: installPulse 1.5s ease-in-out infinite;
}
