: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(97.72deg, #6366f1 0%, #14b8a6 60.1%);
  --rk-gradient-base1: linear-gradient(223.57deg, #14b8a6 39.9%, #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-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);
}

.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-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;
}

.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: linear-gradient(90deg, #4f63f8 0%, #08d5f8 100%);
  -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-order-page {
  margin: 0 auto;
  max-width: 1400px;
}

.rk-order-card {
  backdrop-filter: blur(7.58px);
  background: rgba(9, 4, 16, 0.34);
  border: 1px solid rgba(155, 105, 231, 0.35);
  border-radius: 20px;
  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.05px -0.1px 12px -8px rgba(155, 120, 204, 0.15),
    0.3px -0.6px 48px -12px rgba(246, 246, 246, 0.15);
  position: relative;
  z-index: 1;
  padding: 2rem;
}

.rk-order-stepper {
  display: flex;
  justify-content: center;
  margin-bottom: 2.1rem;
}

.rk-order-step {
  align-items: center;
  color: #ffffff;
  display: flex;
  flex: 1 1 0;
  flex-direction: column;
  min-width: 120px;
  position: relative;
  text-align: center;
}

.rk-order-step::after {
  background: linear-gradient(90deg, rgba(215, 215, 215, 0.15) 0%, rgba(215, 215, 215, 0.9) 50%, rgba(215, 215, 215, 0.15) 100%);
  content: "";
  height: 1px;
  left: calc(50% + 24px);
  position: absolute;
  top: 16px;
  width: calc(100% - 48px);
}

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

.rk-order-step__circle {
  align-items: center;
  aspect-ratio: 1;
  background: linear-gradient(180deg, rgba(34, 23, 57, 1) 0%, rgba(94, 64, 159, 1) 49.52%);
  border: 1px solid #44345a;
  border-radius: 9999px;
  color: #898888;
  display: flex;
  font-family: var(--rk-font-geist);
  font-size: 16px;
  font-weight: 500;
  height: 32px;
  justify-content: center;
  margin-bottom: 0.75rem;
  width: 32px;
}

.rk-order-step--active .rk-order-step__circle {
  border-color: #9b69e7;
  color: #f5f5f5;
}

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

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

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

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

.rk-upload-box {
  align-items: center;
  border: 1px dashed var(--rk-primary);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  justify-content: center;
  min-height: 420px;
  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;
}

@media (max-width: 980px) {
  .rk-glass-stage::before {
    left: -330px;
    top: 12px;
  }

  .rk-glass-stage::after {
    right: -380px;
    top: 380px;
  }

  .rk-order-card {
    padding: 1.25rem;
  }

  .rk-order-stepper {
    flex-wrap: wrap;
    gap: 1rem 0.25rem;
  }

  .rk-order-step {
    flex: 1 1 calc(50% - 0.25rem);
  }

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

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

@media (max-width: 640px) {
  .rk-glass-stage::before {
    left: -390px;
    top: -10px;
  }

  .rk-glass-stage::after {
    bottom: -430px;
    right: -460px;
    top: auto;
  }

  .rk-order-step {
    flex: 1 1 100%;
  }

  .rk-order-top__title {
    font-size: 1.35rem;
    line-height: 1.4;
  }

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

/* ─────────────────────────────────────────────────────────────────────────────
   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);
}

.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;
}

/* ─────────────────────────────────────────────────────────────────────────────
   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__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%;
}




