:root {
  /* Theme customization block - saturated orange */
  --accent: #ff8a1f;
  --accent-2: #ffb347;
  --accent-rgb: 255, 138, 31;
  --topbar-light-rgb: 255, 138, 31;
  --topbar-dark-a-rgb: 136, 74, 22;
  --topbar-dark-b-rgb: 45, 24, 8;
  --title-font: "Grook", "Grok", "Neue Haas Grotesk Display Pro", Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;

  --bg: #030406;
  --bg-soft: #0b0d12;
  --card: #111521;
  --text: #e7ebf6;
  --muted: #a8b1c9;
  --line: rgba(255, 255, 255, 0.12);
  --ok: #83e2b4;
  --warning: #ffd27a;
  --danger: #ff9696;
}

@font-face {
  font-family: "Grook";
  src: local("Neue Haas Grotesk Display Pro"),
    local("NeueHaasDisplay-Light"),
    url("/fonts/neue-haas-display/NeueHaasDisplay-Light.svg#NeueHaasDisplay-Light") format("svg");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Grook";
  src: local("Neue Haas Grotesk Display Pro"),
    local("NeueHaasDisplay-Roman"),
    url("/fonts/neue-haas-display/NeueHaasDisplay-Roman.svg#NeueHaasDisplay-Roman") format("svg");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Grook";
  src: local("Neue Haas Grotesk Display Pro"),
    local("NeueHaasDisplay-Bold"),
    url("/fonts/neue-haas-display/NeueHaasDisplay-Bold.svg#NeueHaasDisplay-Bold") format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Grok";
  src: local("Grook"), local("Neue Haas Grotesk Display Pro"), local("NeueHaasDisplay-Bold"),
    url("/fonts/neue-haas-display/NeueHaasDisplay-Bold.svg#NeueHaasDisplay-Bold") format("svg");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--title-font);
  color: var(--text);
  background: radial-gradient(1150px 780px at 82% -8%, rgba(var(--accent-rgb), 0.22) 0%, rgba(var(--accent-rgb), 0) 62%),
              var(--bg);
  line-height: 1.5;
}

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

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.site-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  display: flex;
  flex-direction: column;
}

.maintenance-banner {
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(255, 210, 122, 0.95) 0%, rgba(255, 138, 31, 0.9) 50%, rgba(255, 100, 20, 0.95) 100%);
  color: #1a1a1a;
  text-align: center;
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 2px 12px rgba(255, 138, 31, 0.35);
}

.maintenance-banner__title {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}

.maintenance-banner__text {
  display: block;
  opacity: 0.95;
}

.site-topbar header {
  position: relative;
  top: auto;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .maintenance-banner {
    padding: 0.4rem 0.9rem;
    font-size: 0.78rem;
  }
  .maintenance-banner__title {
    font-size: 0.72rem;
    margin-bottom: 0.1rem;
  }
  .maintenance-banner__text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
  }
  .site-topbar .nav {
    padding: 0.5rem 0;
  }
  .site-topbar header {
    background: rgba(3, 4, 6, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: transparent;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: transform 0.12s ease-out;
  will-change: transform, background;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  max-width: 900px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.brand {
  font-weight: 800;
  letter-spacing: 0.1px;
  font-size: 1rem;
}

.brand span {
  color: var(--accent-2);
}

.nav-links {
  display: flex;
  gap: 1.45rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
}

.nav-links a {
  padding: 0.4rem 0.95rem;
  border-radius: 16px;
  transition: background 0.15s ease;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle {
  display: none;
  width: 2.1rem;
  height: 2.1rem;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.mobile-menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-bars {
  position: relative;
  width: 16px;
  height: 14px;
}

.mobile-menu-bars span {
  position: absolute;
  left: 0;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.25s ease;
}

.mobile-menu-bars span:first-child {
  top: 2px;
}

.mobile-menu-bars span:last-child {
  top: 10px;
}

.mobile-menu-toggle.is-open .mobile-menu-bars span:first-child {
  top: 6px;
  transform: rotate(45deg);
}

.mobile-menu-toggle.is-open .mobile-menu-bars span:last-child {
  top: 6px;
  transform: rotate(-45deg);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-btn {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  padding: 0.4rem 0.95rem;
  border-radius: 16px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.topbar-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.topbar-btn--solid,
.topbar-actions .topbar-btn--solid {
  background: #fff;
  color: #000;
  font-weight: 500;
}

.topbar-btn--solid:hover {
  background: rgba(255, 255, 255, 0.8);
}

main {
  padding: 0 0 2.8rem;
}

.hero-intro {
  position: relative;
  margin-top: 0;
  min-height: clamp(430px, 72vh, 760px);
  padding: 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
  filter: saturate(1.08) contrast(1.04);
  transform: none;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 0%, transparent 45%, rgba(3, 4, 6, 0.5) 75%, #030406 100%),
    linear-gradient(90deg, rgba(3, 4, 6, 0.94) 0%, rgba(3, 4, 6, 0.86) 34%, rgba(3, 4, 6, 0.5) 62%, rgba(3, 4, 6, 0.15) 100%),
    linear-gradient(180deg, rgba(3, 4, 6, 0.05) 0%, rgba(3, 4, 6, 0.72) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: flex;
  align-items: center;
  padding: calc(clamp(2.2rem, 6vw, 4.2rem) + 3.1rem) clamp(1.5rem, 4vw, 2.5rem) clamp(2.2rem, 6vw, 4.2rem);
}

.site-topbar ~ section.hero-intro .hero-inner {
  padding-top: calc(clamp(2.2rem, 6vw, 4.2rem) + 6rem);
}

.hero-content {
  max-width: min(680px, 100%);
  text-align: left;
}

.hero-content .hero-actions {
  justify-content: flex-start;
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 4.2vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.hero-content h1 {
  font-size: clamp(2rem, 5.3vw, 3.5rem);
  margin-bottom: 1.25rem;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-content .subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

h1,
h2,
h3,
.section-title {
  font-family: var(--title-font) !important;
}

.subtitle {
  margin: 0 0 1.4rem;
  color: var(--muted);
  max-width: 60ch;
  font-size: 1.05rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  border-radius: 10px;
  padding: 0.7rem 1.25rem;
  font-weight: 600;
  font-size: 0.94rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #0b1020;
  border: none;
  box-shadow: 0 4px 14px rgba(var(--accent-rgb), 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.45);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

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

.hero-card {
  background: linear-gradient(160deg, rgba(var(--accent-rgb), 0.2) 0%, #0f131e 48%, #0b0d12 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.hero-card h2 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
  color: var(--muted);
  font-weight: 600;
}

.stat {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem;
  margin-bottom: 0.55rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
}

.stat strong {
  font-size: 0.95rem;
}

.tag {
  font-size: 0.75rem;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
}

.tag.ok { background: rgba(131, 226, 180, 0.2); color: var(--ok); }
.tag.warn { background: rgba(255, 210, 122, 0.2); color: var(--warning); }
.tag.danger { background: rgba(255, 150, 150, 0.2); color: var(--danger); }

section {
  padding: 3rem 2rem;
  scroll-margin-top: 84px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

section.section-focus {
  border-radius: 14px;
  background: linear-gradient(
    145deg,
    rgba(var(--accent-rgb), 0.14),
    rgba(var(--accent-rgb), 0.03)
  );
  animation: sectionHighlightIn 0.5s ease-out;
  will-change: box-shadow;
}

@keyframes sectionHighlightIn {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(var(--accent-rgb), 0.35),
      0 12px 28px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--accent-rgb), 0);
  }
}

.section-title {
  margin: 0 0 0.6rem;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  letter-spacing: -0.01em;
  text-align: center;
}

.section-subtitle {
  margin: 0 auto 1.4rem;
  color: var(--muted);
  max-width: 70ch;
  font-weight: 300;
  text-align: center;
}

.features {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
}

.feature-illustration {
  position: relative;
  width: 100%;
  height: 188px;
  border-radius: 14px;
  border: 1px solid rgba(var(--accent-rgb), 0.42);
  background:
    radial-gradient(120px 70px at 90% -15%, rgba(var(--accent-rgb), 0.38), transparent 70%),
    radial-gradient(120px 70px at 5% 105%, rgba(var(--accent-rgb), 0.2), transparent 70%),
    linear-gradient(155deg, rgba(10, 12, 18, 0.96), rgba(10, 14, 23, 0.8));
  margin-bottom: 0.85rem;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 16px 28px rgba(0, 0, 0, 0.28);
}

.feature-illustration::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.01) 36%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
}

.feature-illustration svg,
.feature-illustration canvas,
.feature-illustration img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.geo-globe-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(130px 90px at 30% 22%, rgba(120, 170, 255, 0.22), transparent 72%),
    radial-gradient(240px 150px at 80% 85%, rgba(255, 138, 31, 0.12), transparent 80%),
    #0a0f18;
  overflow: hidden;
}

.geo-globe-canvas {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(180px, 52%, 230px);
  height: clamp(180px, 52%, 230px);
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 1;
}

.geo-globe-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.geo-globe-overlay .geo-route {
  fill: none;
  stroke: url(#geoArrowGradOverlay);
  stroke-width: 2.8;
  stroke-linecap: round;
}

.geo-globe-overlay .geo-source-dot {
  fill: #ff8a1f;
}

.geo-globe-overlay .geo-leader-dot {
  fill: #ffb347;
  stroke: rgba(255, 255, 255, 0.8);
  stroke-width: 1.2;
}

.geo-globe-overlay .geo-leader-pulse {
  fill: none;
  stroke: rgba(255, 179, 71, 0.62);
  stroke-width: 1.4;
}

.geo-globe-overlay .geo-label {
  fill: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-family: Grook, Grok, "Neue Haas Grotesk Display Pro", Arial, sans-serif;
}

.geo-globe-overlay .geo-label--leader {
  fill: #ffd8ab;
  font-size: 11px;
}

.feature h3 {
  margin: 0 0 0.45rem;
  font-size: 1.03rem;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 300;
}

.feature--image-overlay {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  background: #020305;
}

.feature--image-overlay::after {
  content: none;
}

.feature--image-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.35) 0%, rgba(var(--accent-rgb), 0.12) 100%);
  mix-blend-mode: overlay;
}

.feature--image-overlay .feature-bg-media {
  filter: sepia(0.2) saturate(1.15) hue-rotate(-8deg);
}

.feature-bg-media {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 70%;
  object-fit: cover;
  object-position: top center;
}

.feature-overlay-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 1.1rem;
  background: linear-gradient(
    to bottom,
    rgba(3, 4, 6, 0) 0%,
    rgba(3, 4, 6, 0.3) 50%,
    rgba(3, 4, 6, 0.75) 74%,
    rgba(3, 4, 6, 0.85) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.feature--image-overlay h3 {
  margin: 0 0 0.5rem;
  color: #f3f6ff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.55);
}

.feature--image-overlay p {
  color: rgba(230, 236, 255, 0.95);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.rugs-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rug-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
}

.rug-panel h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.rug-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 300;
}

.rugs-compare {
  margin-top: 1rem;
}

.rugs-spot-block {
  margin-bottom: 2.5rem;
}

.rugs-spot-title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.rugs-spot-desc {
  margin: 0 auto 1.25rem;

  font-size: 1.2rem;
  color: var(--muted);
  font-weight: 300;
  text-align: center;
}

.rugs-dashboard-image-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  margin: 0 auto;
}

.rugs-dashboard-image-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62%;
  background: linear-gradient(to top, var(--bg) 0%, rgba(3, 4, 6, 0.85) 42%, transparent 100%);
  pointer-events: none;
}

.rugs-dashboard-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
  filter: contrast(1.2);
}

.copy-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.copy-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
}

.copy-panel h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.copy-panel h3 .copy-panel-icon {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  color: var(--accent-2);
}

.copy-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 300;
}

#fees {
  text-align: center;
}

#fees .fees-big,
#fees .fees-that-is {
  text-align: center;
  margin-top: 64px;
}

#fees .section-subtitle {
  margin-bottom: 0.5rem;
}

.fees-big {
  margin: 0.5rem 0 1rem;
  font-size: clamp(5rem, 14vw, 10rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #fff;
  font-family: var(--title-font);
  display: inline-flex;
  align-items: baseline;
  flex-wrap: nowrap;
}

.fees-big-int {
  color: #fff;
  font-size: 1em;
  line-height: 1;
}
.fees-big-int-smaller {
  color: #fff;
  font-size: 1em;
  line-height: 1;
  letter-spacing: 3px;
  margin-right:12px;
}

.fees-big-frac {
  color: #fff;
  font-size: 0.7em;
  opacity: 0.5;
  line-height: 1;
  position: relative;
  font-weight: 100;
  top: 0.00em;
  letter-spacing: 3px;
}

.fees-big-note {
  margin: 0.4rem 0 1rem;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 300;
  text-align: center;
  opacity: 0.5;
}

.fees-that-is {
  margin: 0;
  font-size: 1rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.8;
  text-align: center;
}

.fees-compare-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  width: 100%;
}

.fees-compare-line {
  margin: 0;
  font-size: 1.2em;
  padding: 0.2rem 0.75rem;
  border-radius: 10px;
  /* background: rgba(255, 255, 255, 0.04); **/
  /*border: 1px solid rgba(255, 255, 255, 0.08);*/
  display: block;
  text-align: center;
}

.fees-compare-line .fees-mult {
  color: var(--accent-2);
  font-weight: 600;
}

.fees-compare-line .fees-cheaper {
  font-weight: 300;
  color: var(--muted);
}

.fees-compare-line .fees-name {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
}

.fees-compare-line .fees-detail {
  color: var(--muted);
  font-size: 0.8em;
  font-weight: 300;
  opacity: 0.5;
  margin-top: 0.0rem;
  display: block;
}

.plans-grid-landing {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-card {
  --plan-tint-rgb: var(--accent-rgb);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 18px;
  background:
    radial-gradient(140% 120% at 8% -5%, rgba(var(--accent-rgb), 0.2) 0%, rgba(var(--accent-rgb), 0) 58%),
    linear-gradient(165deg, rgba(20, 18, 12, 0.92) 0%, rgba(12, 10, 8, 0.95) 56%, rgba(8, 6, 5, 0.98) 100%);
  padding: 1.3rem 1.2rem 1.15rem;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  box-shadow: inset 0 1px 0 rgba(var(--accent-rgb), 0.06), 0 16px 34px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(4px);
}

.plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.plan-card h3 {
  margin: 0 0 1rem;
  font-size: 1.95rem;
  letter-spacing: -0.01em;
  font-weight: 600;
}

.plan-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.62rem;
}

.plan-item {
  display: flex;
  gap: 0.52rem;
  align-items: flex-start;
  font-size: 0.96rem;
  color: rgba(234, 240, 255, 0.92);
  font-weight: 300;
  line-height: 1.36;
}

.plan-item::before {
  content: "✓";
  color: #4cd8a6;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0.04rem;
}

.plan-item--off {
  color: rgba(224, 230, 244, 0.62);
}

.plan-item--off::before {
  content: "✕";
  color: #ff7f98;
}

.plan-price-wrap {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.plan-price-line {
  display: flex;
  align-items: flex-end;
  gap: 0.46rem;
  color: #f5f8ff;
}

.plan-sol-price {
  font-size: 2.08rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.plan-sol-unit {
  font-size: 0.95rem;
  line-height: 1.15;
  margin-bottom: 0.29rem;
  color: rgba(225, 232, 248, 0.8);
  font-weight: 300;
}

.plan-usd-price {
  margin: 0.25rem 0 0;
  font-size: 0.88rem;
  line-height: 1.2;
  color: rgba(214, 221, 237, 0.72);
  font-weight: 300;
}

.plan-actions {
  margin-top: 0.95rem;
  width: 100%;
}

.plan-choose-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border-radius: 16px;
  border: none;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  color: #0b0d12;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 10px 24px rgba(var(--accent-rgb), 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.plan-choose-btn:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.plan-choose-btn:active {
  transform: translateY(0);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 240;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear 0.32s;
}

.mobile-menu-overlay.is-open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.mobile-menu-blur {
  position: absolute;
  inset: 0;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  pointer-events: none;
  transition: backdrop-filter 0.32s ease, -webkit-backdrop-filter 0.32s ease;
  will-change: backdrop-filter, -webkit-backdrop-filter;
}

.mobile-menu-overlay.is-open .mobile-menu-blur {
  backdrop-filter: blur(42px);
  -webkit-backdrop-filter: blur(42px);
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 14, 0);
  transition: background-color 0.32s ease;
  will-change: background-color;
}

.mobile-menu-overlay.is-open .mobile-menu-backdrop {
  background: rgba(5, 8, 14, 0.24);
}

.mobile-menu-panel {
  position: absolute;
  left: 0;
  top: var(--mobile-topbar-offset, 60px);
  bottom: 0;
  width: min(390px, 100%);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(-115%);
  transition: transform 0.32s cubic-bezier(0.175, 0.885, 0.32, 1.15);
  overflow-y: auto;
  padding: 1.1rem 1.25rem 1.2rem 2rem;
}

.mobile-menu-overlay.is-open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mobile-menu-entry {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-entry.opening {
  animation: mobileItemOpenInTranslate 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) var(--transition-delay, 0ms) both;
}

.mobile-menu-entry.closing {
  animation: mobileItemCloseInTranslate 0.15s ease-out var(--transition-delay, 0ms) both;
}

@keyframes mobileItemOpenInTranslate {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes mobileItemCloseInTranslate {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100px);
  }
}

.mobile-menu-item a,
.mobile-menu-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0.54rem 0;
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-weight: 300;
  text-align: left;
  font-size: 1.18rem;
  font-family: var(--title-font);
  transition: color 0.2s ease, transform 0.2s ease;
}

.mobile-menu-item a:hover,
.mobile-menu-parent:hover {
  background: transparent;
  color: rgba(255, 255, 255, 1);
}

.rug-panel-illustration {
  margin-bottom: 1rem;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rug-panel-illustration svg {
  width: 100%;
  max-width: 160px;
  height: auto;
  display: block;
}

.rug-panel-illustration .stroke-muted {
  stroke: rgba(255, 255, 255, 0.25);
}

.rug-panel-illustration .stroke-line {
  stroke: rgba(255, 255, 255, 0.5);
}

.rug-panel-illustration .accent {
  stroke: var(--accent);
  fill: none;
}

.rug-panel-illustration .accent-fill {
  fill: var(--accent);
  stroke: none;
}

.rug-panel-illustration .candle-up {
  fill: var(--ok);
  stroke: rgba(255, 255, 255, 0.35);
}

.rug-panel-illustration .candle-down {
  fill: var(--accent);
  stroke: rgba(255, 255, 255, 0.35);
}

.rug-panel-illustration .dot-fill {
  fill: rgba(255, 255, 255, 0.75);
  stroke: none;
}

.rug-panel-illustration svg.transfer-flow-icon {
  max-width: 210px;
}

.illustration-placeholder {
  margin-top: 0.9rem;
  min-height: 190px;
  border-radius: 12px;
  border: 1px dashed rgba(var(--accent-rgb), 0.45);
  background:
    radial-gradient(120px 60px at 20% 15%, rgba(var(--accent-rgb), 0.25), transparent 75%),
    linear-gradient(150deg, rgba(var(--accent-rgb), 0.08), rgba(255, 255, 255, 0.01));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  padding: 1rem;
  font-size: 0.92rem;
}

.compare-title {
  margin: 0 0 0.85rem;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: 0.01em;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
  border-radius: 16px;
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 720px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(15, 16, 18, 0.58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 28px rgba(0, 0, 0, 0.26);
}

.compare-table thead th {
  text-align: left;
  padding: 0.9rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.03)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.compare-table td,
.compare-table tbody th {
  vertical-align: top;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

.compare-table tbody th {
  width: 160px;
  color: rgba(255, 255, 255, 0.96);
  background: rgba(255, 255, 255, 0.03);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.compare-table td {
  font-weight: 300;
}

.compare-table thead th + th,
.compare-table tbody th + td,
.compare-table tbody td + td {
  border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-table tbody tr {
  transition: background-color 0.18s ease;
}

.compare-table tbody tr:hover td,
.compare-table tbody tr:hover th {
  background: rgba(255, 255, 255, 0.028);
}

.compare-table tbody tr:last-child td,
.compare-table tbody tr:last-child th {
  border-bottom: none;
}

.check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.check-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.22rem 0.58rem;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid transparent;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.check-pill--yes {
  color: var(--ok);
  background: rgba(131, 226, 180, 0.14);
  border-color: rgba(131, 226, 180, 0.35);
}

.check-pill--no {
  color: var(--danger);
  background: rgba(255, 150, 150, 0.14);
  border-color: rgba(255, 150, 150, 0.35);
}

.cta-band {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(var(--accent-rgb), 0.22), rgba(var(--accent-rgb), 0.06));
  padding: 1.2rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.cta-band p {
  margin: 0;
  color: var(--muted);
  font-weight: 300;
}

footer {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: #9aa3bd;
  padding: 3rem 0 5rem;
  font-size: 0.9rem;
  font-weight: 300;
  overflow: hidden;
}

footer::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 140%;
  height: 180px;
  background: radial-gradient(
    ellipse 70% 100% at 50% 100%,
    rgba(var(--accent-rgb), 0.14) 0%,
    rgba(var(--accent-rgb), 0.04) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-brand-block {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0 1.25rem;
}

.footer-brand-logo {
  font-size: 1.08rem;
  font-weight: 700;
  color: #f3f6ff;
  letter-spacing: 0.02px;
  flex-shrink: 0;
}

.footer-brand-logo span {
  color: var(--accent-2);
}

.footer-links a {
  color: #a5aec7;
  font-weight: 300;
  transition: color 0.16s ease;
}

.footer-links a:hover {
  color: #f1f5ff;
}

.footer-copy {
  flex-shrink: 0;
  color: #9aa3bd;
  font-size: 0.88rem;
  font-weight: 300;
  opacity: 0.5;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-socials a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.footer-socials a:hover {
  color: #fff;
  background: rgba(var(--accent-rgb), 0.25);
  transform: translateY(-1px);
}

.footer-social-icon {
  width: 1.05rem;
  height: 1.05rem;
}

@media (max-width: 1040px) {
  .rugs-grid {
    grid-template-columns: 1fr 1fr;
  }
  .plans-grid-landing {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .hero-intro {
    min-height: 460px;
  }
  .hero-content {
    max-width: none;
    margin-left: 0;
    text-align: left;
  }
  .hero-content .hero-actions {
    justify-content: flex-start;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .rugs-grid {
    grid-template-columns: 1fr;
  }
  .copy-grid {
    grid-template-columns: 1fr;
  }
  .plans-grid-landing {
    grid-template-columns: 1fr;
  }
  .plan-card {
    min-height: 0;
  }
  .plan-card h3 {
    font-size: 1.72rem;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .topbar-actions .topbar-btn:first-child {
    display: none;
  }
  .topbar-btn {
    padding: 0.35rem 0.8rem;
    font-size: 0.85rem;
  }
  .footer-row {
    gap: 0.2rem;
  }
}

@media (max-width: 680px) {
  .footer-row {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
}

@media (max-width: 620px) {
  .fees-big {
    font-size: clamp(4.5rem, 22vw, 10rem);
  }
  .footer-row {
    gap: 1.2rem;
  }
  .footer-links {
    gap: 0.5rem 1rem;
  }
}
