:root {
  --rk-font-geist: Geist, "Instrument Sans", ui-sans-serif, system-ui, sans-serif;

  --rk-page-bg: #090410;
  --rk-bg-main: #0b0c0e;
  --rk-bg-surface: #16181c;

  --rk-primary: #cbf924;
  --rk-primary-100: #add321;
  --rk-primary-200: #839e22;
  --rk-primary-300: #708427;
  --rk-primary-400: #444e1f;

  --rk-secondary: #14b8a6;
  --rk-secondary-100: #189a8c;
  --rk-secondary-200: #197269;
  --rk-secondary-300: #1f5c55;
  --rk-secondary-400: #15433e;

  --rk-tertiary: #6366f1;
  --rk-tertiary-100: #5356c7;
  --rk-tertiary-200: #45489e;
  --rk-tertiary-300: #323472;
  --rk-tertiary-400: #252754;

  --rk-success: #10b981;
  --rk-error: #ef4444;
  --rk-warning: #f59e0b;
  --rk-info: #3b82f6;

  --rk-text: #f9fafb;
  --rk-text-muted: #9ca3af;
  --rk-text-focus: #888f98;
  --rk-focus: #4b5563;
  --rk-border: #2c2f36;

  --rk-radius-default: 0.25rem;
  --rk-radius-2xl: 0.6875rem;
  --rk-radius-5xl: 1rem;
  --rk-radius-11xl: 1.5rem;
  --rk-radius-full: 9999px;

  --rk-gradient-success: linear-gradient(to left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), linear-gradient(136.43deg, #2df7b4 0%, #10b981 100%);
  --rk-gradient-stepper-selected: linear-gradient(145.49deg, #15121f 0%, #5c5ec6 100%);
  --rk-gradient-stepper-disabled: linear-gradient(140.57deg, #0b0c0e 0%, #323841 100%);
  --rk-gradient-divider: linear-gradient(90deg, rgba(21, 21, 21, 0) 0%, #3c3c3c 50.48%, rgba(21, 21, 21, 0) 100%);
  --rk-gradient-c2: linear-gradient(90deg, #6366f1 0%, #14b8a6 60%);
  --rk-gradient-base1: linear-gradient(223.57deg, #14b8a6 39.9%, #cbf924 100%);
  --rk-gradient-profile-order-title: linear-gradient(90deg, #148ba6 40%, #cbf924 100%);

  --rk-display-d1-size: 60px;
  --rk-display-d1-line: 70px;
  --rk-display-d1-letter: 0.01em;
  --rk-display-d1-weight: 900;
  --rk-display-d2-size: 40px;
  --rk-display-d2-line: 52px;
  --rk-display-d2-letter: -0.02em;
  --rk-display-d2-weight: 800;
  --rk-display-d3-size: 30px;
  --rk-display-d3-line: 36px;
  --rk-display-d3-weight: 500;

  --rk-heading-h1-size: 32px;
  --rk-heading-h1-line: 44px;
  --rk-heading-h1-weight: 700;
  --rk-heading-h2-size: 26px;
  --rk-heading-h2-line: 34px;
  --rk-heading-h2-weight: 500;
  --rk-heading-h3-size: 24px;
  --rk-heading-h3-line: 34px;
  --rk-heading-h3-letter: -0.01em;
  --rk-heading-h3-weight: 500;
  --rk-heading-h4-size: 20px;
  --rk-heading-h4-line: 26px;
  --rk-heading-h4-letter: 0.01em;
  --rk-heading-h4-weight: 500;
  --rk-heading-h5-size: 16px;
  --rk-heading-h5-line: 24px;
  --rk-heading-h5-weight: 600;

  --rk-body-lead-size: 16px;
  --rk-body-lead-line: 26px;
  --rk-body-lead-weight: 400;
  --rk-body-b1-m-size: 14px;
  --rk-body-b1-m-line: 18px;
  --rk-body-b1-m-weight: 500;
  --rk-body-b1-r-size: 14px;
  --rk-body-b1-r-line: 18px;
  --rk-body-b1-r-weight: 400;
  --rk-body-b1-letter: 0.01em;

  --rk-button-small-size: 14px;
  --rk-button-small-line: 18px;
  --rk-button-small-weight: 500;
  --rk-button-medium-size: 16px;
  --rk-button-medium-line: 20px;
  --rk-button-medium-weight: 500;
  --rk-button-large-size: 18px;
  --rk-button-large-line: 22px;
  --rk-button-large-weight: 600;
}

.rk-order-error-modal__summary {
  overflow-wrap: anywhere;
}
.rk-page {
  background: radial-gradient(1200px 500px at 20% -10%, #1a1328 0%, transparent 60%), var(--rk-page-bg);
  color: var(--rk-text);
  font-family: var(--rk-font-geist);
  overflow-x: clip;
}

html:has(body.rk-page),
body.rk-page {
  overflow-x: clip;
}

.rk-shell {
  background: transparent;
  border: 0;
  border-radius: var(--rk-radius-11xl);
  margin: 0.75rem;
  min-height: calc(100vh - 1.5rem);
}

.rk-topbar,
.rk-footer {
  border-color: transparent;
}

.rk-topbar {
  background: transparent;
}

.rk-footer {
  background: transparent;
}

.rk-topbar--landing,
.rk-footer--landing {
  background: transparent;
}

.rk-topbar--landing {
  position: sticky;
  top: 0;
  transition: transform 180ms ease;
  z-index: 70;
}

.rk-topbar--landing.is-scrolled {
  transform: translateY(10px) !important;
}

.rk-topbar--landing .rk-header-inner,
.rk-topbar--landing .rk-landing-shell--header {
  position: relative;
  transition:
    padding 220ms ease,
    max-width 220ms ease;
}

.rk-topbar--landing.is-scrolled .rk-header-inner,
.rk-topbar--landing.is-scrolled .rk-landing-shell--header {
  border: none !important;
  border-radius: 9999px !important;
  max-width: 980px !important;
  padding: 14px 20px !important;
}

.rk-topbar--landing.is-scrolled .rk-header-inner::before,
.rk-topbar--landing.is-scrolled .rk-landing-shell--header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: linear-gradient(103deg, rgba(16, 18, 23, 0.82) 0%, rgba(20, 23, 30, 0.72) 50%, rgba(116, 124, 44, 0.46) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  z-index: 0;
  pointer-events: none;
}

.rk-topbar--landing .rk-header-inner > *,
.rk-topbar--landing .rk-landing-shell--header > * {
  position: relative;
  z-index: 1;
}

.rk-brand {
  display: inline-flex;
  align-items: center;
}

.rk-brand__logo {
  display: block;
  height: 34px;
  width: auto;
}

.rk-nav-link {
  border: 1px solid transparent;
  border-radius: var(--rk-radius-full);
  color: #f5f5f5;
  font-family: var(--rk-font-geist);
  font-size: var(--rk-heading-h5-size);
  font-weight: var(--rk-heading-h5-weight);
  line-height: var(--rk-heading-h5-line);
  padding: 0.4rem 0.85rem;
  text-decoration: none;
  transition: all 160ms ease;
}

.rk-nav-link:hover {
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
}

.rk-topbar--landing .rk-nav-link--pill {
  color: #090909;
  font-size: var(--rk-button-medium-size);
  font-weight: var(--rk-button-medium-weight);
  line-height: var(--rk-button-medium-line);
}

.rk-topbar--landing .rk-nav-link--pill:hover {
  color: #090909;
}

.rk-reveal {
  filter: blur(2px);
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.985);
  transition:
    opacity 560ms cubic-bezier(0.21, 0.75, 0.22, 0.99),
    transform 560ms cubic-bezier(0.21, 0.75, 0.22, 0.99),
    filter 560ms cubic-bezier(0.21, 0.75, 0.22, 0.99);
  transition-delay: var(--rk-reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.rk-reveal.is-visible {
  filter: blur(0);
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .rk-reveal {
    filter: none;
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.rk-content-card {
  backdrop-filter: blur(10px);
  background: rgba(9, 4, 16, 0.34);
  border: 1px solid rgba(155, 105, 231, 0.35);
  border-radius: var(--rk-radius-5xl);
  box-shadow:
    inset -0.03px 0.07px 4.62px 0 rgba(41, 24, 64, 1),
    inset -0.06px 0.12px 9.24px 0 rgba(155, 105, 231, 0.38),
    0.3px -0.6px 48px -12px rgba(246, 246, 246, 0.15);
  position: relative;
  z-index: 1;
  color: var(--rk-text);
}

.rk-public-content__header {
  border-bottom: 1px solid var(--rk-border);
  padding-bottom: 2rem;
}

.rk-public-content__eyebrow {
  border-left: 3px solid var(--rk-primary);
  color: var(--rk-primary);
  font-size: var(--rk-body-b1-m-size);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
  max-width: 58rem;
  padding-left: 0.75rem;
  text-transform: uppercase;
}

.rk-public-content__metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}

.rk-public-content__metadata dt {
  color: var(--rk-text-muted);
  font-size: var(--rk-body-b1-r-size);
}

.rk-public-content__metadata dd {
  color: var(--rk-text);
  font-size: var(--rk-body-b1-m-size);
  margin-top: 0.25rem;
  text-transform: uppercase;
}

.rk-public-content__notice {
  background: rgba(203, 249, 36, 0.08);
  border: 1px solid rgba(203, 249, 36, 0.45);
  border-radius: var(--rk-radius-default);
  color: var(--rk-text);
  padding: 1rem 1.25rem;
}

.rk-public-content__notice strong {
  color: var(--rk-primary);
  font-size: var(--rk-body-b1-m-size);
  line-height: 1.5;
}

.rk-public-content__notice p,
.rk-public-content__footer p {
  font-size: var(--rk-body-b1-r-size);
  line-height: 1.6;
}

.rk-public-content__body {
  max-width: 48rem;
}

.rk-public-content__body p {
  max-width: 70ch;
}

.rk-public-content__faq {
  border-top: 1px solid var(--rk-border);
}

.rk-public-content__faq details {
  border-bottom: 1px solid var(--rk-border);
  padding: 1.25rem 0;
}

.rk-public-content__faq summary {
  color: var(--rk-text);
  cursor: pointer;
  font-size: var(--rk-heading-h5-size);
  font-weight: var(--rk-heading-h5-weight);
  line-height: var(--rk-heading-h5-line);
  padding-right: 2rem;
}

.rk-public-content__faq summary:focus-visible {
  border-radius: var(--rk-radius-default);
  outline: 2px solid var(--rk-primary);
  outline-offset: 4px;
}

.rk-public-content__faq details p {
  margin-top: 1rem;
}

.rk-page--public-content {
  background: #0b0c0e;
  color: #f5f5f5;
}

.rk-page--public-content .rk-shell {
  background: transparent;
  border: 0;
  margin: 0.75rem;
}

.rk-page--public-content .rk-topbar,
.rk-page--public-content .rk-footer {
  background: transparent;
  border-color: var(--rk-border);
}

.rk-user-avatar {
  background: linear-gradient(135deg, var(--rk-secondary) 0%, var(--rk-primary) 100%);
}

.rk-public-content--document {
  max-width: 68rem;
}

.rk-public-content--document .rk-public-content__header {
  border-bottom-color: rgba(20, 184, 166, 0.35);
  padding-bottom: 2.5rem;
}

.rk-public-content--document .rk-heading-h1 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: 0;
  line-height: 1.1;
  max-width: 18ch;
}

.rk-public-content--document .rk-body-lead {
  color: #cbd5e1;
  max-width: 62ch;
}

.rk-public-content--document .rk-public-content__metadata {
  gap: 1rem 2.5rem;
}

.rk-public-content--document .rk-public-content__metadata dt {
  color: #94a3b8;
}

.rk-public-content--document .rk-public-content__metadata dd {
  color: #cbf924;
  font-variant-numeric: tabular-nums;
}

.rk-public-content--document .rk-public-content__body {
  color: #dbe4e8;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 66ch;
}

.rk-public-content--document .rk-public-content__body h2,
.rk-public-content--document .rk-public-content__body h3,
.rk-public-content--document .rk-public-content__body h4 {
  color: #ffffff;
  letter-spacing: 0;
  margin-top: 2.5rem;
}

.rk-public-content--document .rk-public-content__body h2 {
  font-size: 1.5rem;
  line-height: 1.3;
}

.rk-public-content--document .rk-public-content__body h3 {
  font-size: 1.25rem;
  line-height: 1.4;
}

.rk-public-content--document .rk-public-content__body p,
.rk-public-content--document .rk-public-content__body ul,
.rk-public-content--document .rk-public-content__body ol,
.rk-public-content--document .rk-public-content__body blockquote {
  margin-top: 1.25rem;
}

.rk-public-content--document .rk-public-content__body ul,
.rk-public-content--document .rk-public-content__body ol {
  padding-left: 1.5rem;
}

.rk-public-content--document .rk-public-content__body li + li {
  margin-top: 0.5rem;
}

.rk-public-content--document .rk-public-content__body a {
  color: #5eead4;
  text-decoration: underline;
  text-decoration-color: rgba(94, 234, 212, 0.45);
  text-underline-offset: 0.18em;
}

.rk-public-content--document .rk-public-content__body a:hover {
  color: #cbf924;
  text-decoration-color: currentColor;
}

.rk-public-content--document .rk-public-content__body :is(a, summary):focus-visible,
.rk-public-content--document .rk-public-content__footer a:focus-visible {
  outline: 2px solid #cbf924;
  outline-offset: 4px;
}

.rk-public-content--document .rk-public-content__faq {
  border-top-color: rgba(20, 184, 166, 0.35);
}

.rk-public-content--document .rk-public-content__faq details {
  border-bottom-color: var(--rk-border);
  padding: 1.35rem 0;
}

.rk-public-content--document .rk-public-content__faq summary {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1.5;
}

.rk-public-content--document .rk-public-content__faq summary::marker {
  color: #cbf924;
}

.rk-public-content--document .rk-public-content__faq details > div {
  color: #cbd5e1;
  max-width: 62ch;
}

@media (max-width: 640px) {
  .rk-page--public-content .rk-shell {
    margin: 0;
  }

  .rk-public-content--document {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }

  .rk-public-content--document .rk-public-content__header {
    padding-bottom: 1.75rem;
  }

  .rk-public-content--document .rk-heading-h1 {
    font-size: 2rem;
    line-height: 1.15;
  }

  .rk-public-content--document .rk-public-content__body {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .rk-public-content--document .rk-public-content__metadata {
    gap: 0.85rem 1.5rem;
  }
}

.rk-glass-stage {
  isolation: isolate;
  position: relative;
}

.rk-glass-stage::before,
.rk-glass-stage::after {
  content: "";
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.rk-glass-stage::before {
  background: linear-gradient(180deg, #090410 0%, #270e4b 51.9231%, #090410 100%);
  border-radius: 9999px;
  height: 576px;
  left: -273px;
  opacity: 0.88;
  top: 42px;
  width: 576px;
}

.rk-glass-stage::after {
  background: linear-gradient(180deg, #090410 0%, #270e4b 51.9231%, #090410 100%);
  border-radius: 9999px;
  height: 672px;
  opacity: 0.88;
  right: -286px;
  top: 336px;
  width: 672px;
}

.rk-glass-stage > * {
  position: relative;
  z-index: 1;
}

.rk-muted {
  color: var(--rk-text-muted);
}

.rk-display-d1,
.rk-display-d2,
.rk-display-d3,
.rk-heading-h1,
.rk-heading-h2,
.rk-heading-h3,
.rk-heading-h4,
.rk-heading-h5,
.rk-body-lead,
.rk-body-b1-m,
.rk-body-b1-r,
.rk-button-small,
.rk-button-medium,
.rk-button-large {
  font-family: var(--rk-font-geist);
}

.rk-display-d1 { font-size: var(--rk-display-d1-size); font-weight: var(--rk-display-d1-weight); line-height: var(--rk-display-d1-line); letter-spacing: var(--rk-display-d1-letter); }
.rk-display-d2 { font-size: var(--rk-display-d2-size); font-weight: var(--rk-display-d2-weight); line-height: var(--rk-display-d2-line); letter-spacing: var(--rk-display-d2-letter); }
.rk-display-d3 { font-size: var(--rk-display-d3-size); font-weight: var(--rk-display-d3-weight); line-height: var(--rk-display-d3-line); }
.rk-heading-h1 { font-size: var(--rk-heading-h1-size); font-weight: var(--rk-heading-h1-weight); line-height: var(--rk-heading-h1-line); }
.rk-heading-h2 { font-size: var(--rk-heading-h2-size); font-weight: var(--rk-heading-h2-weight); line-height: var(--rk-heading-h2-line); }
.rk-heading-h3 { font-size: var(--rk-heading-h3-size); font-weight: var(--rk-heading-h3-weight); line-height: var(--rk-heading-h3-line); letter-spacing: var(--rk-heading-h3-letter); }
.rk-heading-h4 { font-size: var(--rk-heading-h4-size); font-weight: var(--rk-heading-h4-weight); line-height: var(--rk-heading-h4-line); letter-spacing: var(--rk-heading-h4-letter); }
.rk-heading-h5 { font-size: var(--rk-heading-h5-size); font-weight: var(--rk-heading-h5-weight); line-height: var(--rk-heading-h5-line); }
.rk-body-lead { font-size: var(--rk-body-lead-size); font-weight: var(--rk-body-lead-weight); line-height: var(--rk-body-lead-line); }
.rk-body-b1-m { font-size: var(--rk-body-b1-m-size); font-weight: var(--rk-body-b1-m-weight); line-height: var(--rk-body-b1-m-line); letter-spacing: var(--rk-body-b1-letter); }
.rk-body-b1-r { font-size: var(--rk-body-b1-r-size); font-weight: var(--rk-body-b1-r-weight); line-height: var(--rk-body-b1-r-line); }
.rk-button-small { font-size: var(--rk-button-small-size); font-weight: var(--rk-button-small-weight); line-height: var(--rk-button-small-line); }
.rk-button-medium { font-size: var(--rk-button-medium-size); font-weight: var(--rk-button-medium-weight); line-height: var(--rk-button-medium-line); }
.rk-button-large { font-size: var(--rk-button-large-size); font-weight: var(--rk-button-large-weight); line-height: var(--rk-button-large-line); }

.rk-btn {
  align-items: center;
  border-radius: var(--rk-radius-full);
  display: inline-flex;
  justify-content: center;
  transition: all 160ms ease;
}

.rk-btn--line {
  background: transparent;
  border: 1px solid var(--rk-primary);
  color: var(--rk-text);
}

.rk-btn--line:hover {
  background: rgba(203, 249, 36, 0.1);
  border-color: var(--rk-primary-100);
}

.rk-btn--filled {
  background: var(--rk-primary);
  border: 1px solid var(--rk-primary);
  color: #090909;
}

.rk-btn--filled:hover {
  background: var(--rk-primary-100);
  border-color: var(--rk-primary-100);
}

.rk-btn--l {
  gap: 10px;
  height: 55px;
  padding: 10px 20px;
  font-size: var(--rk-button-large-size);
  font-weight: var(--rk-button-large-weight);
  line-height: var(--rk-button-large-line);
}

.rk-btn--m {
  gap: 10px;
  height: 45px;
  padding: 10px 20px;
  font-size: var(--rk-button-medium-size);
  font-weight: var(--rk-button-medium-weight);
  line-height: var(--rk-button-medium-line);
}

.rk-btn--s {
  gap: 10px;
  height: 35px;
  padding: 10px 16px;
  font-size: var(--rk-body-b1-m-size);
  font-weight: var(--rk-body-b1-m-weight);
  line-height: var(--rk-body-b1-m-line);
  letter-spacing: var(--rk-body-b1-letter);
}

.rk-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(75, 85, 99, 0.5);
  outline: none;
}

.rk-btn[aria-disabled="true"],
.rk-btn:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.rk-landing-hero {
  background: linear-gradient(165deg, #121520 0%, #11171d 45%, #151b24 100%);
  border: 1px solid var(--rk-border);
  border-radius: var(--rk-radius-11xl);
}

.rk-page--landing {
  isolation: isolate;
  position: relative;
  background:
    radial-gradient(700px 700px at -12% 28%, rgba(40, 53, 74, 0.45) 0%, rgba(11, 12, 14, 0) 70%),
    radial-gradient(500px 500px at 110% 18%, rgba(26, 30, 42, 0.38) 0%, rgba(11, 12, 14, 0) 68%),
    #0b0c0e;
}

.rk-bg-orb {
  border-radius: 9999px;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.rk-bg-orb--1 {
  background: linear-gradient(180deg, #2c2f36 0%, #16181c 49.04%, #0b0c0e 100%);
  height: 528px;
  left: calc(50% - 978px);
  top: 417px;
  width: 528px;
}

.rk-bg-orb--2 {
  background: linear-gradient(180deg, #0b0c0e 0%, #16181c 49.04%, #16181c 100%);
  height: 316px;
  left: calc(50% + 483px);
  top: 107px;
  width: 316px;
}

.rk-bg-orb--3 {
  background: linear-gradient(140.57deg, #0b0c0e 16.18%, #323841 85.16%);
  height: 316px;
  left: calc(50% - 920px);
  top: 1950px;
  transform: rotate(180deg);
  width: 316px;
}

.rk-bg-orb--4 {
  background: linear-gradient(140.57deg, #0b0c0e 16.18%, #323841 85.16%);
  height: 164px;
  left: calc(50% + 644px);
  top: 2043px;
  transform: rotate(90deg);
  width: 164px;
}

.rk-page--landing .rk-shell {
  margin: 0;
  position: relative;
  z-index: 1;
}

.rk-lang-pill {
  align-items: center;
  border: 1px solid #4b5563;
  border-radius: 34px;
  color: #f5f5f5;
  display: none;
  font-family: Inter, var(--rk-font-geist);
  font-size: 14px;
  gap: 7px;
  height: 45px;
  padding: 10px;
}

.rk-lang-pill__icon {
  display: block;
  height: 20px;
  width: 20px;
}

.rk-lang-pill__divider {
  background: #4b5563;
  display: inline-block;
  height: 14px;
  width: 1px;
}

.rk-nav-link--pill {
  background: #cbf924;
  border-color: #cbf924;
  color: #090909;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
}

.rk-nav-link--pill:hover {
  background: #add321;
  border-color: #add321;
  color: #090909;
}

.rk-landing-shell {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 1440px;
  width: 100%;
}

.rk-landing-shell--header {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 16px 20px;
}

.rk-landing-shell--footer {
  border-top: 1px solid var(--rk-border);
  display: grid;
  gap: 32px;
  padding: 36px 20px;
}

.rk-landing-page {
  display: flex;
  flex-direction: column;
  gap: 25px;
  overflow: visible;
  margin: 0 auto;
  max-width: 1440px;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 36px;
  position: relative;
  width: 100%;
}

.rk-landing-backdrop {
  background: url("https://www.transparenttextures.com/patterns/carbon-fibre-v2.png") repeat;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  position: absolute;
}

.rk-landing-cursor {
  background: #ffffff;
  border-radius: 9999px;
  height: 22px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: translate3d(-999px, -999px, 0);
  transition: opacity 200ms ease;
  width: 22px;
  z-index: 0;
}

.rk-landing-cursor-dot {
  background: #000000;
  border-radius: 9999px;
  height: 7px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: translate3d(-999px, -999px, 0);
  transition: opacity 200ms ease;
  width: 7px;
  z-index: 2;
}

.rk-hero-grid,
.rk-powering,
.rk-how,
.rk-pricing {
  position: relative;
  z-index: 1;
}

@media (hover: none), (pointer: coarse) {
  .rk-landing-cursor,
  .rk-landing-cursor-dot {
    display: none;
  }
}

.rk-hero-grid {
  align-items: flex-start;
  display: grid;
  gap: 30px;
}

.rk-hero-title {
  letter-spacing: 0.6px;
  margin: 0;
}

.rk-hero-title span {
  background: linear-gradient(193deg, #14b8a6 44.05%, #cbf924 92.5%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rk-hero-subtitle {
  color: #f9fafb;
  margin: 22px 0 0;
}

.rk-hero-copy {
  margin-top: 225px;
}

@media (max-width: 1023px) {
  .rk-bg-orb,
  .rk-landing-cursor,
  .rk-landing-cursor-dot {
    display: none;
  }

  .rk-landing-page {
    padding-top: 12px;
  }

  .rk-hero-grid {
    display: block;
    width: 100%;
  }

  .rk-hero-copy {
    margin-top: 0;
    text-align: center;
  }

  .rk-hero-price-wrap {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .rk-hero-cta {
    display: flex;
    margin-left: auto;
    margin-right: auto;
    width: max-content;
  }

  .rk-collage,
  .rk-collage__single {
    max-width: 100%;
    width: 100%;
  }

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

  .rk-powering__grid article {
    min-width: 0;
  }

  .rk-powering__grid p {
    max-width: none;
  }

  .rk-landing-shell--footer {
    gap: 24px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 28px 20px;
  }

  .rk-landing-shell--footer > :first-child,
  .rk-landing-shell--footer > :nth-child(2),
  .rk-landing-shell--footer > :nth-child(3),
  .rk-landing-shell--footer > :last-child {
    grid-column: auto;
  }

  .rk-landing-shell--footer .rk-brand__logo {
    height: 26px;
  }

  .rk-landing-shell--footer .rk-landing-footer__meta {
    font-size: 9px;
    line-height: 12px;
    margin-top: 8px;
  }

  .rk-landing-shell--footer .rk-landing-footer__links {
    min-width: 0;
  }

  .rk-topbar--landing .rk-brand__logo {
    height: 28px;
  }

  .rk-topbar--landing .rk-landing-shell--header {
    gap: 12px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .rk-topbar--landing .rk-header-inner > div:last-child {
    gap: 8px;
  }

  .rk-topbar--landing .rk-nav-link {
    padding-left: 6px;
    padding-right: 6px;
  }

  .rk-topbar--landing .rk-header-inner > div:last-child > a:last-of-type {
    font-size: 13px;
    padding: 8px 12px;
    white-space: nowrap;
  }
}

.rk-hero-price-wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.rk-hero-price {
  background: linear-gradient(222deg, #14b8a6 44.05%, #cbf924 92.5%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
}

.rk-hero-cta {
  margin-top: 20px;
}

.rk-hero-cta__icon {
  display: block;
  height: 24px;
  width: 24px;
}

.rk-collage {
  margin: 0 auto;
  max-width: 780px;
  width: 100%;
}

.rk-collage__single {
  border-radius: 2px;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.rk-powering {
  margin: 0 auto;
  max-width: 1400px;
  padding-top: 24px;
  text-align: center;
  width: 100%;
}

.rk-powering__orb {
    display: block;
    height: auto;
    margin: 0 auto 10px;
    max-width: 220px;
    transform: rotate(71deg);
}

#powering-title {
  position: relative;
  transform: translateY(-100px);
  font-weight: 700;
  z-index: 2;
}

.rk-powering__grid {
  display: grid;
  gap: 28px;
  /* margin-top: 38px; */
  text-align: left;
}

.rk-powering__grid h3 {
  margin: 0;
}

.rk-powering__heading {
  align-items: center;
  display: inline-flex;
  gap: 6px;
}

.rk-powering__icon {
  display: block;
  flex: 0 0 auto;
  height: 32px;
  width: 32px;
}

.rk-powering__grid p {
  font-size: var(--rk-body-b1-r-size);
  line-height: var(--rk-body-b1-r-line);
  margin: 8px 0 0;
  max-width: 260px;
}

.rk-how {
  border-top: 1px solid var(--rk-border);
  margin: 0 auto;
  max-width: 1400px;
  padding-top: 54px;
  width: 100%;
}

#how-it-works {
  background-image: url('/branding/landing/hiw_background.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.rk-how__title {
  background: var(--rk-gradient-c2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: block;
  width: fit-content;
  margin: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.rk-how__steps {
    /* border: 1px solid rgba(44, 47, 54, 0.5); */
    border-radius: 45px;
    display: grid;
    gap: 24px;
    list-style: none;
    margin: 40px 0 0;
    padding: 28px;
    box-shadow: rgba(44, 47, 54, 0.5) 0 -1px 0 0px;
}

.rk-how__steps li {
  position: relative;
}

.rk-how__step {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-right: 6px;
  text-align: center;
}

.rk-how__badge {
  align-items: center;
  display: inline-flex;
  height: 30px;
  justify-content: center;
  margin-bottom: 12px;
  position: relative;
  transform: translateX(-90px);
  width: 30px;
}

.rk-how__badge-bg {
  display: block;
  height: 30px;
  width: 30px;
}

.rk-how__badge-index {
  color: #9ca3af;
  font-family: Inter, var(--rk-font-geist);
  font-size: 11px;
  font-weight: 500;
  left: 50%;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.rk-how__number {
  align-items: center;
  border: 1px solid rgba(75, 85, 99, 0.7);
  border-radius: 9999px;
  color: #9ca3af;
  display: inline-flex;
  font-family: Inter, var(--rk-font-geist);
  font-size: 11px;
  height: 20px;
  justify-content: center;
  margin-bottom: 12px;
  width: 20px;
}

.rk-how__step-icon {
  display: block;
  height: 64px;
  margin-bottom: 12px;
  transform: translateY(-40px);
  width: 64px;
}

.rk-how__step .rk-heading-h5,
.rk-how__step .rk-body-b1-r {
  transform: translateY(-40px);
}

.rk-how__arrow {
  display: none;
}

.rk-how__steps h3 {
  margin: 0;
  text-align: center;
}

.rk-how__steps p {
  margin: 6px 0 0;
  text-align: center;
}

.rk-pricing {
  border-bottom: 1px solid var(--rk-border);
  margin: 0 auto;
  max-width: 1400px;
  padding: 24px 0 90px;
  text-align: center;
  width: 100%;
}

.rk-pricing h2 {
  margin: 0;
}

.rk-pricing__value {
    background: var(--rk-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 14px 0 6px;
}

.rk-pricing__list {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 38px 0 0;
  padding: 0;
}

.rk-pricing__list li {
  align-items: center;
  color: #f9fafb;
  display: inline-flex;
  font-size: var(--rk-heading-h4-size);
  font-weight: 500;
  justify-content: center;
  letter-spacing: var(--rk-heading-h4-letter);
  line-height: var(--rk-heading-h4-line);
}

.rk-pricing__check {
  display: block;
  height: 20px;
  margin-right: 8px;
  width: 20px;
}

.rk-landing-footer__meta {
  color: #4b5563;
  font-size: 10px;
  font-weight: 400;
  line-height: 14px;
  margin: 12px 0 0;
}

.rk-landing-footer__links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rk-landing-footer__heading {
  color: #9ca3af;
  font-size: var(--rk-heading-h5-size);
  font-weight: var(--rk-heading-h5-weight);
  line-height: var(--rk-heading-h5-line);
  margin: 0 0 4px;
}

.rk-landing-footer__text {
  color: #f9fafb;
  font-size: var(--rk-body-b1-m-size);
  font-weight: var(--rk-body-b1-m-weight);
  letter-spacing: var(--rk-body-b1-letter);
  line-height: var(--rk-body-b1-m-line);
  text-decoration: none;
}

.rk-landing-footer__text--muted {
  color: #898888;
  font-weight: var(--rk-body-b1-r-weight);
  letter-spacing: normal;
  line-height: var(--rk-body-b1-r-line);
}

.rk-landing-footer__text:hover {
  color: #cbf924;
}

.rk-landing-footer__socials {
  display: flex;
  gap: 8px;
}

.rk-social-link {
  align-items: center;
  display: inline-flex;
  height: 24px;
  justify-content: center;
  text-decoration: none;
  transition: opacity 180ms ease;
  width: 24px;
}

.rk-social-link img {
  display: block;
  height: 24px;
  opacity: 0.72;
  transition: filter 180ms ease, opacity 180ms ease;
  width: 24px;
}

.rk-social-link:hover {
  opacity: 1;
}

.rk-social-link:hover img {
  filter: drop-shadow(0 0 6px rgba(203, 249, 36, 0.45));
  opacity: 1;
}

@media (min-width: 640px) {
  .rk-landing-shell--header {
    padding-left: 32px;
    padding-right: 32px;
  }

  .rk-landing-shell--footer {
    padding-left: 32px;
    padding-right: 32px;
  }

  .rk-lang-pill {
    display: inline-flex;
  }

  .rk-pricing__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rk-pricing__list li {
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .rk-landing-shell--header {
    padding-left: 40px;
    padding-right: 40px;
  }

  .rk-landing-shell--footer {
    grid-template-columns: 1fr 200px 220px 220px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .rk-landing-page {
    gap: 90px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .rk-hero-grid {
    align-items: start;
    gap: 34px;
    grid-template-columns: minmax(460px, 593.5px) minmax(0, 1fr);
  }

  .rk-collage {
    height: 876px;
    max-width: none;
  }

  .rk-collage__single {
    height: 100%;
  }

  .rk-powering__grid {
    gap: 44px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .rk-how__steps {
    gap: 30px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 40px 36px;
  }

  .rk-how__steps li:not(:last-child)::after {
    content: none;
  }

  .rk-how__arrow {
    display: block;
    height: 48px;
    position: absolute;
    right: -24px;
    top: 78px;
    width: 48px;
  }
}

@media (min-width: 1360px) {
  .rk-hero-grid {
    gap: 46px;
    grid-template-columns: 593.5px minmax(0, 1fr);
  }
}

.rk-page--order {
  background: #0b0c0e;
}

.rk-page--order .rk-shell {
  background: transparent;
  border: 0;
  margin: 0.75rem;
}

.rk-topbar--order {
  background: rgba(9, 4, 16, 0.72);
  border-bottom-color: rgba(155, 105, 231, 0.16);
}

.rk-order-header-inner {
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.rk-page--order .rk-main--order {
  max-width: 1440px;
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.rk-order-page {
  margin: 0 auto;
  max-width: 1400px;
}

.rk-order-card {
  background: rgba(5, 3, 10, 0.74);
  border: 1px solid rgba(155, 105, 231, 0.62);
  border-radius: 1.25rem;
  box-shadow: 0 0 42px rgba(94, 21, 188, 0.24), inset 0 0 30px rgba(82, 17, 150, 0.12);
  padding: clamp(1.25rem, 4vw, 2.5rem);
  position: relative;
  z-index: 1;
}

.rk-order-stepper {
  display: flex;
  justify-content: center;
  margin: 0 auto 2.4rem;
  max-width: 720px;
}

.rk-order-step {
  align-items: center;
  background: transparent;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  min-width: 100px;
  padding: 0;
  position: relative;
  text-align: center;
}

.rk-order-step::after {
  background: rgba(155, 105, 231, 0.42);
  content: "";
  height: 1px;
  left: calc(50% + 20px);
  position: absolute;
  top: 16px;
  width: calc(100% - 40px);
}

.rk-order-step--last::after {
  content: none;
}

.rk-order-step__circle {
  align-items: center;
  background: linear-gradient(145deg, #20152e, #6942a6);
  border: 1px solid rgba(155, 105, 231, 0.72);
  border-radius: 9999px;
  color: #e6d9ff;
  display: flex;
  font-size: 0.9rem;
  font-weight: 600;
  height: 32px;
  justify-content: center;
  margin-bottom: 0.75rem;
  position: relative;
  width: 32px;
  z-index: 1;
}

.rk-order-step--active .rk-order-step__circle,
.rk-order-step.is-completed .rk-order-step__circle {
  background: var(--rk-primary);
  border-color: var(--rk-primary);
  color: #090909;
}

.rk-order-step__label {
  color: #f5f5f5;
  font-size: var(--rk-body-b1-r-size);
  font-weight: var(--rk-body-b1-r-weight);
  line-height: 1.3;
}

.rk-order-workspace {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr);
}

.rk-order-main {
  min-width: 0;
}

.rk-order-top {
  margin: 0 0 1.5rem;
}

.rk-order-top__title {
  color: #ffffff;
  margin: 0;
}

.rk-order-top__subtitle {
  color: #f1edf5;
  margin: 0.5rem 0 0;
}

.rk-upload-box {
  align-items: center;
  background: rgba(3, 2, 7, 0.72);
  border: 1px dashed var(--rk-primary);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  justify-content: center;
  min-height: 430px;
  padding: 3rem 1.2rem;
  text-align: center;
}

.rk-upload-box--dragover {
  background: rgba(203, 249, 36, 0.08);
  border-color: var(--rk-primary-100);
  box-shadow: inset 0 0 0 1px rgba(203, 249, 36, 0.28);
}

.rk-upload-box__icon {
  line-height: 0;
}

.rk-upload-box__title {
  color: #f5f5f5;
  font-size: clamp(1.35rem, 2.3vw, 1.56rem);
  line-height: 1.25;
  margin: 0;
  max-width: 27rem;
}

.rk-upload-box__hint {
  color: #d7d7d7;
  margin: 0;
}

.rk-upload-box__file {
  color: var(--rk-primary);
  margin: -0.25rem 0 0;
}

.rk-upload-box__browse {
  min-width: 150px;
}

.rk-order-basket {
  background: rgba(4, 2, 9, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  min-height: 240px;
  padding: 1.25rem;
}

.rk-order-basket__title {
  color: var(--rk-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.rk-order-basket__rule {
  background: #2c2f36;
  height: 1px;
  margin: 1rem 0;
}

.rk-order-basket__file,
.rk-order-basket__hint {
  color: #f5f5f5;
  font-size: 0.875rem;
  margin: 0;
  overflow-wrap: anywhere;
}

.rk-order-basket__hint {
  color: var(--rk-text-muted);
  margin-top: 0.75rem;
}

.rk-order-upload-controls,
.rk-order-actions,
.rk-order-note-row,
.rk-order-debug {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.rk-order-actions--spaced {
  margin-top: 0.6rem;
}

.rk-order-file-label {
  color: var(--rk-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.rk-order-file-list {
  display: grid;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.rk-order-file-list > div {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: var(--rk-text);
  display: flex;
  gap: 0.5rem;
  justify-content: space-between;
  padding: 0.5rem 0.65rem;
}

.rk-order-input,
.rk-order-page select,
.rk-order-page input[type="file"] {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0.5rem;
  color: var(--rk-text);
  min-height: 2.2rem;
  padding: 0.45rem 0.7rem;
}

.rk-order-input::placeholder {
  color: var(--rk-text-focus);
}

.rk-order-note {
  flex: 1 1 16rem;
}

.rk-order-token {
  flex: 1 1 18rem;
}

.rk-order-size-list {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 0.9rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin-top: 1rem;
  padding: 1rem;
}

.rk-order-size-list > label {
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.75rem;
  color: var(--rk-text);
  display: flex !important;
  gap: 0.55rem !important;
  min-height: 4.5rem;
  padding: 0.8rem;
}

.rk-order-debug {
  border: 1px dashed rgba(152, 162, 179, 0.7);
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  padding: 0.7rem;
}

.rk-order-modal {
  background: #0c0711;
  border: 1px solid rgba(155, 105, 231, 0.65);
  border-radius: 0.9rem;
  margin-top: 1.5rem;
  padding: 1.25rem;
}

.rk-order-state-panel {
  margin-top: 1.5rem;
}

.rk-order-state-panel__title {
  font-size: 1.1rem;
  margin: 0 0 0.6rem;
}

.rk-order-state-panel pre {
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.5rem;
  color: var(--rk-text-muted);
  max-height: 320px;
  overflow-x: auto;
  padding: 0.75rem;
  white-space: pre-wrap;
}

@media (min-width: 900px) {
  .rk-order-workspace {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .rk-order-basket {
    min-height: 430px;
  }
}

@media (max-width: 640px) {
  .rk-order-stepper {
    gap: 1rem 0.25rem;
  }

  .rk-order-step {
    min-width: 72px;
  }

  .rk-order-step__label {
    font-size: 0.75rem;
  }

  .rk-order-step::after {
    content: none;
  }

  .rk-upload-box {
    min-height: 300px;
    padding: 2rem 1rem;
  }

  .rk-order-file-list > div {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   Customer Profile Page  (.rk-profile)
   ───────────────────────────────────────────────────────────────────────────── */

.rk-profile {
  width: 100%;
}

/* ── Hero Banner ── */
.rk-profile__hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 0 2.5rem;
  text-align: center;
}

.rk-profile__hero-gradient {
  position: absolute;
  inset: 0;
  background: url('./profileheaderbg.png') center / cover no-repeat;
  pointer-events: none;
  z-index: 0;
}

.rk-profile__hero-content {
  position: relative;
  z-index: 1;
}

.rk-profile__greeting {
  font-family: var(--rk-font-geist);
  font-size: 32px;
  font-weight: 700;
  font-style: normal;
  line-height: 1.3;
  color: var(--rk-text);
  letter-spacing: -0.01em;
}

.rk-profile__greeting-sub {
  font-family: var(--rk-font-geist);
  font-size: 18px;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
  color: var(--rk-text-muted);
  margin-top: 0.35rem;
  letter-spacing: -0.01em;
}

/* ── Main Grid ── */
.rk-profile__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 1024px) {
  .rk-profile__grid {
    grid-template-columns: 1fr 320px;
    gap: 3rem;
  }
}

/* ── Settings Container ── */
.rk-profile__settings {
  background: #110c16;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  position: relative;
  min-height: 538px;
}

@media (min-width: 640px) {
  .rk-profile__settings {
    padding: 2.25rem 2.25rem;
  }
}

/* ── Section Titles ── */
.rk-profile__section-title {
  font-family: var(--rk-font-geist);
  font-size: 22px;
  font-weight: 700;
  color: var(--rk-text);
  line-height: 1.3;
}

.rk-profile__section-sub {
  font-family: var(--rk-font-geist);
  font-size: 13px;
  font-weight: 400;
  color: var(--rk-text-muted);
  margin-top: 4px;
  line-height: 1.5;
}

/* ── Forms Grid ── */
.rk-profile__forms {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .rk-profile__forms {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.rk-profile__form-heading {
  font-family: var(--rk-font-geist);
  font-size: 14px;
  font-weight: 600;
  color: var(--rk-text);
  margin-bottom: 1rem;
}

.rk-profile__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* ── Fields ── */
.rk-profile__field {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.rk-profile__label {
  font-family: var(--rk-font-geist);
  font-size: 13px;
  font-weight: 600;
  color: var(--rk-text);
  margin-bottom: 6px;
}

.rk-profile__input {
  appearance: none;
  width: 100%;
  background: #131518;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 12px;
  padding: 11px 14px;
  font-family: var(--rk-font-geist);
  font-size: 14px;
  font-weight: 400;
  color: var(--rk-text);
  line-height: 1.4;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.rk-profile__input::placeholder {
  color: var(--rk-text-focus);
  opacity: 0.6;
}

.rk-profile__input:focus {
  border-color: var(--rk-primary);
  box-shadow: 0 0 0 1px var(--rk-primary);
}

.rk-profile__input--active {
  border-color: rgba(203, 249, 36, 0.55);
}

.rk-profile__input--pw {
  padding-right: 42px;
}

/* ── Eye Toggle ── */
.rk-profile__input-wrap {
  position: relative;
}

.rk-profile__eye {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rk-text-focus);
  transition: color 140ms ease;
}

.rk-profile__eye:hover {
  color: var(--rk-text);
}

.rk-profile__eye-icon {
  width: 18px;
  height: 18px;
}

.rk-profile__eye-icon--active {
  color: var(--rk-primary);
}

/* ── Actions ── */
.rk-profile__action {
  padding-top: 0.5rem;
}

.rk-profile__action--left {
  text-align: left;
}

.rk-profile__action--right {
  text-align: right;
}

/* ── Buttons ── */
.rk-profile__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--rk-font-geist);
  font-weight: 600;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 160ms ease;
  border: 1px solid transparent;
  line-height: 1;
}

.rk-profile__btn--primary {
  background: var(--rk-primary);
  color: #090909;
  font-size: 13px;
  padding: 10px 22px;
}

.rk-profile__btn--primary:hover {
  background: var(--rk-primary-100);
}

.rk-profile__btn--primary:active {
  background: var(--rk-primary-200);
}

/* ── Status Messages ── */
.rk-profile__error {
  font-family: var(--rk-font-geist);
  font-size: 12px;
  color: var(--rk-error);
  margin-top: 4px;
}

.rk-profile__success {
  font-family: var(--rk-font-geist);
  font-size: 12px;
  color: var(--rk-primary);
  font-weight: 500;
}

/* ── Support Panel ── */
.rk-profile__support-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.rk-profile__support-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #111316;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 18px 20px;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.rk-profile__support-card:hover {
  border-color: rgba(255, 255, 255, 0.18);
  background: #141720;
}

.rk-profile__support-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  color: var(--rk-text);
  flex-shrink: 0;
}

.rk-profile__support-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.rk-profile__support-title {
  font-family: var(--rk-font-geist);
  font-size: 15px;
  font-weight: 600;
  color: var(--rk-text);
}

.rk-profile__support-link {
  font-family: var(--rk-font-geist);
  font-size: 14px;
  font-weight: 500;
  color: var(--rk-primary);
  text-decoration: underline;
  text-decoration-color: rgba(203, 249, 36, 0.4);
  text-underline-offset: 2px;
}

.rk-profile__support-card:hover .rk-profile__support-link {
  text-decoration-color: var(--rk-primary);
}

/* ── Danger Zone (Delete Account) ── */
.rk-profile__danger-zone {
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.rk-profile__danger-title {
  font-family: var(--rk-font-geist);
  font-size: 16px;
  font-weight: 700;
  color: var(--rk-error);
  line-height: 1.3;
}

.rk-profile__danger-desc {
  font-family: var(--rk-font-geist);
  font-size: 13px;
  font-weight: 400;
  color: var(--rk-text-muted);
  margin-top: 4px;
  line-height: 1.5;
}

.rk-profile__danger-action {
  text-align: center;
  margin-top: 0.5rem;
}

.rk-profile__btn--danger {
  background: transparent;
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: var(--rk-error);
  font-size: 13px;
  padding: 10px 28px;
}

.rk-profile__btn--danger:hover {
  border-color: var(--rk-error);
  background: rgba(239, 68, 68, 0.08);
}

/* ── Modal ── */
.rk-profile__modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(6px);
  padding: 1rem;
}

.rk-profile__modal {
  background: #111316;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  max-width: 480px;
  width: 100%;
  padding: 2rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}

.rk-profile__modal-title {
  font-family: var(--rk-font-geist);
  font-size: 18px;
  font-weight: 700;
  color: var(--rk-text);
  line-height: 1.35;
}

.rk-profile__modal-desc {
  font-family: var(--rk-font-geist);
  font-size: 13px;
  color: var(--rk-text-muted);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.rk-profile__modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.rk-profile__btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--rk-text-muted);
  font-size: 13px;
  padding: 10px 20px;
}

.rk-profile__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: var(--rk-text);
}

dialog.rk-customer-modal {
  background: #16181c;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.52);
  box-sizing: border-box;
  color: var(--rk-text);
  max-height: 90vh;
  max-width: 556px;
  min-width: 0;
  overflow-y: auto;
  padding: 24px;
  width: calc(100vw - 32px);
}

dialog.rk-customer-modal::backdrop {
  background: rgba(0, 0, 0, 0.74);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

dialog.rk-customer-modal::before,
dialog.rk-customer-modal::after {
  background: linear-gradient(90deg, transparent 0%, #6366f1 35%, #14b8a6 65%, transparent 100%);
  content: "";
  height: 1px;
  left: 18%;
  pointer-events: none;
  position: absolute;
  right: 18%;
}

dialog.rk-customer-modal::before {
  top: 0;
}

dialog.rk-customer-modal::after {
  bottom: 0;
}

dialog.rk-customer-modal [data-flux-heading],
dialog.rk-customer-modal h2 {
  color: #f9fafb;
  font-family: var(--rk-font-geist);
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  margin: 0;
}

dialog.rk-customer-modal [data-flux-subheading] {
  color: var(--rk-text-muted);
  font-family: var(--rk-font-geist);
  font-size: 14px;
  line-height: 20px;
  margin-top: 12px;
}

dialog.rk-customer-modal .rk-customer-modal__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

dialog.rk-customer-modal .rk-customer-modal__form [data-flux-field] {
  margin: 0;
}

dialog.rk-customer-modal .rk-customer-modal__form label,
dialog.rk-customer-modal .rk-customer-modal__form [data-flux-label] {
  color: #f9fafb;
}

dialog.rk-customer-modal .rk-customer-modal__form input {
  background: #111;
  border-color: #6366f1;
  box-shadow: none;
  color: #f9fafb;
}

dialog.rk-customer-modal .rk-customer-modal__form input:focus,
dialog.rk-customer-modal .rk-customer-modal__form input:focus-visible {
  border-color: #cbf924;
  box-shadow: 0 0 0 2px rgba(203, 249, 36, 0.28);
  outline: 2px solid transparent;
  outline-offset: 2px;
}

dialog.rk-customer-modal .rk-customer-modal__error {
  color: #ff7a7e;
  font-size: 13px;
  line-height: 18px;
  margin: -8px 0 0;
}

dialog.rk-customer-modal .rk-customer-modal__actions {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  margin-top: 24px;
}

dialog.rk-customer-modal .rk-customer-modal__actions button {
  border-radius: 9999px;
  font-size: 16px;
  line-height: 20px;
  min-height: 45px;
  padding: 10px 16px;
}

dialog.rk-customer-modal .rk-customer-modal__cancel {
  background: transparent;
  border: 0;
  color: #9ca3af;
}

dialog.rk-customer-modal--password .rk-customer-modal__submit {
  background: transparent;
  border: 1px solid #cbf924;
  color: #f9fafb;
}

dialog.rk-customer-modal--delete .rk-customer-modal__submit {
  background: #ef4444;
  border: 1px solid #ef4444;
  color: #090909;
}

dialog.rk-customer-modal .rk-customer-modal__actions button:focus-visible,
dialog.rk-customer-modal button:focus-visible {
  outline: 2px solid #cbf924;
  outline-offset: 3px;
}

@media (max-width: 519px) {
  dialog.rk-customer-modal {
    padding: 20px;
  }

  dialog.rk-customer-modal .rk-customer-modal__actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  dialog.rk-customer-modal .rk-customer-modal__actions > *,
  dialog.rk-customer-modal .rk-customer-modal__actions button {
    width: 100%;
  }
}

.rk-profile__btn--danger-fill {
  background: var(--rk-error);
  color: #fff;
  font-size: 13px;
  padding: 10px 20px;
}

.rk-profile__btn--danger-fill:hover {
  background: #dc2626;
}

/* ─────────────────────────────────────────────────────────────────────────────
   Customer Profile Order Status (.rk-profile-orders)
   ───────────────────────────────────────────────────────────────────────────── */

.rk-profile-orders {
  background: #16181c;
  border-radius: 20px;
  box-sizing: border-box;
  margin: 20px;
  min-height: 780px;
  padding: 20px;
}

.rk-profile-orders__heading h1 {
  background: var(--rk-gradient-c2);
  background-clip: text;
  color: transparent;
  font-size: 24px;
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}

.rk-profile-orders__heading h1 span {
  color: inherit;
}

.rk-profile-orders__tabs {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-top: 18px;
}

.rk-profile-orders__tabs a,
.rk-profile-orders__tabs button {
  appearance: none;
  border-radius: 999px;
  border: 0;
  color: #626872;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  line-height: 20px;
  padding: 13px 20px;
  text-decoration: none;
}

.rk-profile-orders__tabs a.is-active,
.rk-profile-orders__tabs button.is-active {
  background: var(--rk-primary);
  color: #0b0c0e;
}

.rk-profile-tab-panel--orders {
  display: block;
}

.rk-profile-orders__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
  max-height: 632px;
  overflow-y: auto;
  padding-right: 2px;
  scrollbar-color: #626872 transparent;
  scrollbar-width: thin;
}

.rk-profile-orders__list::-webkit-scrollbar {
  width: 8px;
}

.rk-profile-orders__list::-webkit-scrollbar-track {
  background: transparent;
}

.rk-profile-orders__list::-webkit-scrollbar-thumb {
  background: #626872;
  border: 2px solid transparent;
  border-radius: 999px;
  background-clip: padding-box;
}

.rk-profile-orders__list::-webkit-scrollbar-thumb:hover {
  background: #89919d;
  background-clip: padding-box;
}

.rk-profile-order {
  border: 1px solid #2c2f36;
  border-radius: 16px;
  flex: 0 0 auto;
  padding: 16px;
}

.rk-profile-order--active {
  border-color: transparent;
  background: linear-gradient(#16181c, #16181c) padding-box, linear-gradient(100deg, #3b82f6, #14b8a6) border-box;
}

.rk-profile-order__header {
  align-items: center;
  border-bottom: 1px solid #2c2f36;
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
}

.rk-profile-order__header h2 {
  background: var(--rk-gradient-profile-order-title);
  background-clip: text;
  -webkit-background-clip: text;
  color: #148ba6;
  -webkit-text-fill-color: transparent;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  margin: 0;
}

.rk-profile-order__header p {
  color: #949aa4;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  margin: 0;
}

.rk-profile-order__status {
  align-items: center;
  background: #2c2f36;
  border: 1px solid #4b5563;
  border-radius: 10px;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) 340px minmax(160px, max-content);
  margin-top: 12px;
  min-height: 74px;
  padding: 0 18px;
}

.rk-profile-order__message {
  color: #f1f2f3;
  font-size: 13px;
  line-height: 16px;
  margin: 0;
}

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

.rk-profile-order__progress div {
  color: #a3a7af;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
}

.rk-profile-order__progress span {
  background: #626872;
  display: block;
  height: 3px;
  margin-bottom: 12px;
}

.rk-profile-order__progress .is-current span {
  background: var(--rk-success);
}

.rk-profile-order__progress strong {
  font-weight: 400;
  white-space: nowrap;
}

.rk-profile-order__download {
  align-items: center;
  background: var(--rk-primary);
  border-radius: 999px;
  color: #090909;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  gap: 9px;
  justify-content: center;
  line-height: 18px;
  padding: 9px 16px;
  text-decoration: none;
  transition: background-color 160ms ease, transform 160ms ease;
}

.rk-profile-order__download:hover {
  background: var(--rk-primary-100);
  transform: translateY(-1px);
}

.rk-profile-order__download:focus-visible {
  outline: 2px solid var(--rk-primary);
  outline-offset: 3px;
}

.rk-profile-order__downloads {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.rk-profile-order__download svg {
  fill: none;
  height: 18px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 18px;
}

.rk-profile-order__detail {
  background: transparent;
  border-top: 1px solid #2c2f36;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  color: #3b82f6;
  cursor: pointer;
  display: block;
  font-size: 14px;
  line-height: 18px;
  margin-top: 12px;
  padding-top: 12px;
  text-align: right;
  text-decoration: none;
  width: 100%;
}

.rk-profile-order__details {
  border-top: 1px solid #2c2f36;
  margin-top: 12px;
  padding-top: 28px;
}

.rk-profile-order__detail-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.6fr) minmax(0, 0.6fr);
}

.rk-profile-order__detail-grid h3 {
  color: #949aa4;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  margin: 0 0 12px;
}

.rk-profile-order__detail-grid > div > span,
.rk-profile-order__chips span,
.rk-profile-order__total span {
  background: #24272f;
  border-radius: 999px;
  color: #626872;
  display: inline-flex;
  font-size: 14px;
  line-height: 18px;
  padding: 10px 13px;
}

.rk-profile-order__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 8px;
}

.rk-profile-order__total {
  align-items: flex-end;
  border-top: 1px solid #2c2f36;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
  padding-top: 16px;
}

.rk-profile-order__total strong {
  color: #7d828c;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
}

.rk-profile-order__total b {
  color: var(--rk-primary);
  font-weight: 600;
  margin-left: 0.25rem;
}

.rk-profile-settings {
  min-height: 780px;
  position: relative;
}

.rk-profile-settings__notice {
  align-items: flex-start;
  background: #24272f;
  border-radius: 16px;
  display: flex;
  gap: 10px;
  max-width: 576px;
  padding: 20px 18px;
  position: absolute;
  right: 20px;
  top: 20px;
  width: calc(50% - 28px);
}

.rk-profile-settings__notice-icon {
  align-items: center;
  border: 2px solid var(--rk-secondary);
  border-radius: 50%;
  color: var(--rk-secondary);
  display: inline-flex;
  flex: 0 0 22px;
  font-size: 16px;
  height: 22px;
  justify-content: center;
  line-height: 1;
}

.rk-profile-settings__notice strong {
  color: #f1f2f3;
  display: block;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
}

.rk-profile-settings__notice p {
  color: #858b96;
  font-size: 13px;
  line-height: 18px;
  margin: 6px 0 0;
}

.rk-profile-settings__notice button {
  background: transparent;
  border: 0;
  color: #858b96;
  cursor: pointer;
  font-size: 30px;
  font-weight: 200;
  line-height: 20px;
  margin-left: auto;
  padding: 0;
}

.rk-profile-settings__panel {
  border: 1px solid transparent;
  border-radius: 16px;
  background: linear-gradient(#16181c, #16181c) padding-box, linear-gradient(100deg, #3b82f6, #14b8a6) border-box;
  margin-top: 16px;
  min-height: 604px;
  padding: 16px;
  position: relative;
}

.rk-profile-settings__panel h2 {
  color: #7dff39;
  font-size: 20px;
  font-weight: 400;
  line-height: 26px;
  margin: 0;
}

.rk-profile-settings__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
  width: 400px;
}

.rk-profile-settings__form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.rk-profile-settings__form label > span {
  color: #f1f2f3;
  font-size: 16px;
  line-height: 20px;
}

.rk-profile-settings__form input,
.rk-profile-settings__form select,
.rk-profile-settings__form textarea {
  appearance: none;
  background-color: #111213;
  border: 1px solid #343840;
  border-radius: 5px;
  box-sizing: border-box;
  color: #f1f2f3;
  font: inherit;
  font-size: 14px;
  line-height: 20px;
  outline: 0;
  padding: 11px 13px;
  width: 100%;
}

.rk-profile-settings__form input:focus,
.rk-profile-settings__form select:focus,
.rk-profile-settings__form textarea:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 1px #6366f1;
}

.rk-profile-settings__form select {
  background-image: linear-gradient(45deg, transparent 50%, var(--rk-primary) 50%), linear-gradient(135deg, var(--rk-primary) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  padding-right: 32px;
}

.rk-profile-settings__form textarea {
  height: 94px;
  resize: none;
}

.rk-profile-settings__actions {
  align-items: center;
  bottom: 14px;
  display: flex;
  gap: 16px;
  position: absolute;
  right: 16px;
}

.rk-profile-settings__delete,
.rk-profile-settings__update {
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  line-height: 18px;
  padding: 11px 20px;
}

.rk-profile-settings__delete {
  background: transparent;
  border: 1px solid #ff3f44;
  color: #ff3f44;
}

.rk-profile-settings__update {
  background: var(--rk-primary);
  border: 1px solid var(--rk-primary);
  color: #090909;
  min-width: 96px;
}

@media (max-width: 767px) {
  .rk-profile-orders {
    margin: 12px;
    min-height: 0;
    padding: 16px;
  }

  .rk-profile-orders__heading h1 {
    font-size: 20px;
    line-height: 26px;
  }

  .rk-profile-order__header {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .rk-profile-order__header h2,
  .rk-profile-order__header p {
    font-size: 16px;
    line-height: 22px;
  }

  .rk-profile-order__status {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 16px;
  }

  .rk-profile-order__progress {
    gap: 10px;
  }

  .rk-profile-order__downloads {
    justify-content: flex-start;
  }

  .rk-profile-order__download {
    flex: 0 1 auto;
  }

  .rk-profile-order__detail-grid {
    grid-template-columns: 1fr;
  }

  .rk-profile-order__total {
    align-items: flex-start;
  }

  .rk-profile-settings {
    min-height: 0;
  }

  .rk-profile-settings__notice {
    margin-top: 16px;
    max-width: none;
    position: static;
    width: auto;
  }

  .rk-profile-settings__panel {
    margin-top: 16px;
    min-height: 0;
    padding-bottom: 86px;
  }

  .rk-profile-settings__form {
    width: 100%;
  }

  .rk-profile-settings__actions {
    bottom: 16px;
    flex-wrap: wrap;
    justify-content: flex-end;
    left: 16px;
  }
}

/* ─────────────────────────────────────────────────────────────────────────────
   User Dropdown Menu (.rk-user-dropdown)
   ───────────────────────────────────────────────────────────────────────────── */

.rk-user-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 206px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    inset -0.03px 0.07px 4.62px 0px rgba(214, 255, 78, 0.13),
    inset -0.06px 0.12px 9.24px 0px rgba(214, 255, 78, 0.13),
    0.05px -0.1px 12px -8px rgba(0, 0, 0, 0.15),
    0.3px -0.6px 48px -12px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  z-index: 100;
}

.rk-user-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-family: var(--rk-font-geist);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  cursor: pointer;
  text-align: left;
  transition: opacity 160ms ease, transform 160ms ease;
}

.rk-user-dropdown__item:hover {
  opacity: 0.85;
  transform: translateX(2px);
}

.rk-user-dropdown__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #ffffff;
}

.rk-user-dropdown__icon--primary {
  color: var(--rk-primary);
}

.rk-user-dropdown__icon--danger {
  color: var(--rk-error);
}

/* ─────────────────────────────────────────────────────────────────────────────
   Language & Currency Dropdown (.rk-lang-dropdown)
   ───────────────────────────────────────────────────────────────────────────── */

.rk-lang-dropdown {
  width: 270px;
  padding: 16px;
  gap: 12px;
}

.rk-lang-dropdown__section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rk-lang-dropdown__label {
  font-family: var(--rk-font-geist);
  font-size: 12px;
  font-weight: 500;
  color: var(--rk-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.rk-lang-dropdown__options {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rk-lang-dropdown__form {
  display: contents;
}

.rk-lang-dropdown__btn {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 8px 4px;
  font-family: var(--rk-font-geist);
  font-size: 12px;
  font-weight: 500;
  color: var(--rk-text);
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
  transition: all 160ms ease;
}

.rk-lang-dropdown__btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.rk-lang-dropdown__btn.is-active {
  background: var(--rk-primary);
  border-color: var(--rk-primary);
  color: #090909;
  font-weight: 600;
}

.rk-lang-dropdown__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.10);
  width: 100%;
}

/* Order wizard reference composition. Keep these rules scoped away from landing. */
.rk-page--order {
  background: #0b0c0e;
  min-width: 0;
}

.rk-page--order .rk-shell {
  background: #0b0c0e;
  margin: 0;
  min-height: 0;
}

.rk-page--order .rk-topbar--order {
  background: #0b0c0e;
  border: 0;
  height: 64px;
}

.rk-page--order .rk-order-header-inner {
  height: 64px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  padding: 14px 15px;
}

.rk-page--order .rk-brand__logo {
  height: 22px;
}

.rk-page--order .rk-lang-pill {
  background: rgba(255, 255, 255, 0.02);
  border-color: #2c2f36;
  display: inline-flex;
  font-size: 11px;
  gap: 5px;
  height: 34px;
  padding: 7px 8px;
}

.rk-page--order .rk-main--order {
  margin-left: auto;
  margin-right: auto;
  max-width: 1440px;
  padding: 0 15px;
  padding-top: 11px;
}

.rk-page--order .rk-order-page {
  max-width: none;
}

.rk-page--order .rk-order-card {
  background: #16181c;
  border: 0;
  border-radius: 15px;
  box-shadow: none;
  padding: 15px;
}

.rk-order-stage-head {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(230px, 260px) minmax(0, 1fr);
  min-height: 62px;
  padding-bottom: 15px;
}

.rk-page--order .rk-order-stage-head {
  grid-column: 1 / -1;
}

.rk-page--order .rk-order-top {
  margin: 0;
}

.rk-page--order .rk-order-top__title {
  background: var(--rk-gradient-c2);
  background-clip: text;
  color: transparent;
  font-size: 24px;
  line-height: 30px;
  -webkit-background-clip: text;
}

.rk-page--order .rk-order-top__subtitle {
  color: #9ca3af;
  margin-top: 4px;
}

.rk-page--order .rk-order-stepper {
  margin: 0;
  max-width: none;
  padding-top: 1px;
}

.rk-page--order .rk-order-step {
  min-width: 0;
}

.rk-page--order .rk-order-step::after {
  background: linear-gradient(90deg, rgba(75, 85, 99, 0) 0%, #4b5563 50%, rgba(75, 85, 99, 0) 100%);
  left: calc(50% + 19px);
  width: calc(100% - 38px);
}

.rk-page--order .rk-order-step__circle {
  background: var(--rk-gradient-stepper-disabled);
  border-color: var(--rk-border);
  color: var(--rk-text-focus);
  height: 30px;
  margin-bottom: 8px;
  width: 30px;
}

.rk-page--order .rk-order-step--active .rk-order-step__circle,
.rk-page--order .rk-order-step.is-completed .rk-order-step__circle {
  background: var(--rk-gradient-stepper-selected);
  border-color: var(--rk-tertiary-400);
  color: var(--rk-text);
}

.rk-page--order .rk-order-step.is-completed .rk-order-step__circle {
  background: #14b8a6;
  border-color: #14b8a6;
  color: #0b0c0e;
  font-size: 0;
}

.rk-order-step__done {
  display: none;
  height: 22px;
  width: 22px;
}

.rk-page--order .rk-order-step.is-completed .rk-order-step__done {
  display: block;
}

.rk-page--order .rk-order-step__label {
  color: #d1d5db;
  font-size: 12px;
  line-height: 15px;
}

.rk-page--order .rk-order-workspace {
  display: block;
}

.rk-page--order .rk-order-card:has([data-step-content="2"]:not([hidden])) {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) 348px;
}

.rk-page--order .rk-order-page:has([data-step-content="2"]:not([hidden])) {
  background: #16181c;
  border-radius: 15px;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) 348px;
  padding: 15px;
}

.rk-page--order .rk-order-page:has([data-step-content="2"]:not([hidden])) .rk-order-card,
.rk-page--order .rk-order-page:has([data-step-content="2"]:not([hidden])) .rk-order-workspace {
  display: contents;
}

.rk-page--order .rk-order-card:has([data-step-content="2"]:not([hidden])) .rk-order-workspace {
  display: contents;
}

.rk-page--order .rk-order-card:has([data-step-content="2"]:not([hidden])) .rk-order-stage-head {
  grid-column: 1 / -1;
}

.rk-page--order .rk-order-card:has([data-step-content="2"]:not([hidden])) .rk-order-main {
  min-width: 0;
}

.rk-page--order .rk-upload-box {
  background: #1e2126;
  border-color: #4b5563;
  border-radius: 16px;
  gap: 12px;
  min-height: 647px;
  padding: 32px 20px;
}

.rk-page--order .rk-upload-box__icon img {
  height: 64px;
  width: 64px;
}

.rk-page--order .rk-upload-box__title {
  color: #f9fafb;
  font-size: 18px;
  line-height: 24px;
}

.rk-page--order .rk-upload-box__hint {
  color: #9ca3af;
  font-size: 12px;
  line-height: 15px;
}

.rk-page--order .rk-upload-box__browse {
  height: 35px;
  min-width: 94px;
  padding-left: 10px;
  padding-right: 10px;
}

.rk-page--order .rk-upload-box__file,
.rk-page--order .rk-upload-box__progress {
  display: none;
}

.rk-page--order .rk-upload-box__hint {
  color: #9ca3af;
}

.rk-primary-upload-state,
.rk-primary-upload-success {
  align-items: center;
  flex-direction: column;
  gap: 28px;
  justify-content: center;
}

.rk-primary-upload-progress {
  align-items: center;
  background: #202329;
  border-radius: 50%;
  display: flex;
  height: 150px;
  justify-content: center;
  position: relative;
  width: 150px;
}

.rk-primary-upload-progress::after {
  background: var(--rk-gradient-c2);
  border-radius: inherit;
  content: "";
  inset: 0;
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 7px), #000 calc(100% - 6px)), conic-gradient(from 225deg, #000 0 var(--rk-upload-progress, 0%), transparent var(--rk-upload-progress, 0%) 100%);
  -webkit-mask-composite: source-in;
  mask: radial-gradient(farthest-side, transparent calc(100% - 7px), #000 calc(100% - 6px)), conic-gradient(from 225deg, #000 0 var(--rk-upload-progress, 0%), transparent var(--rk-upload-progress, 0%) 100%);
  mask-composite: intersect;
  position: absolute;
}

.rk-primary-upload-progress::before {
  background: #1e2126;
  border: 1px solid #2c2f36;
  border-radius: 50%;
  content: "";
  inset: 7px;
  position: absolute;
}

.rk-primary-upload-progress span {
  color: #f9fafb;
  font-size: 20px;
  line-height: 26px;
  position: relative;
  z-index: 1;
}

.rk-primary-upload-state .rk-btn {
  background: #6b7280;
  border: 0;
  color: #090909;
  height: 45px;
  min-width: 94px;
}

.rk-primary-upload-success p {
  color: #f9fafb;
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}

.rk-primary-upload-progress--complete {
  --rk-upload-progress: 100%;
}

.rk-page--order .rk-upload-box--uploading > :not(.rk-primary-upload-state),
.rk-page--order .rk-upload-box--uploaded > :not(.rk-primary-upload-success) {
  display: none;
}

.rk-page--order .rk-upload-box--uploading .rk-primary-upload-state,
.rk-page--order .rk-upload-box--uploaded .rk-primary-upload-success {
  display: flex !important;
}

.rk-detail-upload-state,
.rk-detail-upload-success {
  align-items: center;
  flex-direction: column;
  gap: 28px;
  justify-content: center;
}

.rk-detail-upload-state .rk-btn {
  background: #6b7280;
  border: 0;
  color: #090909;
  height: 45px;
  min-width: 94px;
}

.rk-detail-upload-success p {
  color: #f9fafb;
  font-size: 20px;
  line-height: 26px;
  margin: 0;
}

.rk-detail-upload-limit {
  align-items: center;
  bottom: 75px;
  display: none;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  left: 0;
  padding: 24px;
  position: absolute;
  right: 0;
  top: 0;
  text-align: center;
}

.rk-detail-upload-limit img {
  display: block;
  height: 64px;
  width: 64px;
}

.rk-detail-upload-limit p {
  color: #f9fafb;
  font-size: 24px;
  line-height: 30px;
  margin: 0;
}

.rk-detail-upload-limit span {
  color: #d1d5db;
  font-size: 16px;
  line-height: 24px;
  max-width: 820px;
}

.rk-detail-upload-limit .rk-btn {
  display: none;
  background: #cbf924;
  color: #090909;
  height: 45px;
  min-width: 124px;
}

.rk-page--order .rk-step-two-dropzone.rk-detail-upload--limit > :not(.rk-detail-upload-limit):not(.rk-order-note-row) {
  display: none;
}

.rk-page--order .rk-step-two-dropzone.rk-detail-upload--limit .rk-detail-upload-limit {
  display: flex !important;
}

.rk-page--order .rk-step-two-dropzone.rk-detail-upload--uploading > :not(.rk-detail-upload-state),
.rk-page--order .rk-step-two-dropzone.rk-detail-upload--uploaded > :not(.rk-detail-upload-success) {
  display: none;
}

.rk-page--order .rk-step-two-dropzone.rk-detail-upload--uploading .rk-detail-upload-state,
.rk-page--order .rk-step-two-dropzone.rk-detail-upload--uploaded .rk-detail-upload-success {
  display: flex !important;
}

.rk-page--order [data-step-content="2"] .rk-step-two-dropzone {
  min-height: 647px;
  position: relative;
}

.rk-page--order [data-step-content="2"] > .rk-order-top {
  display: none;
}

.rk-page--order [data-step-content="2"] .rk-step-two-dropzone .rk-upload-box__title {
  font-size: 24px;
  line-height: 30px;
}

.rk-page--order [data-step-content="2"] .rk-step-two-dropzone .rk-upload-box__hint {
  font-size: 16px;
  line-height: 24px;
}

.rk-page--order [data-step-content="2"] .rk-order-note-row {
  background: #2c2f36;
  border-radius: 10px;
  bottom: 10px;
  left: 10px;
  padding: 0;
  position: absolute;
  right: 10px;
}

.rk-page--order [data-step-content="2"] .rk-order-note {
  background: transparent;
  border: 0;
  border-radius: 10px;
  color: #9ca3af;
  height: 55px;
  min-height: 55px;
  padding: 0 10px;
}

.rk-page--order [data-step-content="2"] .rk-order-note::placeholder {
  color: #9ca3af;
  opacity: 1;
}

.rk-order-hidden-control {
  display: none !important;
}

.rk-page--order .rk-order-basket,
.rk-page--order .rk-order-state-panel {
  display: none;
}

.rk-page--order .rk-order-card:has([data-step-content="2"]:not([hidden])) .rk-order-basket {
  background: #16181c;
  border: 1px solid #14b8a6;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  min-height: 647px;
  padding: 14px 12px;
}

.rk-page--order .rk-order-page:has([data-step-content="2"]:not([hidden])) .rk-order-basket {
  background: #16181c;
  border: 1px solid #14b8a6;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  min-height: 647px;
  padding: 14px 12px;
}

.rk-page--order .rk-order-card:has([data-step-content="2"]:not([hidden])) .rk-order-basket__title {
  color: #3b82f6;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
}

.rk-page--order .rk-order-card:has([data-step-content="2"]:not([hidden])) .rk-order-basket__rule {
  background: #2c2f36;
  margin: 10px 0 12px;
}

.rk-project-file-row,
.rk-project-supporting-title {
  color: #f9fafb;
  font-size: 14px;
  line-height: 18px;
}

.rk-project-file-row {
  display: flex;
  justify-content: space-between;
}

.rk-project-file-edit {
  color: #cbf924;
  font-size: 22px;
  line-height: 18px;
}

.rk-page--order .rk-order-page:is(.is-step-two, .is-step-three, .is-step-four) .rk-order-basket__file {
  background: #202329;
  border-radius: 20px;
  color: #6b7280;
  margin: 12px 0 22px;
  overflow: hidden;
  padding: 11px 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rk-project-supporting-title {
  border-top: 1px solid #2c2f36;
  margin-bottom: 10px;
  margin-top: 14px;
  padding-top: 14px;
}

.rk-page--order .rk-order-card:has([data-step-content="2"]:not([hidden])) .rk-order-file-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
}

.rk-page--order .rk-order-page:is(.is-step-two, .is-step-three, .is-step-four) .rk-order-file-list > div {
  background: #2c2f36;
  border: 0;
  border-radius: 20px;
  color: #f9fafb;
  display: inline-flex;
  font-size: 13px;
  gap: 8px;
  min-height: 40px;
  overflow: hidden;
  padding: 10px 12px;
}

.rk-page--order .rk-order-page.is-step-two .rk-order-file-list > div {
  align-items: center;
  background: #2c2f36;
  border: 0;
  border-radius: 20px;
  color: #f9fafb;
  display: flex;
  font-size: 13px;
  gap: 8px;
  justify-content: space-between;
  min-height: 40px;
  overflow: hidden;
  padding: 8px 10px 8px 12px;
  width: 100%;
}

.rk-page--order .rk-order-page.is-step-two .rk-order-file-list > div > span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rk-order-file-remove {
  align-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 20px;
  height: 20px;
  justify-content: center;
  padding: 0;
  width: 20px;
}

.rk-order-file-remove img {
  display: block;
  height: 20px;
  width: 20px;
}

.rk-page--order .rk-order-card:has([data-step-content="2"]:not([hidden])) .rk-order-basket__actions {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}

.rk-page--order .rk-order-card:has([data-step-content="2"]:not([hidden])) .rk-order-basket__actions .rk-btn {
  border: 1px solid #cbf924;
  color: #f9fafb;
  min-width: 78px;
}

.rk-page--order .rk-order-page.is-step-two {
  background: #16181c;
  border-radius: 15px;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) 348px;
  padding: 15px;
}

.rk-page--order .rk-order-page.is-step-two .rk-order-card,
.rk-page--order .rk-order-page.is-step-two .rk-order-workspace {
  display: contents;
}

.rk-page--order .rk-order-page.is-step-two .rk-order-stage-head {
  column-gap: 18px;
  grid-column: 1 / -1;
  grid-template-columns: 260px minmax(0, 1fr) 348px;
}

.rk-page--order .rk-order-page.is-step-two .rk-order-stepper {
  grid-column: 2;
}

.rk-page--order .rk-order-page.is-step-two .rk-order-basket {
  background: linear-gradient(#16181c, #16181c) padding-box,
    linear-gradient(90deg, #6366f1 0%, #14b8a6 100%) border-box;
  border: 1px solid transparent;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  min-height: 647px;
  padding: 14px 12px;
}

.rk-page--order .rk-order-page.is-step-two .rk-order-basket__title {
  color: #3b82f6;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
}

.rk-page--order .rk-order-page.is-step-two .rk-project-file-edit {
  display: block;
  height: 20px;
  width: 20px;
}

.rk-page--order .rk-order-page.is-step-two .rk-project-supporting-title {
  border-top: 1px solid #2c2f36;
  padding-top: 14px;
}

.rk-page--order .rk-order-page.is-step-two .rk-order-basket__file {
  background: #202329;
  border-radius: 20px;
  color: #6b7280;
  display: block;
  font-size: 14px;
  line-height: 21px;
  margin: 12px 0 22px;
  overflow: hidden;
  padding: 11px 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rk-page--order .rk-order-page.is-step-two .rk-order-basket__actions {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}

.rk-page--order .rk-order-page.is-step-two .rk-order-basket__actions .rk-btn {
  background: transparent;
  border: 1px solid #cbf924;
  color: #f9fafb;
  font-size: 16px;
  height: 45px;
  line-height: 20px;
  padding: 10px 20px;
}

.rk-page--order .rk-order-page.is-step-two .rk-order-basket__actions #project-next-button {
  background: #cbf924;
  color: #090909;
  min-width: 110px;
}

.rk-page--order .rk-order-page.is-step-two .rk-order-basket__actions #project-next-button {
  margin-left: auto;
}

.rk-page--order .rk-order-page.is-step-two .rk-order-basket__actions [data-step-nav] {
  display: none;
}

.rk-page--order .rk-order-page.is-step-two .rk-order-basket__actions [data-step-nav="1"] {
  min-width: 80px;
}

.rk-project-selected-title,
.rk-project-selected-list {
  display: none;
}

.rk-page--order .rk-order-page.is-step-three {
  background: #16181c;
  border-radius: 15px;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) 348px;
  padding: 15px;
}

.rk-page--order .rk-order-page.is-step-three .rk-order-card,
.rk-page--order .rk-order-page.is-step-three .rk-order-workspace {
  display: contents;
}

.rk-page--order .rk-order-page.is-step-three .rk-order-stage-head {
  column-gap: 18px;
  grid-column: 1 / -1;
  grid-template-columns: 260px minmax(0, 1fr) 348px;
}

.rk-page--order .rk-order-page.is-step-three .rk-order-stepper {
  grid-column: 2;
}

.rk-page--order .rk-order-page.is-step-three .rk-order-main {
  min-width: 0;
}

.rk-page--order .rk-order-page.is-step-three [data-step-content="3"] > .rk-order-top {
  display: none;
}

.rk-page--order .rk-order-page.is-step-three .rk-order-basket {
  background: linear-gradient(#16181c, #16181c) padding-box,
    linear-gradient(90deg, #6366f1 0%, #14b8a6 100%) border-box;
  border: 1px solid transparent;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  min-height: 647px;
  padding: 14px 12px;
}

.rk-page--order .rk-order-page.is-step-three .rk-order-basket__title {
  color: #3b82f6;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
}

.rk-page--order .rk-order-page.is-step-three .rk-project-selected-title {
  border-top: 1px solid #2c2f36;
  color: #f9fafb;
  display: block;
  font-size: 14px;
  line-height: 18px;
  margin-top: 14px;
  padding-top: 14px;
}

.rk-page--order .rk-order-page.is-step-three .rk-project-selected-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-height: 150px;
  overflow-y: auto;
  margin-top: 10px;
  padding-top: 8px;
}

.rk-page--order .rk-order-page.is-step-three .rk-project-total {
  flex-shrink: 0;
  margin-top: 18px;
}

.rk-page--order .rk-order-page.is-step-three .rk-order-basket__actions {
  flex-shrink: 0;
  margin-top: 18px;
}

.rk-project-selected-chip {
  align-items: center;
  background: #2c2f36;
  border: 0;
  border-radius: 20px;
  color: #f9fafb;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  gap: 8px;
  line-height: 18px;
  padding: 8px 12px;
}

.rk-project-selected-chip:hover {
  background: #363b45;
}

.rk-project-selected-chip img {
  display: block;
  height: 20px;
  width: 20px;
}

.rk-page--order .rk-order-page.is-step-three .rk-order-basket__actions {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
}

.rk-page--order .rk-order-page.is-step-three .rk-order-basket__actions .rk-btn {
  background: transparent;
  border: 1px solid #cbf924;
  color: #f9fafb;
  font-size: 16px;
  height: 45px;
  line-height: 20px;
  padding: 10px 20px;
}

.rk-page--order .rk-order-page.is-step-three .rk-order-basket__actions #project-next-button {
  background: #cbf924;
  color: #090909;
  min-width: 110px;
}

.rk-page--order .rk-order-page.is-step-three .rk-order-basket__actions {
  margin-top: 18px;
}

.rk-size-filters {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  gap: 12px;
  margin: 0 0 16px;
}

.rk-size-filters button {
  background: transparent;
  border: 1px solid #6366f1;
  border-radius: 20px;
  color: #9ca3af;
  font-size: 13px;
  line-height: 18px;
  padding: 4px 14px;
}

.rk-size-filters button.is-active,
.rk-size-filters button.is-selected {
  background: #6366f1;
  color: #f9fafb;
}

.rk-page--order .rk-order-page.is-step-three .rk-order-size-list {
  background: #1e2126;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 647px;
  margin: 0;
  padding: 10px 24px 14px;
}

.rk-page--order .rk-order-page.is-step-three .rk-size-items {
  display: grid;
  gap: 20px;
  column-gap: 28px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  min-height: 0;
  overflow-y: auto;
}

.rk-page--order .rk-order-page.is-step-three .rk-order-size-option {
  background: #17191d;
  background: linear-gradient(#17191d, #17191d) padding-box,
    linear-gradient(90deg, #6366f1 0%, #14b8a6 100%) border-box;
  border: 1px solid transparent;
  border-radius: 14px;
  color: #9ca3af;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 275px;
  overflow: hidden;
  padding: 0;
  position: relative;
}

.rk-page--order .rk-order-page.is-step-three .rk-order-size-option input {
  display: none;
}

.rk-size-card__preview {
  align-items: center;
  background: #525c6d;
  color: #cbf924;
  display: flex;
  flex: 0 0 130px;
  font-size: 0;
  justify-content: center;
  margin: 0;
  position: relative;
  width: 100%;
}

.rk-size-card__image {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.rk-size-card__dots {
  align-items: center;
  bottom: 8px;
  display: flex;
  gap: 5px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.rk-size-card__dot {
  background: #9ca3af;
  border: 0;
  border-radius: 999px;
  height: 6px;
  padding: 0;
  width: 6px;
}

.rk-size-card__dot.is-active {
  background: #2c2f36;
  height: 8px;
  width: 28px;
}

.rk-size-card__details {
  align-self: stretch;
  box-sizing: border-box;
  display: flex;
  flex: 1;
  flex-direction: column;
  font-size: 12px;
  gap: 2px;
  line-height: 17px;
  padding: 8px;
  width: 100%;
}

.rk-size-card__size,
.rk-size-card__platform {
  color: #f9fafb;
}

.rk-size-card__size {
  font-weight: 500;
}

.rk-size-card__platform-label,
.rk-size-card__max-size {
  color: #9ca3af;
}

.rk-size-card__platform {
  align-items: center;
  color: #f9fafb;
  display: inline-flex;
  gap: 4px;
}

.rk-size-card__platform img {
  display: block;
  height: 20px;
  width: 20px;
}

.rk-size-card__toggle {
  align-items: center;
  bottom: 8px;
  display: flex;
  height: 32px;
  justify-content: center;
  position: absolute;
  right: 8px;
  width: 32px;
}

.rk-size-card__remove {
  display: none;
  height: 32px;
  width: 32px;
}

.rk-size-card__add {
  display: block;
  height: 32px;
  width: 32px;
}

.rk-page--order .rk-order-page.is-step-three .rk-order-size-option:has(input:checked) .rk-size-card__add {
  display: none;
}

.rk-page--order .rk-order-page.is-step-three .rk-order-size-option:has(input:checked) .rk-size-card__remove {
  display: block;
}

.rk-page--order .rk-order-page.is-step-three .rk-order-size-option:has(input:checked) {
  background: #17191d;
  border-color: #4b5563;
}

.rk-page--order .rk-order-page.is-step-three .rk-order-size-option:has(input:checked) .rk-size-card__toggle {
  background: transparent;
}

.rk-page--order .rk-order-page.is-step-three .rk-order-size-option:has(input:checked) .rk-size-card__preview,
.rk-page--order .rk-order-page.is-step-three .rk-order-size-option:has(input:checked) .rk-size-card__details {
  filter: blur(3px);
  opacity: 0.58;
}

.rk-page--order .rk-order-page.is-step-four {
  background: #16181c;
  border-radius: 15px;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) 348px;
  padding: 15px;
}

.rk-page--order .rk-order-page.is-step-four .rk-order-card,
.rk-page--order .rk-order-page.is-step-four .rk-order-workspace {
  display: contents;
}

.rk-page--order .rk-order-page.is-step-four .rk-order-stage-head {
  column-gap: 18px;
  grid-column: 1 / -1;
  grid-template-columns: 260px minmax(0, 1fr) 348px;
}

.rk-page--order .rk-order-page.is-step-four .rk-order-stepper {
  grid-column: 2;
}

.rk-page--order .rk-order-page.is-step-four [data-step-content="4"] > .rk-order-top {
  display: none;
}

.rk-page--order .rk-order-page.is-step-four .rk-order-main {
  background: #1e2126;
  border-radius: 14px;
  min-height: 920px;
  padding: 14px 24px;
}

.rk-step-four-form {
  width: 420px;
}

.rk-step-four-section {
  display: flex;
  flex-direction: column;
}

.rk-step-four-section h3 {
  color: #14b8a6;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  margin: 0 0 14px;
}

.rk-step-four-section label {
  color: #f9fafb;
  font-size: 14px;
  line-height: 18px;
  margin: 0 0 5px;
}

.rk-step-four-section .rk-order-input {
  background: #111111;
  border: 1px solid #6366f1;
  border-radius: 4px;
  color: #f9fafb;
  height: 45px;
  margin-bottom: 10px;
  min-height: 45px;
  padding: 10px 12px;
}

.rk-step-four-section textarea.rk-order-input {
  height: 94px;
  resize: vertical;
}

.rk-step-four-inline {
  align-items: center;
  display: flex;
  gap: 16px;
}

.rk-step-four-inline .rk-order-input {
  flex: 1;
}

.rk-step-four-inline .rk-btn {
  height: 45px;
  min-width: 82px;
}

.rk-step-four-payment-heading {
  margin-top: 2px;
}

.rk-page--order .rk-order-page.is-step-four .rk-order-debug,
.rk-page--order .rk-order-page.is-step-four .rk-order-actions {
  max-width: 760px;
}

.rk-page--order .rk-order-page.is-step-four .rk-order-basket {
  background: linear-gradient(#16181c, #16181c) padding-box,
    linear-gradient(90deg, #6366f1 0%, #14b8a6 100%) border-box;
  border: 1px solid transparent;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  min-height: 920px;
  padding: 14px 12px;
}

.rk-page--order .rk-order-page.is-step-four .rk-order-basket__title {
  color: #3b82f6;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
}

.rk-page--order .rk-order-page.is-step-four .rk-project-selected-title {
  border-top: 1px solid #2c2f36;
  color: #f9fafb;
  display: block;
  font-size: 14px;
  line-height: 18px;
  margin-top: 14px;
  padding-top: 14px;
}

.rk-page--order .rk-order-page.is-step-four .rk-project-selected-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
  padding-top: 8px;
}

.rk-page--order .rk-order-page.is-step-four .rk-project-selected-chip {
  align-items: center;
  background: #2c2f36;
  border: 0;
  border-radius: 20px;
  color: #f9fafb;
  display: inline-flex;
  font-size: 13px;
  gap: 8px;
  line-height: 18px;
  padding: 8px 12px;
}

.rk-project-total {
  display: none;
  border-top: 1px solid #2c2f36;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
}

.rk-page--order .rk-order-page.is-step-three .rk-project-total,
.rk-page--order .rk-order-page.is-step-four .rk-project-total {
  display: flex;
}

.rk-project-total strong {
  color: #cbf924;
  font-size: 16px;
}

.rk-project-total span {
  background: #525c6d;
  border-radius: 22px;
  color: #f9fafb;
  padding: 11px 14px;
  width: max-content;
}

.rk-project-total b {
  color: #cbf924;
}

.rk-project-discount {
  display: none;
  margin-top: 12px;
}

.rk-page--order .rk-order-page.is-step-four .rk-project-discount {
  display: block;
}

.rk-project-discount label {
  color: #f9fafb;
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.rk-project-discount > div {
  align-items: center;
  display: flex;
  gap: 12px;
}

.rk-project-discount input {
  background: #111111;
  border: 1px solid #6366f1;
  border-radius: 4px;
  color: #f9fafb;
  height: 45px;
  min-width: 0;
  width: 100%;
}

.rk-project-discount button {
  border: 1px solid #cbf924;
  color: #f9fafb;
  flex: 0 0 auto;
  height: 45px;
}

.rk-page--order .rk-order-page.is-step-four .rk-order-basket__actions {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  margin-top: 18px;
}

.rk-page--order .rk-order-page.is-step-four .rk-order-basket__actions [data-step-nav] {
  display: none;
}

.rk-page--order .rk-order-page.is-step-four .rk-order-basket__actions #project-next-button {
  background: #cbf924;
  border: 1px solid #cbf924;
  color: #090909;
  height: 45px;
  min-width: 105px;
}

.rk-page--order .rk-order-generated-row,
.rk-page--order .rk-order-size-option {
  align-items: center;
  display: flex;
  gap: 8px;
}

.rk-page--order .rk-order-modal {
  align-items: center;
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.74);
  -webkit-backdrop-filter: blur(8px);
  border: 0;
  display: flex;
  inset: 0;
  justify-content: center;
  margin: 0;
  padding: 20px;
  position: fixed;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 0s linear 180ms;
}

.rk-page--order .rk-order-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transition-delay: 0s;
}

.rk-page--order .rk-order-modal.is-closing {
  opacity: 0;
  pointer-events: none;
  visibility: visible;
  transition-delay: 0s;
}

.rk-page--order .rk-order-modal__panel {
  background: #16181c;
  border: 0;
  border-radius: 14px;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.52);
  max-width: 556px;
  padding: 24px;
  position: relative;
  transform: translateY(8px) scale(0.98);
  transition: transform 180ms ease;
  width: 100%;
}

.rk-page--order .rk-order-modal.is-open .rk-order-modal__panel {
  transform: translateY(0) scale(1);
}

.rk-page--order .rk-order-modal.is-closing .rk-order-modal__panel {
  transform: translateY(8px) scale(0.98);
}

.rk-page--order .rk-wizard-login-form {
  max-height: min(90vh, 640px);
  overflow-y: auto;
}

.rk-wizard-login-form__fields {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

.rk-wizard-login-form__field {
  display: grid;
  gap: 0.4rem;
  min-width: 0;
}

.rk-wizard-login-form__field label {
  color: #f9fafb;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
}

.rk-wizard-login-form__field .rk-order-input {
  box-sizing: border-box;
  min-height: 45px;
  width: 100%;
}

.rk-wizard-login-form__field .rk-order-input:focus-visible,
.rk-wizard-login-form__remember input:focus-visible {
  border-color: #cbf924;
  box-shadow: 0 0 0 3px rgba(203, 249, 36, 0.28);
  outline: none;
}

.rk-wizard-login-form__field .rk-order-input[aria-invalid="true"] {
  border-color: #ef4444;
}

.rk-wizard-login-form__remember {
  align-items: center;
  color: #f9fafb;
  display: flex;
  font-size: 14px;
  gap: 0.55rem;
  line-height: 20px;
  margin-top: 1rem;
}

.rk-wizard-login-form__remember input {
  accent-color: #cbf924;
  flex: 0 0 auto;
  height: 1rem;
  margin: 0;
  width: 1rem;
}

.rk-wizard-login-form__error,
.rk-wizard-login-form__field-error {
  color: #ff9b9b;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  overflow-wrap: anywhere;
}

.rk-wizard-login-form__status {
  color: #c9d1d9;
  font-size: 14px;
  line-height: 20px;
  margin: 1rem 0 0;
  min-height: 20px;
}

.rk-page--order .rk-wizard-login-form__actions {
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.rk-wizard-login-form__actions .rk-btn {
  border-radius: 0.375rem;
  min-width: 7rem;
}

.rk-wizard-login-form__actions #submit-wizard-login-button {
  min-width: 7rem;
}

@media (max-width: 480px) {
  .rk-page--order .rk-order-modal {
    align-items: flex-start;
    overflow-y: auto;
    padding: 0.75rem;
  }

  .rk-page--order .rk-wizard-login-form {
    margin: auto 0;
    max-height: calc(100vh - 1.5rem);
    padding: 1.25rem;
  }

  .rk-page--order .rk-wizard-login-form__actions {
    flex-direction: column-reverse;
  }

  .rk-wizard-login-form__actions .rk-btn {
    width: 100%;
  }
}

.rk-order-modal__panel::before,
.rk-order-modal__panel::after {
  background: linear-gradient(90deg, transparent 0%, #6366f1 35%, #14b8a6 65%, transparent 100%);
  content: "";
  height: 1px;
  left: 18%;
  position: absolute;
  right: 18%;
}

.rk-order-modal__panel::before {
  top: 0;
}

.rk-order-modal__panel::after {
  bottom: 0;
}

.rk-order-modal__warning {
  align-items: center;
  background: #fff8e9;
  border-radius: 50%;
  display: flex;
  height: 48px;
  justify-content: center;
  line-height: 24px;
  margin-bottom: 18px;
  width: 48px;
}

.rk-order-modal__warning img {
  display: block;
  height: 24px;
  width: 24px;
}

.rk-order-modal__panel h2 {
  color: #f9fafb;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  margin: 0 0 14px;
}

.rk-order-modal__panel > p {
  color: #f9fafb;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  max-width: 480px;
}

.rk-page--order .rk-order-modal__actions {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  margin-top: 24px;
}

.rk-page--order .rk-order-modal__actions .rk-btn {
  background: transparent;
  border: 0;
  color: #6b7280;
  font-size: 16px;
  height: 45px;
  line-height: 20px;
  padding: 10px 16px;
}

.rk-page--order .rk-order-modal__actions #confirm-skip-step2-button {
  border: 1px solid #cbf924;
  border-radius: 9999px;
  color: #f9fafb;
  min-width: 136px;
}

#confirm-step2-modal .rk-order-modal__actions #confirm-step2-button {
  border: 1px solid #cbf924;
  border-radius: 9999px;
  color: #f9fafb;
  min-width: 112px;
}

.rk-delete-file-modal .rk-order-modal__warning {
  background: #ffd3d3;
}

.rk-order-error-modal .rk-order-modal__panel {
  max-height: min(90vh, 720px);
  overflow-y: auto;
}

.rk-order-error-modal .rk-order-modal__warning--error {
  background: #ffd3d3;
}

.rk-order-error-modal__fields {
  border-left: 3px solid #cbf924;
  margin-top: 1.25rem;
  padding-left: 1rem;
}

.rk-order-error-modal__fields h3 {
  color: #f9fafb;
  font-size: 14px;
  margin: 0 0 0.5rem;
}

.rk-order-error-modal__fields ul {
  color: #f9fafb;
  font-size: 14px;
  line-height: 20px;
  margin: 0;
  padding-left: 1.25rem;
}

.rk-delete-file-modal .rk-order-modal__actions #confirm-delete-file-button {
  background: #ef4444;
  border: 1px solid #ef4444;
  border-radius: 9999px;
  color: #f9fafb;
  min-width: 90px;
}

.rk-page--order [hidden] {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  .rk-page--order .rk-order-modal,
  .rk-page--order .rk-order-modal__panel {
    transition: none;
  }
}

.rk-page--order :is(button, a, input, select, label):focus-visible {
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.7);
  outline: 2px solid #14b8a6;
  outline-offset: 2px;
}

/* Keep the wizard usable on narrow screens. */
@media (max-width: 760px) {
  .rk-page--order .rk-main--order {
    padding-left: 8px;
    padding-right: 8px;
  }

  .rk-page--order .rk-order-page.is-step-two,
  .rk-page--order .rk-order-page.is-step-three,
  .rk-page--order .rk-order-page.is-step-four {
    display: block !important;
    grid-template-columns: none !important;
    padding: 8px;
  }

  .rk-page--order .rk-order-page.is-step-two .rk-order-stage-head,
  .rk-page--order .rk-order-page.is-step-three .rk-order-stage-head,
  .rk-page--order .rk-order-page.is-step-four .rk-order-stage-head {
    display: block;
    min-height: 0;
    padding-bottom: 12px;
  }

  .rk-page--order .rk-order-page.is-step-two .rk-order-stepper,
  .rk-page--order .rk-order-page.is-step-three .rk-order-stepper,
  .rk-page--order .rk-order-page.is-step-four .rk-order-stepper {
    display: flex;
    margin-top: 14px;
    width: 100%;
  }

  .rk-page--order .rk-order-page.is-step-two .rk-order-step,
  .rk-page--order .rk-order-page.is-step-three .rk-order-step,
  .rk-page--order .rk-order-page.is-step-four .rk-order-step {
    min-width: 0;
  }

  .rk-page--order .rk-order-page.is-step-two .rk-order-main,
  .rk-page--order .rk-order-page.is-step-three .rk-order-main,
  .rk-page--order .rk-order-page.is-step-four .rk-order-main,
  .rk-page--order .rk-order-page.is-step-two .rk-order-basket,
  .rk-page--order .rk-order-page.is-step-three .rk-order-basket,
  .rk-page--order .rk-order-page.is-step-four .rk-order-basket {
    box-sizing: border-box;
    margin: 0;
    min-height: 0;
    width: 100%;
  }

  .rk-page--order .rk-order-page.is-step-two .rk-order-card,
  .rk-page--order .rk-order-page.is-step-three .rk-order-card,
  .rk-page--order .rk-order-page.is-step-four .rk-order-card,
  .rk-page--order .rk-order-page.is-step-two .rk-order-workspace,
  .rk-page--order .rk-order-page.is-step-three .rk-order-workspace,
  .rk-page--order .rk-order-page.is-step-four .rk-order-workspace {
    display: block !important;
    width: 100%;
  }

  .rk-page--order .rk-order-page.is-step-two .rk-order-card,
  .rk-page--order .rk-order-page.is-step-three .rk-order-card,
  .rk-page--order .rk-order-page.is-step-four .rk-order-card {
    padding: 0;
  }

  .rk-page--order .rk-order-page.is-step-two .rk-order-main,
  .rk-page--order .rk-order-page.is-step-three .rk-order-main,
  .rk-page--order .rk-order-page.is-step-four .rk-order-main {
    width: 100%;
  }

  .rk-page--order .rk-order-page.is-step-two .rk-order-basket,
  .rk-page--order .rk-order-page.is-step-three .rk-order-basket,
  .rk-page--order .rk-order-page.is-step-four .rk-order-basket {
    margin-top: 12px;
    min-height: 420px;
  }

  .rk-page--order .rk-page--order .rk-upload-box,
  .rk-page--order .rk-upload-box,
  .rk-page--order [data-step-content="2"] .rk-step-two-dropzone {
    min-height: 420px;
  }

  .rk-page--order .rk-order-page.is-step-three .rk-order-size-list {
    height: auto;
    min-height: 520px;
    padding: 10px;
  }

  .rk-page--order .rk-order-page.is-step-three .rk-size-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rk-page--order .rk-order-page.is-step-three .rk-order-size-option {
    height: 238px;
  }

  .rk-page--order .rk-order-page.is-step-three .rk-size-filters {
    grid-column: 1 / -1;
    gap: 6px;
    margin-bottom: 8px;
  }

  .rk-page--order .rk-order-page.is-step-three .rk-size-filters button {
    font-size: 11px;
    padding: 4px 8px;
  }

  .rk-page--order .rk-order-page.is-step-four .rk-order-main {
    min-height: 0;
    padding: 14px;
  }

  .rk-page--order .rk-order-page.is-step-four .rk-step-four-form {
    width: 100%;
  }

  .rk-page--order .rk-order-page.is-step-four .rk-order-debug,
  .rk-page--order .rk-order-page.is-step-four .rk-order-actions {
    max-width: none;
    width: 100%;
  }

  .rk-page--order .rk-order-page.is-step-four .rk-order-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .rk-page--order .rk-order-page.is-step-four .rk-order-actions > * {
    width: 100%;
  }

  .rk-page--order .rk-order-page.is-step-four .rk-order-basket {
    min-height: 520px;
  }

}

@media (max-width: 480px) {
  .rk-page--order .rk-order-stage-head {
    grid-template-columns: 1fr;
  }

  .rk-page--order .rk-order-stage-head .rk-order-top__title {
    font-size: 22px;
    line-height: 28px;
  }

  .rk-page--order .rk-order-step__label {
    font-size: 10px;
    line-height: 13px;
  }

  .rk-page--order .rk-order-step__circle {
    height: 26px;
    width: 26px;
  }

  .rk-page--order .rk-order-step::after {
    left: calc(50% + 15px);
    width: calc(100% - 30px);
  }

  .rk-page--order .rk-order-page.is-step-three .rk-order-size-list {
    gap: 10px;
  }

  .rk-page--order .rk-order-page.is-step-three .rk-order-size-option {
    height: 220px;
  }

  .rk-page--order .rk-order-page.is-step-three .rk-size-card__preview {
    flex-basis: 100px;
  }

  .rk-page--order .rk-order-page.is-step-three .rk-size-card__details {
    font-size: 11px;
    line-height: 15px;
    padding: 6px;
  }

  .rk-page--order .rk-order-modal__panel {
    padding: 20px;
  }
}

@media (max-width: 760px) {
  .rk-order-stage-head {
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .rk-page--order .rk-order-stepper {
    gap: 8px;
  }

  .rk-page--order .rk-order-step::after {
    left: calc(50% + 17px);
    width: calc(100% - 34px);
  }

  .rk-page--order .rk-upload-box {
    min-height: 360px;
  }

}

@media (max-width: 480px) {
  .rk-page--order .rk-order-card {
    padding: 12px;
  }

  .rk-page--order .rk-order-top__title {
    font-size: 22px;
  }

  .rk-page--order .rk-order-step__label {
    font-size: 10px;
  }

  .rk-page--order .rk-upload-box__title {
    font-size: 20px;
    line-height: 26px;
  }

}




