/*
  RYNXDigital optimized CSS
  Cleaned duplicate rules, improved light mode, and normalized font weights.
*/
@import url('https://fonts.googleapis.com/css2?family=Battambang:wght@400;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --brand: var(--primary);
  --brand-2: var(--primary-dark);
  --brand-3: var(--accent);
  --success: #55f0a3;
  --warning: #ffd166;
  --danger: #ff6b6b;
  --container: 1180px;
  --font-body: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --accent: #7C3CFF;
  --accent-cyan: #18C8FF;
  --accent-2: var(--accent-cyan);
  --bg: #050816;
  --bg-soft: #0A1022;
  --bg-card: rgba(255, 255, 255, 0.055);
  --bg-card-strong: rgba(255, 255, 255, 0.085);
  --text: #F8FAFC;
  --muted: #A3AEC2;
  --muted-2: #7D8AA0;
  --line: rgba(255, 255, 255, 0.115);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.30);
  --shadow-soft: 0 18px 55px rgba(0, 0, 0, 0.18);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}
[data-theme="light"] {
  --bg: #F7FAFF;
  --bg-soft: #FFFFFF;
  --bg-card: rgba(255, 255, 255, 0.92);
  --bg-card-strong: #FFFFFF;
  --text: #08111F;
  --muted: #536278;
  --muted-2: #64748B;
  --line: rgba(15, 23, 42, 0.12);
  --shadow: 0 26px 72px rgba(15, 23, 42, 0.11);
  --shadow-soft: 0 16px 42px rgba(15, 23, 42, 0.085);
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  font-family: var(--font-body);
  letter-spacing: -0.01em;
  font-weight: 400;
}
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

:lang(km), [lang="km"], .kh, [data-lang="km"], [data-km] {
  font-family: "Khmer OS Battambang", "Battambang", "Noto Sans Khmer", sans-serif;
  line-height: 1.85;
  letter-spacing: 0;
}
body::before, body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -2;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.55;
}
body::before {
  width: 460px;
  height: 460px;
  top: -170px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(78, 234, 255, 0.22);
}
body::after {
  width: 420px;
  height: 420px;
  right: -160px;
  top: 32%;
  background: rgba(91, 124, 255, 0.22);
}
.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 999;
  background: var(--primary);
  color: #03101a;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
}
.skip-link:focus { top: 16px; }
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
}
.brand-logo {
  width: 145px;
  height: auto;
  display: block;
}
.brand-logo-light { display: none; }
[data-theme="light"] .brand-logo-dark { display: none; }
[data-theme="light"] .brand-logo-light { display: block; }
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.icon-btn, .menu-toggle {
  border: 1px solid var(--line);
  background: var(--bg-card);
  color: var(--text);
  width: 43px;
  height: 43px;
  border-radius: 999px;
  display: grid;
  place-items: center;
}
.menu-toggle { display: none; }
.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  position: relative;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.btn-primary:hover::before { left: 100%; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 46px;
  position: relative;
  z-index: 2;
}
.hero h1, .page-hero h1 {
  margin: 24px 0 0;
  max-width: 860px;
  font-size: clamp(42px, 6.4vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
}
.hero h1 span, .text-gradient {
  background: linear-gradient( 90deg, var(--primary) 0%, #60a5fa 40%, var(--accent) 100% );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
[data-theme="light"] .hero h1 span, [data-theme="light"] .text-gradient {
  background: linear-gradient(90deg, #0891b2 0%, #2563eb 45%, #7c3cff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p, .page-hero p {
  margin: 24px 0 0;
  max-width: 690px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-note {
  margin-top: 18px;
  color: var(--muted-2);
  font-size: 13px;
}
.trust-row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.trust-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  backdrop-filter: blur(16px);
}
.trust-card strong {
  display: block;
  color: var(--text);
  font-size: 18px;
}
.trust-card span {
  display: block;
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.hero-visual { position: relative; }
.dashboard-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  transform: rotate(1.5deg);
}
.dashboard-inner {
  border: 1px solid var(--line);
  background: rgba(3, 9, 22, 0.72);
  border-radius: 26px;
  padding: 22px;
}
[data-theme="light"] .dashboard-inner { background: rgba(255, 255, 255, 0.72); }
.browser-dots {
  display: flex;
  gap: 7px;
  margin-bottom: 20px;
}
.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}
.browser-dots span:nth-child(1) { background: #ff6b6b; }
.browser-dots span:nth-child(2) { background: #ffd166; }
.browser-dots span:nth-child(3) { background: #55f0a3; }
.dashboard-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.dashboard-title h3 {
  margin: 0;
  font-size: 24px;
  letter-spacing: -0.04em;
}
.dashboard-title p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}
.live-pill {
  flex: 0 0 auto;
  color: #03101a;
  background: var(--success);
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 800;
}
.metric-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.metric-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  border-radius: 22px;
  padding: 18px;
}
.metric-icon {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  place-items: center;
  align-items: center;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.12);
  color: #18c8ff;
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}
.metric-card small { color: var(--muted-2); display: block; }
.metric-card strong {
  display: block;
  margin-top: 6px;
  font-size: 24px;
}
.progress-panel {
  margin-top: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  border-radius: 22px;
  padding: 18px;
}
.progress-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
  font-weight: 800;
}
.progress-top span:last-child { color: var(--primary); }
.progress-track {
  height: 11px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
}
.progress-fill {
  width: 86%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--primary-dark));
  animation: growBar 1.1s ease both;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.check-list li::before {
  content: "✓";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(78, 234, 255, 0.12);
  color: var(--primary);
  font-size: 12px;
  font-weight: 400;
}
.float-card {
  position: absolute;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatY 4.5s ease-in-out infinite;
}
.float-card strong { display: block; }
.float-card span { color: var(--muted); font-size: 12px; }
.float-card.one { left: -26px; top: 30%; }
.float-card.two {
  right: -22px;
  bottom: 12%;
  animation-delay: -1.2s;
}

/* =================================================
   Homepage Live OS Hero
   Scoped premium split hero for RYNX Live System
================================================= */

.home-live-hero {
  padding: 84px 0 74px;
}

.home-live-hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  gap: clamp(34px, 5vw, 64px);
}

.home-live-copy {
  max-width: 760px;
}

.live-build-pill,
.live-system-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  border: 1px solid rgba(85, 240, 163, 0.22);
  border-radius: 999px;
  background: rgba(85, 240, 163, 0.095);
  color: var(--text);
  padding: 9px 13px;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.live-status-dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 6px rgba(85, 240, 163, 0.12);
  flex: 0 0 auto;
}

.live-status-dot::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(85, 240, 163, 0.45);
  border-radius: inherit;
  animation: livePulse 1.9s ease-out infinite;
}

.home-live-copy h1 {
  max-width: 780px;
  font-size: clamp(40px, 5.2vw, 62px);
  line-height: 1.05;
}

.home-live-copy p {
  max-width: 650px;
}

.live-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.live-proof-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
}

.home-live-visual {
  min-width: 0;
}

.live-system-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 0%, rgba(24, 200, 255, 0.16), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(124, 60, 255, 0.16), transparent 32%),
    rgba(15, 23, 42, 0.74);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
  padding: clamp(20px, 3vw, 28px);
  animation: liveCardFloat 5.5s ease-in-out infinite;
}

.live-system-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

[data-theme="light"] .live-system-card {
  background:
    radial-gradient(circle at 18% 0%, rgba(24, 200, 255, 0.16), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(124, 60, 255, 0.12), transparent 32%),
    rgba(255, 255, 255, 0.86);
}

.live-system-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.live-system-zone {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.impact-dashboard-head {
  position: relative;
  z-index: 1;
  margin-top: 26px;
  border: 1px solid rgba(255, 255, 255, 0.105);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.055);
  padding: clamp(20px, 3vw, 28px);
}

[data-theme="light"] .impact-dashboard-head,
[data-theme="light"] .live-info-card,
[data-theme="light"] .build-flow,
[data-theme="light"] .live-module-card,
[data-theme="light"] .live-proof-row span {
  background: rgba(255, 255, 255, 0.74);
}

[data-theme="light"] .impact-card {
  border-color: rgba(15, 23, 42, 0.13);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

.impact-dashboard-head span {
  display: block;
  color: var(--primary);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.impact-dashboard-head strong {
  display: block;
  max-width: 420px;
  margin-top: 10px;
  color: var(--text);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.live-system-grid,
.live-module-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.live-info-card,
.live-module-card,
.build-flow {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.live-info-card {
  padding: 16px;
}

.impact-card-grid {
  margin-top: 16px;
}

.impact-card {
  min-height: 154px;
  animation: impactCardIn 700ms ease both;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.impact-card:nth-child(2) { animation-delay: 90ms; }
.impact-card:nth-child(3) { animation-delay: 180ms; }
.impact-card:nth-child(4) { animation-delay: 270ms; }

.impact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 200, 255, 0.32);
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 18px 48px rgba(37, 99, 235, 0.14);
}

.live-info-card span,
.live-module-card span {
  display: block;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 600;
}

.live-info-card strong {
  display: block;
  margin-top: 7px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
}

.live-info-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 400;
}

.impact-card span {
  color: var(--primary);
}

.build-flow {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  padding: 16px;
}

.impact-flow {
  margin-top: 16px;
}

.impact-flow .build-flow-nodes {
  gap: 18px;
}

.build-flow-nodes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.build-flow-nodes span {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 38px;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.10);
  color: var(--text);
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.impact-flow .build-flow-nodes span {
  animation: flowNodeBlink 4.8s ease-in-out infinite;
}

.impact-flow .build-flow-nodes span:nth-child(2) { animation-delay: 1.2s; }
.impact-flow .build-flow-nodes span:nth-child(3) { animation-delay: 2.4s; }
.impact-flow .build-flow-nodes span:nth-child(4) { animation-delay: 3.6s; }

.build-flow-nodes span:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -15px;
  color: var(--muted-2);
  font-weight: 700;
}

.build-flow-line {
  position: relative;
  overflow: hidden;
  height: 6px;
  margin-top: 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
}

.build-flow-line::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 45%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent-cyan), var(--accent));
  box-shadow: 0 0 22px rgba(24, 200, 255, 0.28);
  animation: liveProgress 3.6s ease-in-out infinite;
}

.live-module-card {
  min-height: 86px;
  padding: 16px;
}

.live-module-card strong {
  display: block;
  color: var(--text);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
}

.live-module-card span {
  margin-top: 10px;
  color: var(--success);
}

@keyframes livePulse {
  0% {
    opacity: 0.75;
    transform: scale(0.72);
  }
  100% {
    opacity: 0;
    transform: scale(1.55);
  }
}

@keyframes liveCardFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes liveProgress {
  0% { transform: translateX(-110%); }
  50% { transform: translateX(70%); }
  100% { transform: translateX(230%); }
}

@keyframes impactCardIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes flowNodeBlink {
  0%, 19%, 100% {
    border-color: rgba(37, 99, 235, 0.18);
    background: rgba(37, 99, 235, 0.10);
    box-shadow: none;
  }
  7%, 12% {
    border-color: rgba(24, 200, 255, 0.48);
    background: rgba(37, 99, 235, 0.16);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.10), 0 0 22px rgba(24, 200, 255, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .live-system-card,
  .live-status-dot::after,
  .build-flow-line::before,
  .impact-card,
  .impact-flow .build-flow-nodes span {
    animation: none !important;
  }

  .impact-card:hover {
    transform: none;
  }
}

.section { padding: 76px 0; }
.section-tight { padding: 44px 0; }
.section-head { max-width: 760px; margin-bottom: 34px; }
.section-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2, .cta h2, .split-content h2 {
  margin: 12px 0 0;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
}
.section-head p, .cta p, .split-content p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.card {
  border: 1px solid var(--line);
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
}
.card-hover { transition: transform 180ms ease, background 180ms ease, border-color 180ms ease; }
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(37, 99, 235, 0.12);
  color: var(--brand);
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 800;
}
.small-icon {
  width: 68px;
  height: 68px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: #18c8ff;
  background: radial-gradient(circle at 30% 20%, rgba(24, 200, 255, 0.16), transparent 36%), rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(24, 200, 255, 0.12);
}
.feature-icon-svg {
  width: 20px;
  height: 20px;
  display: block;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.card h3 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.04em;
}
.card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--primary);
  font-weight: 700;
}
.bento {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
}
.bento-main {
  min-height: 390px;
  border: 1px solid rgba(78, 234, 255, 0.18);
  background: radial-gradient(circle at 20% 0%, rgba(78, 234, 255, 0.18), transparent 35%), var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 34px;
  overflow: hidden;
  position: relative;
}
.bento-main::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(155, 92, 255, 0.2);
  filter: blur(50px);
}
.bento-main h2 {
  max-width: 650px;
  font-size: clamp(32px, 4.4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  margin: 12px 0 0;
}
.bento-main p {
  max-width: 640px;
  color: var(--muted);
  line-height: 1.8;
}
.tool-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  position: relative;
  z-index: 1;
}
.tool-pill {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.065);
  border-radius: 18px;
  padding: 14px 16px;
  font-weight: 700;
}
.bento-side { display: grid; gap: 16px; }
.process-card { position: relative; }
.step-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  align-items: center;
  justify-content: center;
  color: #03101a;
  background: var(--primary);
  font-weight: 700;
  margin-bottom: 18px;
}
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 14px;
}
.feature-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  color: var(--muted);
  line-height: 1.65;
}
.feature-list li::before {
  content: "✓";
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(85, 240, 163, 0.12);
  color: var(--success);
  font-weight: 400;
}
.stack-card {
  min-height: 420px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-card), rgba(255, 255, 255, 0.025));
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow);
}
.stack-line {
  height: 82px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 14px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.stack-line strong { display: block; }
.stack-line span {
  display: block;
  margin-top: 5px;
  color: var(--muted-2);
  font-size: 13px;
}
.price-card { display: flex; flex-direction: column; }
.price-card.featured {
  border-color: rgba(78, 234, 255, 0.4);
  background: linear-gradient(180deg, rgba(78, 234, 255, 0.12), var(--bg-card));
  transform: translateY(-10px);
}
.price {
  margin: 18px 0 6px;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.06em;
  font-weight: 800;
}
.price small {
  font-size: 15px;
  color: var(--muted);
  letter-spacing: 0;
  font-weight: 800;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 13px;
  color: var(--muted);
}
.price-card li { display: flex; gap: 10px; }
.price-card li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 400;
}
.price-card .btn { margin-top: auto; }
.project-card { overflow: hidden; padding: 0; }
.project-screen {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(255,255,255,0.10) 0 20%, transparent 20% 100%), radial-gradient(circle at 75% 25%, rgba(78,234,255,0.18), transparent 30%), rgba(0, 0, 0, 0.17);
}
.project-body { padding: 24px; }
.tag-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.tag {
  color: var(--primary);
  border: 1px solid rgba(78, 234, 255, 0.22);
  background: rgba(78, 234, 255, 0.08);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
}
.testimonial { position: relative; }
.quote { color: var(--muted); line-height: 1.8; }
.avatar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}
.faq-list { display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--bg-card);
}
.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  text-align: left;
  font-weight: 700;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 240ms ease;
}
.faq-answer p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 220px; }
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-plus {
  transition: transform 180ms ease;
  color: var(--primary);
  font-size: 22px;
}
.cta {
  position: relative;
  border: 1px solid rgba(78, 234, 255, 0.2);
  background: radial-gradient(circle at 20% 10%, rgba(78, 234, 255, 0.2), transparent 35%), radial-gradient(circle at 80% 30%, rgba(155, 92, 255, 0.18), transparent 34%), var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 44px;
  overflow: hidden;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.site-footer {
  padding: 56px 0 24px;
  border-top: 1px solid var(--line);
  margin-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 0.7fr);
  gap: 28px;
}
.footer-brand p {
  margin: 18px 0 0;
  max-width: 410px;
  color: var(--muted);
  line-height: 1.8;
}
.footer-col h4 {
  margin: 0 0 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.footer-col a {
  display: block;
  color: var(--muted);
  margin: 10px 0;
}
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}
.page-hero { padding: 76px 0 34px; }
.breadcrumb {
  color: var(--muted-2);
  font-size: 14px;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--primary); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
  align-items: start;
}
.contact-form { display: grid; gap: 14px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.field textarea { min-height: 150px; resize: vertical; }
.tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.tool-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
}
.tool-card .btn { margin-top: auto; }
.badge-coming {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  color: var(--warning);
  background: rgba(255, 209, 102, 0.12);
  border: 1px solid rgba(255, 209, 102, 0.22);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}
.calculator {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  align-items: start;
}
.result-panel { position: sticky; top: 98px; }
.result-number {
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -0.06em;
  font-weight: 800;
  margin: 8px 0;
}
.result-status {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 12px;
  color: #03101a;
  background: var(--success);
  font-weight: 700;
}
.result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}
.result-mini {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.055);
}
.result-mini span {
  display: block;
  color: var(--muted-2);
  font-size: 13px;
}
.result-mini strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.brand-guide-section { position: relative; }
.brand-guide-board {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 36px;
  padding: clamp(24px, 4vw, 56px);
  background: radial-gradient(circle at 14% 0%, rgba(37, 99, 235, 0.24), transparent 34%), radial-gradient(circle at 86% 16%, rgba(124, 60, 255, 0.18), transparent 34%), linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(24px);
}
.brand-guide-board::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  pointer-events: none;
}
.brand-guide-header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 32px;
  align-items: end;
}
.brand-guide-header h2 {
  margin: 12px 0 0;
  max-width: 520px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}
.brand-guide-header p {
  margin: 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}
.brand-guide-line {
  position: relative;
  z-index: 1;
  height: 1px;
  margin: 32px 0;
  background: var(--line);
}
.guide-block {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.guide-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.guide-title-row h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.guide-title-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}
.guide-type { grid-column: 1; }
.guide-specs { grid-column: 2; }
.guide-story { grid-column: 1; }
.guide-rules { grid-column: 2; }
.guide-applications { grid-column: 1 / -1; }
.guide-story p + p { margin-top: 18px; }
.logo-tile-dark { background: radial-gradient(circle at 24% 18%, rgba(37, 99, 235, 0.24), transparent 34%), linear-gradient(135deg, #020617, #050816); }
.logo-tile-light { background: #f8fafc; }
.logo-tile-blue { background: radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.16), transparent 30%), linear-gradient(135deg, #2563eb 0%, #4f46e5 54%, #7c3cff 100%); }
.space-demo {
  width: 100%;
  display: grid;
  gap: 14px;
  justify-items: center;
}
.type-showcase {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: 0.58fr 1fr;
  gap: 22px;
  align-items: center;
}
.type-showcase small, .spec-list small, .app-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.type-showcase h4 {
  margin: 8px 0 0;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}
.type-letters {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
  word-break: break-word;
}
.guide-type p, .guide-story p { color: var(--muted); line-height: 1.85; }
.spec-list { display: grid; gap: 12px; }
.spec-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}
.spec-list div:last-child { border-bottom: 0; padding-bottom: 0; }
.spec-list strong { color: var(--text); text-align: right; }
.guide-rules ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}
.guide-rules li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 11px;
  color: var(--muted);
  line-height: 1.6;
}
.guide-rules li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #7c3cff);
  font-size: 12px;
  font-weight: 400;
}
.application-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.9fr 0.8fr;
  gap: 14px;
}
.app-card {
  min-height: 156px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  overflow: hidden;
}
.app-card strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.045em;
}
.app-card small { color: rgba(255, 255, 255, 0.72); line-height: 1.5; }
.app-card-hero { background: radial-gradient(circle at 12% 10%, rgba(24, 200, 255, 0.28), transparent 36%), linear-gradient(135deg, #050816, #0f172a); }
.app-card-tool { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.app-card-social { background: linear-gradient(135deg, #7c3cff, #2563eb); }
.app-card-badge {
  align-items: center;
  justify-content: center;
  background: #050816;
}
.app-card-badge img { width: min(180px, 100%); }
[data-theme="light"] .brand-guide-board { background: radial-gradient(circle at 14% 0%, rgba(37, 99, 235, 0.16), transparent 34%), radial-gradient(circle at 86% 16%, rgba(124, 60, 255, 0.12), transparent 34%), rgba(255, 255, 255, 0.78); }
[data-theme="light"] .guide-block, [data-theme="light"] .palette-item, [data-theme="light"] .logo-tile-space {
  background-color: rgba(255, 255, 255, 0.72);
}
[data-theme="light"] .safe-space-box { border-color: rgba(5, 8, 22, 0.16); }
[data-theme="light"] .space-meta span { color: #64748b; }
.brand-guide-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.65fr);
  gap: 22px;
  align-items: start;
}
.guide-logo-usage { grid-column: 1; }
.guide-colors { grid-column: 2; }
.guide-logo-usage, .guide-colors { padding: 28px; border-radius: 30px; }
.logo-usage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.logo-card {
  margin: 0;
  display: grid;
  gap: 12px;
}
.logo-tile {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 190px;
  border-radius: 26px;
  padding: 26px;
}
.logo-tile img {
  height: auto;
  display: block;
  width: min(260px, 82%);
}
.logo-caption {
  display: grid;
  gap: 5px;
  padding: 0 4px;
}
.logo-caption strong {
  color: var(--text);
  letter-spacing: -0.025em;
  font-size: 16px;
  line-height: 1.25;
}
.logo-caption small {
  color: var(--muted);
  max-width: 260px;
  font-size: 14px;
  line-height: 1.6;
}
.logo-tile-space { background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.08), transparent 32%), rgba(255, 255, 255, 0.045); padding: 20px; }
.safe-space-box {
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  width: min(260px, 100%);
  padding: 14px;
}
.safe-space-inner {
  display: grid;
  place-items: center;
  border: 1px solid rgba(5, 8, 22, 0.08);
  padding: 14px;
  background: #f8fafc;
  min-height: 92px;
  border-radius: 18px;
}
.safe-space-inner img { width: min(175px, 100%); }
.space-meta {
  width: 100%;
  flex-wrap: wrap;
  display: grid;
  gap: 6px;
  justify-content: initial;
}
.space-meta span {
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
  font-size: 12px;
}
.palette-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.palette-item {
  display: grid;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  grid-template-columns: 64px 1fr;
  min-height: 88px;
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
}
.palette-item span {
  border: 1px solid var(--line);
  width: 64px;
  height: 64px;
  border-radius: 18px;
}
.palette-item strong {
  display: block;
  color: var(--text);
  font-size: 18px;
  letter-spacing: -0.02em;
}
.palette-item small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.45;
}
.palette-item span[style*="#F8FAFC"] { box-shadow: inset 0 0 0 1px rgba(5, 8, 22, 0.18); }
.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.scroll-top-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 22px 55px rgba(124, 60, 255, 0.35); }
.scroll-top-btn:active { transform: translateY(0) scale(0.98); }
.project-thumb {
  height: 220px;
  min-height: 220px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: radial-gradient(circle at 20% 0%, rgba(24, 200, 255, 0.16), transparent 35%), linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(124, 60, 255, 0.18));
}
.project-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 22px 38px rgba(0, 0, 0, 0.28));
  transition: transform 0.25s ease;
}
.project-card:hover .project-svg { transform: translateY(-4px) scale(1.02); }
[data-theme="light"] .project-thumb { background: radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.12), transparent 35%), linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 60, 255, 0.10)); }
.tech-stack-section { position: relative; }
.tech-stack-board {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 34px;
  padding: clamp(26px, 4vw, 44px);
  background: radial-gradient(circle at 20% 10%, rgba(37, 99, 235, 0.18), transparent 36%), radial-gradient(circle at 82% 80%, rgba(124, 60, 255, 0.14), transparent 36%), rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}
.tech-stack-copy h2 {
  margin: 12px 0 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}
.tech-stack-copy p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.tech-stack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.stack-tool {
  min-height: 128px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}
.stack-tool:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 200, 255, 0.28);
  background: radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.16), transparent 34%), rgba(255, 255, 255, 0.055);
}
.stack-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #7c3cff);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.stack-tool strong {
  margin-top: 18px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.2;
}
.stack-tool small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
[data-theme="light"] .tech-stack-board { background: radial-gradient(circle at 20% 10%, rgba(37, 99, 235, 0.10), transparent 36%), radial-gradient(circle at 82% 80%, rgba(124, 60, 255, 0.08), transparent 36%), rgba(255, 255, 255, 0.86); box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08); }
[data-theme="light"] .stack-tool { background: rgba(255, 255, 255, 0.74); }
.logo-watermark {
  position: absolute;
  display: block;
  width: 720px;
  max-width: none;
  height: auto;
  pointer-events: none;
  user-select: none;
  opacity: 0.06;
  z-index: 1;
  filter: blur(0.4px) drop-shadow(0 0 80px rgba(37, 99, 235, 0.4));
  animation: floatLogo 10s ease-in-out infinite;
}
.hero-watermark { top: 120px; right: -180px; }
[data-theme="light"] .logo-watermark { opacity: 0.045; filter: blur(0.4px) drop-shadow(0 0 70px rgba(37, 99, 235, 0.22)); }
.hero {
  padding: 88px 0 68px;
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
}
.hero .logo-watermark.hero-watermark {
  position: absolute !important;
  top: 50px !important;
  right: 0px !important;
  width: 760px !important;
  height: auto !important;
  display: block !important;
  opacity: 0.10 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  user-select: none !important;
  filter: blur(0.4px) drop-shadow(0 0 80px rgba(37, 99, 235, 0.45)) !important;
}
.hero .container, .hero-grid, .hero-copy, .hero-visual { position: relative !important; z-index: 2 !important; }
.resources-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.resource-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 30px;
  background: radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.14), transparent 34%), rgba(255, 255, 255, 0.045);
  overflow: hidden;
}
.resource-card p {
  margin: 20px 0 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}
.resource-card .card-link { margin-top: auto; }
.resource-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}
.resource-tag, .resource-time {
  display: inline-flex;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 12px;
  font-weight: 800;
}
.resource-tag {
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.16);
  border: 1px solid rgba(37, 99, 235, 0.3);
}
.resource-time {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
}
[data-theme="light"] .resource-card { background: radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.075), transparent 34%), rgba(255, 255, 255, 0.94); }
[data-theme="light"] .resource-tag { color: #1D4ED8; background: rgba(37, 99, 235, 0.11); border-color: rgba(37, 99, 235, 0.26); }
.article-page .page-hero { padding-bottom: 72px; text-align: center; }
.article-page .page-hero .container.narrow { max-width: 980px; }
.article-page .page-hero .eyebrow { margin-inline: auto; }
.article-page .page-hero h1 { margin-inline: auto; max-width: 980px; }
.article-page .page-hero .hero-description { margin-inline: auto; max-width: 760px; }
.article-page .container.narrow { max-width: 1000px; }
.article-content {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}
.article-content h2 {
  margin: 54px 0 16px;
  color: var(--text);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}
.article-content h2:first-child { margin-top: 0; }
.article-content p { margin: 0 0 18px; }
.article-content ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}
.article-content li { position: relative; padding-left: 32px; }
.article-content li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #7c3cff);
  font-size: 12px;
  font-weight: 400;
}
.article-content a { color: var(--brand); font-weight: 800; }
.article-content strong { color: var(--text); }
[data-theme="light"] .article-content blockquote { background: radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.08), transparent 34%), rgba(255, 255, 255, 0.9); }
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 54px;
  align-items: start;
  max-width: 1180px;
}
.article-sidebar { position: sticky; top: 110px; }
.article-sidebar-card {
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 22px;
  background: radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.16), transparent 34%), rgba(255, 255, 255, 0.045);
}
.article-sidebar-card .kicker { display: block; margin-bottom: 14px; }
.article-sidebar-card a {
  display: block;
  padding: 14px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: color 0.2s ease, transform 0.2s ease;
}
.article-sidebar-card a:last-child { border-bottom: 0; }
.article-sidebar-card a:hover { color: var(--text); transform: translateX(3px); }
[data-theme="light"] .article-sidebar-card { background: radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.08), transparent 34%), rgba(255, 255, 255, 0.9); }
.package-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.package-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), transparent 40%), radial-gradient(circle at 88% 6%, rgba(24, 200, 255, 0.12), transparent 26%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.package-card::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 84px;
  height: 1px;
  background: linear-gradient(90deg, rgba(24, 200, 255, 0.28), transparent);
  opacity: 0.6;
  pointer-events: none;
}
.package-card:hover {
  transform: translateY(-7px);
  border-color: rgba(24, 200, 255, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 32px 96px rgba(0, 0, 0, 0.22);
}
.package-card:hover::before { opacity: 1; }
.package-card.featured::before { opacity: 1; }
.package-card.featured:hover { transform: translateY(-9px); }
.package-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 15px;
  margin-bottom: 26px;
  border: 1px solid rgba(37, 99, 235, 0.34);
  border-radius: 999px;
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.14);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.015em;
}
.package-card.featured .package-badge {
  color: #ffffff;
  border-color: transparent;
  background: linear-gradient(135deg, #2563eb, #7c3cff);
  box-shadow: 0 14px 34px rgba(37, 99, 235, 0.26);
}
.package-list {
  display: grid;
  gap: 13px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}
.package-list li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  margin-top: -1px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #7c3cff);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.22);
  font-size: 12px;
  font-weight: 400;
}
.package-card:not(.featured) .btn-primary { box-shadow: 0 18px 42px rgba(37, 99, 235, 0.18); }
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.included-card {
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 30px;
  padding: 28px;
  background: radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.13), transparent 34%), linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.026));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.included-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #18c8ff;
  background: rgba(37, 99, 235, 0.13);
  border: 1px solid rgba(24, 200, 255, 0.16);
  font-weight: 800;
}
.included-card h3 {
  margin: 18px 0 10px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}
.included-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.addon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.addon-card {
  min-height: 132px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 24px;
  padding: 22px;
  background: radial-gradient(circle at 18% 0%, rgba(37, 99, 235, 0.11), transparent 34%), rgba(255, 255, 255, 0.04);
}
.addon-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.25;
}
.addon-card span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 32px;
  background: radial-gradient(circle at 15% 0%, rgba(37, 99, 235, 0.14), transparent 34%), rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.comparison-table {
  width: 100%;
  min-width: 940px;
  border-collapse: collapse;
}
.comparison-table th, .comparison-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
  text-align: center;
  vertical-align: middle;
}
.comparison-table th:first-child, .comparison-table td:first-child { width: 270px; text-align: left; }
.comparison-table td {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.comparison-table tr:last-child th, .comparison-table tr:last-child td { border-bottom: 0; }
.tick {
  color: #55f0a3;
  font-weight: 800;
  font-size: 18px;
}
.cross {
  color: #ff6b6b;
  font-weight: 800;
  font-size: 18px;
}
.soft { color: var(--muted); }
[data-theme="light"] .package-card, [data-theme="light"] .included-card, [data-theme="light"] .addon-card, [data-theme="light"] .comparison-wrap {
  background: radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.08), transparent 34%), rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}
.package-card .btn span { position: relative; z-index: 3; }
.package-card.featured .btn.cta-urgent {
  position: relative;
  border: 0;
  color: #050816 !important;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.28);
}
.package-card.featured .btn.cta-urgent::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient( from 0deg, #18c8ff 0deg, #7c3cff 110deg, #18c8ff 220deg, #2563eb 360deg );
  animation: rynxUrgentSpin 2.8s linear infinite;
  z-index: 0;
}
.package-card.featured .btn.cta-urgent::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  z-index: 1;
}
.package-card.featured .btn.cta-urgent span { position: relative; z-index: 2; }
.package-card.featured .btn.cta-urgent:hover { transform: translateY(-1px); box-shadow: 0 24px 56px rgba(37, 99, 235, 0.34); }
.service-pricing-hero { padding-top: 140px; }
.service-pricing-hero .section-heading {
  max-width: 760px;
  margin: 0;
  text-align: left;
}
.service-pricing-hero .eyebrow { margin-bottom: 24px; }
.service-pricing-hero h1 {
  max-width: 900px;
  margin-bottom: 28px;
  text-align: left;
}
.service-pricing-hero .hero-description {
  margin-inline: auto;
  max-width: 720px;
  margin: 0;
  text-align: left;
  font-size: 20px;
  line-height: 1.8;
}
.service-hero-actions {
  flex-wrap: wrap;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}
.pricing-note {
  margin: 18px auto 0;
  max-width: 700px;
  margin-top: 28px;
  text-align: left;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
.service-hero-actions .btn {
  min-width: 210px;
  min-height: 60px;
  padding-inline: 28px;
  font-size: 15px;
  font-weight: 700;
}
.why-choose-section .brand-guide-header { align-items: end; }
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.why-choose-card {
  position: relative;
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.12), transparent 34%), rgba(255, 255, 255, 0.045);
  overflow: hidden;
}
.why-choose-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 100%, rgba(124, 60, 255, 0.12), transparent 36%);
  pointer-events: none;
}
.why-choose-card span {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--muted);
  font-weight: 500;
  font-size: 16px;
}
.why-choose-card h3 {
  position: relative;
  margin: 0 0 18px;
  max-width: 80%;
  color: var(--text);
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}
.why-choose-card p {
  position: relative;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.why-choose-promise {
  margin-top: 28px;
  padding: 36px;
  border: 1px solid rgba(24, 200, 255, 0.22);
  border-radius: 30px;
  background: radial-gradient(circle at 10% 0%, rgba(24, 200, 255, 0.12), transparent 32%), radial-gradient(circle at 90% 100%, rgba(124, 60, 255, 0.16), transparent 38%), rgba(255, 255, 255, 0.045);
}
.why-choose-promise h3 {
  margin: 14px 0 14px;
  max-width: 820px;
  color: var(--text);
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
}
.why-choose-promise p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
[data-theme="light"] .why-choose-card, [data-theme="light"] .why-choose-promise { background: radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.08), transparent 34%), rgba(255, 255, 255, 0.9); }
.service-hero-upgrade { padding-top: 150px; padding-bottom: 90px; }
.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.78fr);
  gap: 70px;
  align-items: center;
}
.service-hero-copy { max-width: 820px; }
.service-hero-copy h1 {
  max-width: 820px;
  margin: 24px 0 28px;
  text-align: left;
}
.service-hero-copy .hero-description {
  max-width: 700px;
  margin: 0;
  text-align: left;
  font-size: 20px;
  line-height: 1.8;
}
.service-hero-copy .service-hero-actions { justify-content: flex-start; margin-top: 36px; }
.service-hero-copy .pricing-note {
  max-width: 680px;
  margin: 28px 0 0;
  text-align: left;
}
.service-hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.browser-mockup {
  width: 100%;
  max-width: 520px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 34px;
  padding: 18px;
  background: radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.22), transparent 36%), radial-gradient(circle at 90% 100%, rgba(124, 60, 255, 0.20), transparent 38%), rgba(255, 255, 255, 0.045);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(16px);
  transform: rotate(1deg);
}
.browser-top {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 18px;
  border-radius: 22px 22px 0 0;
  background: rgba(5, 8, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 0;
}
.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}
.browser-top span:nth-child(1) { background: #ff5f57; }
.browser-top span:nth-child(2) { background: #ffbd2e; }
.browser-top span:nth-child(3) { background: #28c840; }
.browser-top small {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}
.browser-body {
  padding: 30px;
  border-radius: 0 0 24px 24px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(5, 8, 22, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.mockup-label {
  display: inline-flex;
  padding: 8px 13px;
  margin-bottom: 22px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb, #7c3cff);
  font-size: 12px;
  font-weight: 800;
}
.browser-body h3 {
  max-width: 340px;
  margin: 0 0 26px;
  color: var(--text);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}
.mockup-preview {
  padding: 22px;
  margin-bottom: 22px;
  border-radius: 22px;
  background: radial-gradient(circle at 20% 0%, rgba(24, 200, 255, 0.12), transparent 36%), rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.14);
}
.mockup-line {
  height: 13px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.22);
}
.mockup-line.large { width: 82%; background: linear-gradient(135deg, #2563eb, #7c3cff); }
.mockup-line.short { width: 52%; margin-bottom: 0; }
.mockup-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.mockup-features div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(148, 163, 184, 0.14);
}
.mockup-features strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 18px;
}
.mockup-features span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}
.floating-pill {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  animation: rynxFloat 4.5s ease-in-out infinite;
}
.pill-one { left: -18px; top: 40%; }
.pill-two {
  right: -18px;
  bottom: 18%;
  animation-delay: 1.4s;
}
[data-theme="light"] .floating-pill {
  color: #0f172a;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
}
[data-theme="light"] .browser-mockup { background: radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.10), transparent 36%), radial-gradient(circle at 90% 100%, rgba(124, 60, 255, 0.10), transparent 38%), rgba(255, 255, 255, 0.88); box-shadow: 0 30px 90px rgba(15, 23, 42, 0.14); }
[data-theme="light"] .browser-body { background: rgba(248, 250, 252, 0.9); }
[data-theme="light"] .browser-top { background: rgba(15, 23, 42, 0.9); }
body, p, li, input, textarea, select, button { font-weight: 400; }
strong, b { font-weight: 600; }
.main-nav, .card-link, .field label, .resource-tag, .resource-time, .package-badge, .badge-coming, .kicker, .eyebrow, .live-pill, .tag, .tool-pill, .stack-icon, .included-icon, .step-number, .result-status, .faq-question, .footer-col h4 {
  font-weight: 700 !important;
}
.btn, button.btn, .btn-primary, .btn-secondary, .btn-ghost { font-weight: 700 !important; }
.hero h1, .page-hero h1, .section-head h2, .cta h2, .split-content h2, .bento-main h2, .article-hero h1, .resource-card h2, .package-card h3, .brand-guide-header h2, .why-choose-promise h3, .service-hero-copy h1 {
  font-weight: 800 !important;
}
.card h3, .dashboard-title h3, .stack-line strong, .project-body h3, .footer-col h4, .included-card h3, .addon-card strong, .why-choose-card h3, .browser-body h3, .mockup-features strong, .package-list li, .comparison-table thead th, .comparison-table tbody th {
  font-weight: 400 !important;
}
.package-price strong, .price, .result-number { font-weight: 800 !important; }
.metric-card strong, .result-mini strong, .trust-card strong { font-weight: 600 !important; }
.hero p, .page-hero p, .section-head p, .cta p, .split-content p, .card p, .article-content p, .article-content li, .package-desc, .included-card p, .addon-card span, .resource-card p, .guide-block p, .why-choose-card p, .why-choose-promise p, .browser-body span, .mockup-features span, .footer-brand p, .footer-col a {
  color: var(--muted);
  font-weight: 400 !important;
  letter-spacing: -0.006em;
}
[data-theme="light"] body { background: radial-gradient(circle at 18% 0%, rgba(24, 200, 255, 0.13), transparent 32%), radial-gradient(circle at 82% 8%, rgba(124, 60, 255, 0.10), transparent 34%), linear-gradient(180deg, #F7FAFF 0%, #FFFFFF 46%, #F8FAFC 100%); color: var(--text); }
[data-theme="light"] body::before { background: rgba(24, 200, 255, 0.16); opacity: 0.42; }
[data-theme="light"] body::after { background: rgba(124, 60, 255, 0.14); opacity: 0.38; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 22, 0.72);
  border-bottom-color: rgba(255, 255, 255, 0.09);
}
[data-theme="light"] .site-header {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(15, 23, 42, 0.085);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.045);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.012em;
}
.main-nav a { transition: color 180ms ease; color: var(--muted); }
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  line-height: 1;
  position: relative;
  overflow: hidden;
  min-height: 46px;
  border-radius: 999px;
  padding: 13px 21px;
  letter-spacing: -0.012em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #FFFFFF !important;
  border-color: transparent !important;
  background: linear-gradient(135deg, #2563EB 0%, #7C3CFF 100%) !important;
  box-shadow: 0 16px 38px rgba(37, 99, 235, 0.24) !important;
}
.btn-primary:hover { box-shadow: 0 22px 52px rgba(124, 60, 255, 0.30) !important; }
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient( 90deg, transparent, rgba(255,255,255,.25), transparent );
  transition: .8s;
  opacity: 0.72;
}
.btn-secondary {
  border-color: rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
  color: var(--text) !important;
  background: rgba(255, 255, 255, 0.055) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}
.btn-secondary:hover { border-color: rgba(24, 200, 255, 0.38) !important; box-shadow: 0 14px 34px rgba(24, 200, 255, 0.12) !important; }
[data-theme="light"] .btn-secondary {
  color: #1E293B !important;
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(15, 23, 42, 0.17) !important;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.86) !important;
}
[data-theme="light"] .btn-secondary:hover { color: #1D4ED8 !important; border-color: rgba(37, 99, 235, 0.34) !important; box-shadow: 0 16px 36px rgba(37, 99, 235, 0.12) !important; }
.btn-ghost {
  padding-left: 0;
  color: var(--primary) !important;
  font-weight: 700 !important;
}
[data-theme="light"] .btn-ghost {
  color: #1D4ED8 !important;
}
.eyebrow, .kicker { letter-spacing: 0.13em; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(78, 234, 255, 0.2);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #7DD3FC;
  background: rgba(37, 99, 235, 0.10);
  border-color: rgba(24, 200, 255, 0.20);
}
[data-theme="light"] .eyebrow {
  color: #1D4ED8;
  background: rgba(37, 99, 235, 0.09);
  border-color: rgba(37, 99, 235, 0.24);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.07);
}
.kicker {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--primary);
}
.card, .trust-card, .metric-card, .progress-panel, .stack-card, .stack-line, .project-card, .faq-item, .cta, .contact-form, .result-mini, .tool-card, .resource-card, .article-sidebar, .article-card, .brand-guide-board, .guide-block, .why-choose-card, .why-choose-promise, .package-card, .included-card, .addon-card, .comparison-wrap, .tech-stack-board, .stack-tool, .browser-mockup, .mockup-preview, .mockup-features div, .logo-tile, .palette-item, .app-card {
  border-color: var(--line);
}
[data-theme="light"] .card, [data-theme="light"] .trust-card, [data-theme="light"] .metric-card, [data-theme="light"] .progress-panel, [data-theme="light"] .stack-card, [data-theme="light"] .stack-line, [data-theme="light"] .project-card, [data-theme="light"] .faq-item, [data-theme="light"] .cta, [data-theme="light"] .contact-form, [data-theme="light"] .result-mini, [data-theme="light"] .tool-card, [data-theme="light"] .resource-card, [data-theme="light"] .article-sidebar, [data-theme="light"] .article-card, [data-theme="light"] .brand-guide-board, [data-theme="light"] .guide-block, [data-theme="light"] .why-choose-card, [data-theme="light"] .why-choose-promise, [data-theme="light"] .package-card, [data-theme="light"] .included-card, [data-theme="light"] .addon-card, [data-theme="light"] .comparison-wrap, [data-theme="light"] .tech-stack-board, [data-theme="light"] .stack-tool, [data-theme="light"] .browser-mockup, [data-theme="light"] .mockup-preview, [data-theme="light"] .mockup-features div, [data-theme="light"] .logo-tile, [data-theme="light"] .palette-item {
  background: radial-gradient(circle at 16% 0%, rgba(37, 99, 235, 0.055), transparent 36%), rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(15, 23, 42, 0.11) !important;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.78) !important;
}
[data-theme="light"] .app-card-hero, [data-theme="light"] .app-card-tool, [data-theme="light"] .app-card-social, [data-theme="light"] .app-card-badge {
  color: #ffffff;
  border-color: rgba(15, 23, 42, 0.08) !important;
}
.card h3, .why-choose-card h3, .included-card h3, .resource-card h2, .project-body h3 { letter-spacing: -0.035em; }
.card-hover:hover {
  background: var(--bg-card-strong);
  transform: translateY(-5px);
  border-color: rgba(24, 200, 255, 0.28);
}
[data-theme="light"] .card-hover:hover { border-color: rgba(37, 99, 235, 0.18) !important; box-shadow: 0 22px 60px rgba(37, 99, 235, 0.085), inset 0 1px 0 rgba(255, 255, 255, 0.78) !important; }
.field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 14px;
  color: var(--muted);
}
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 18px;
  padding: 14px 15px;
  outline: none;
  background: rgba(255, 255, 255, 0.055);
  border-color: var(--line);
  font-weight: 400;
}
[data-theme="light"] .field input, [data-theme="light"] .field textarea, [data-theme="light"] .field select {
  color: #08111F;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78), 0 8px 22px rgba(15, 23, 42, 0.035);
}
[data-theme="light"] .field input::placeholder, [data-theme="light"] .field textarea::placeholder {
  color: rgba(83, 98, 120, 0.76);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: rgba(37, 99, 235, 0.45); box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.095); }
[data-theme="light"] .dashboard-card, [data-theme="light"] .browser-mockup {
  background: radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.085), transparent 36%), radial-gradient(circle at 90% 100%, rgba(124, 60, 255, 0.085), transparent 38%), rgba(255, 255, 255, 0.88) !important;
  border: 1px solid rgba(15, 23, 42, 0.10) !important;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.78) !important;
}
[data-theme="light"] .dashboard-inner, [data-theme="light"] .browser-body { background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 250, 252, 0.94)) !important; border: 1px solid rgba(15, 23, 42, 0.09) !important; }
[data-theme="light"] .mockup-line { background: rgba(15, 23, 42, 0.10); }
[data-theme="light"] .mockup-line.large { background: linear-gradient(135deg, #2563EB, #7C3CFF); }
[data-theme="light"] .mockup-label { color: #ffffff; }
.floating-pill, .float-card { font-weight: 600 !important; }
[data-theme="light"] .floating-pill, [data-theme="light"] .float-card {
  color: #0F172A;
  background: rgba(255, 255, 255, 0.82) !important;
  border: 1px solid rgba(15, 23, 42, 0.10) !important;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.11) !important;
}
.package-list li::before, .feature-list li::before, .check-list li::before, .guide-rules li::before {
  font-weight: 400 !important;
}
.package-card.featured {
  background: radial-gradient(circle at 22% 0%, rgba(37, 99, 235, 0.24), transparent 36%), radial-gradient(circle at 85% 100%, rgba(124, 60, 255, 0.20), transparent 34%), linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.032));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 34px 105px rgba(37, 99, 235, 0.20);
  border-color: rgba(24, 200, 255, 0.42);
}
[data-theme="light"] .package-card.featured { border-color: rgba(37, 99, 235, 0.25) !important; box-shadow: 0 32px 90px rgba(37, 99, 235, 0.12) !important; }
[data-theme="light"] .package-badge {
  color: #1D4ED8;
  background: rgba(37, 99, 235, 0.11);
  border-color: rgba(37, 99, 235, 0.26);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.07);
}
.comparison-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700 !important;
}
.comparison-table tbody th {
  color: var(--text);
  font-size: 14px;
  font-weight: 600 !important;
}
[data-theme="light"] .comparison-table thead th { background: rgba(248, 250, 252, 0.92); }
[data-theme="light"] .comparison-table th, [data-theme="light"] .comparison-table td { border-bottom-color: rgba(15, 23, 42, 0.09); }
.resource-card h2 {
  margin: 24px 0 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  font-weight: 800 !important;
}
.article-content h2, .article-content h3 { font-weight: 800 !important; letter-spacing: -0.035em; }
.article-content blockquote {
  margin: 38px 0;
  padding: 26px 28px;
  border: 1px solid rgba(37, 99, 235, 0.28);
  border-left: 4px solid #2563eb;
  border-radius: 24px;
  color: var(--text);
  background: radial-gradient(circle at 10% 0%, rgba(37, 99, 235, 0.14), transparent 34%), rgba(255, 255, 255, 0.045);
  font-size: 22px;
  line-height: 1.55;
  font-weight: 800;
  letter-spacing: -0.025em;
  border-left-color: var(--primary);
}
[data-theme="light"] .resource-tag, [data-theme="light"] .resource-time, [data-theme="light"] .tag, [data-theme="light"] .badge-coming {
  color: #1D4ED8;
  border-color: rgba(37, 99, 235, 0.24);
  background: rgba(37, 99, 235, 0.10);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.065);
}
.scroll-top-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(124, 60, 255, 0.95));
  color: #ffffff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 45px rgba(37, 99, 235, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.94);
  transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  position: fixed !important;
  right: 28px !important;
  bottom: 28px !important;
  z-index: 9999 !important;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.scroll-top-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
[data-theme="light"] .scroll-top-btn { border-color: rgba(37, 99, 235, 0.16); box-shadow: 0 18px 45px rgba(37, 99, 235, 0.18); }
p, li, span, small, input, textarea, select { font-weight: 400; }
h1, .hero h1, .page-hero h1 { font-weight: 800; letter-spacing: -0.055em; }
h2, .section-head h2, .brand-guide-header h2, .cta h2, .split-content h2 { font-weight: 800; letter-spacing: -0.052em; }
h3, .card h3, .guide-title-row h3, .included-card h3, .why-choose-card h3 { font-weight: 700; }
.kicker, .eyebrow, .btn, .package-badge, .tag, .badge-coming, .main-nav { font-weight: 700; }
.package-card {
  position: relative;
  display: flex !important;
  flex-direction: column;
  min-height: 660px;
  padding: 30px 28px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 34px;
  background: radial-gradient(circle at 18% 0%, rgba(37, 99, 235, 0.18), transparent 34%), radial-gradient(circle at 85% 100%, rgba(124, 60, 255, 0.14), transparent 34%), linear-gradient(180deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.028));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 80px rgba(0, 0, 0, 0.16);
  isolation: isolate;
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  border-color: rgba(148, 163, 184, 0.16);
  min-width: 0;
  overflow: hidden;
}
.package-card h3 {
  margin: 0;
  color: var(--text);
  min-height: 116px;
  max-width: 100%;
  font-size: clamp(28px, 2.05vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.052em;
  font-weight: 700;
}
.package-price {
  min-height: 78px;
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin: 8px 0 22px;
  white-space: nowrap;
}
.package-price strong {
  color: var(--text);
  font-size: clamp(46px, 3.25vw, 62px);
  line-height: 0.95;
  letter-spacing: -0.065em;
  font-weight: 800;
  white-space: nowrap;
}
.package-price span {
  max-width: none;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}
.package-desc {
  min-height: 130px;
  margin: 0 0 24px;
  color: var(--muted);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
}
.package-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 11px;
  align-items: start;
  color: var(--muted);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
}
.package-card .btn {
  width: 100%;
  min-height: 58px;
  justify-content: center;
  margin-top: auto;
  padding: 15px 18px;
  border-radius: 999px;
  font-size: 15px;
  line-height: 1.15;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  font-weight: 700;
}
.card p, .guide-block p, .included-card p, .why-choose-card p, .package-desc, .package-list li, .comparison-table td {
  font-weight: 400;
}
.comparison-table th, .footer-col h4, .progress-top, .faq-question { font-weight: 400; }
p, li, input, textarea, select { font-weight: 400; }
strong { font-weight: 600; }
h1, .hero h1, .page-hero h1, .service-hero-copy h1, .article-hero h1 { font-weight: 800; }
h2, .section-head h2, .brand-guide-header h2, .cta h2, .split-content h2, .bento-main h2, .why-choose-promise h3 {
  font-weight: 800;
}
h3, .card h3, .guide-title-row h3, .included-card h3, .why-choose-card h3, .package-card h3 { font-weight: 700; }
.btn, .main-nav, .kicker, .eyebrow, .tag, .package-badge, .badge-coming, .faq-question, .card-link {
  font-weight: 700;
}
.price, .package-price strong, .result-number { font-weight: 800; }
.package-price span, .price small, .result-mini span, .metric-card small { font-weight: 500; }

/* =================================================
   Service Funnel Hero
================================================= */

.service-funnel-hero {
  padding-top: 148px;
  padding-bottom: 82px;
  overflow: hidden;
}

.service-funnel-hero .service-hero-grid {
  align-items: center;
}

.service-funnel-hero .service-hero-copy h1 {
  max-width: 830px;
}

.service-funnel-hero .hero-description {
  max-width: 680px;
}

.service-funnel-preview {
  position: relative;
  overflow: hidden;
}

.service-funnel-preview::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--accent-2), var(--primary));
  background-size: 220% 100%;
  animation: serviceFunnelFlow 7s linear infinite;
}

/* =================================================
   Website Estimate Builder
================================================= */

.estimate-builder-section {
  position: relative;
  padding-top: 92px;
}

.estimate-builder-section::before {
  content: "";
  position: absolute;
  inset: 44px 0 auto;
  height: 440px;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.055) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent);
  opacity: 0.72;
}

.estimate-builder {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 18px;
  align-items: start;
}

.estimate-controls {
  display: grid;
  gap: 18px;
}

.estimate-panel,
.estimate-summary,
.quote-modal-dialog {
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 0%, rgba(37, 99, 235, 0.13), transparent 34%),
    rgba(255, 255, 255, 0.052);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.estimate-panel,
.estimate-summary {
  border-radius: 28px;
  padding: clamp(20px, 3vw, 28px);
}

.estimate-panel-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.estimate-step {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-size: 13px;
  font-weight: 700;
}

.estimate-panel h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.estimate-panel p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-weight: 400;
}

.estimate-plan-grid,
.estimate-addon-grid {
  display: grid;
  gap: 12px;
}

.estimate-plan-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.estimate-addon-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.estimate-option {
  position: relative;
  display: block;
}

.estimate-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.estimate-option-card {
  min-height: 100%;
  display: grid;
  gap: 10px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.046);
  padding: 18px;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.estimate-option-card:hover {
  border-color: rgba(24, 200, 255, 0.28);
  transform: translateY(-2px);
}

.estimate-option input:focus-visible + .estimate-option-card {
  outline: 3px solid rgba(24, 200, 255, 0.32);
  outline-offset: 3px;
}

.estimate-option input:checked + .estimate-option-card,
.estimate-option-card.is-active {
  border-color: rgba(24, 200, 255, 0.46);
  background:
    radial-gradient(circle at 18% 0%, rgba(37, 99, 235, 0.20), transparent 36%),
    rgba(255, 255, 255, 0.07);
  box-shadow: 0 22px 60px rgba(37, 99, 235, 0.16), inset 0 0 0 1px rgba(124, 60, 255, 0.18);
}

.estimate-option-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.estimate-option-title {
  color: var(--text);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 700;
}

.estimate-option-price {
  color: var(--text);
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.estimate-option-desc,
.estimate-option-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.estimate-badge {
  width: fit-content;
  border: 1px solid rgba(85, 240, 163, 0.24);
  border-radius: 999px;
  background: rgba(85, 240, 163, 0.11);
  color: var(--success);
  padding: 5px 9px;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
}

.estimate-addon-card {
  min-height: 176px;
}

.estimate-addon-action {
  margin-top: auto;
}

.estimate-check-row {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.estimate-check-dot {
  width: 18px;
  height: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: transparent;
  background: rgba(255, 255, 255, 0.055);
}

.estimate-option input:checked + .estimate-option-card .estimate-check-dot {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.estimate-qty-control {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  gap: 8px;
}

.estimate-qty-control button {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 700;
}

.estimate-qty-control output {
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 700;
}

.estimate-summary {
  position: sticky;
  top: 98px;
}

.estimate-summary-package {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.05);
}

.estimate-summary-package span,
.estimate-summary-title,
.estimate-total-lines span {
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 700;
}

.estimate-summary-package strong,
.estimate-summary-package b {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-weight: 700;
}

.estimate-summary-package b {
  color: var(--primary);
  font-size: 24px;
  font-weight: 800;
}

.estimate-summary-addons {
  margin-top: 18px;
}

.estimate-summary-addons p,
.estimate-summary-addons ul {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.estimate-summary-addons ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
}

.estimate-summary-addons li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.estimate-total-lines {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.estimate-total-lines div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.estimate-total-lines strong {
  color: var(--text);
  font-weight: 700;
}

.estimate-grand-total {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.estimate-grand-total strong {
  color: var(--text);
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
}

.estimate-open-quote {
  width: 100%;
  margin-top: 22px;
}

.estimate-disclaimer {
  margin: 14px 0 0;
  color: var(--muted-2);
  font-size: 12px;
  line-height: 1.6;
}

/* =================================================
   Service Packages
================================================= */

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

.service-package-card {
  min-height: 700px;
}

.service-package-card h3 {
  min-height: 92px;
  font-size: clamp(28px, 2.35vw, 42px);
}

.service-package-card .package-price {
  min-height: 56px;
}

.service-package-card .package-price strong {
  font-size: clamp(34px, 2.6vw, 48px);
  letter-spacing: -0.055em;
}

.service-package-card .package-desc {
  min-height: 82px;
}

.package-fit {
  margin: 0 0 22px;
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.65;
}

.free-starter-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 22px auto 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.free-starter-note strong {
  color: var(--text);
  font-weight: 700;
}

/* =================================================
   Why Choose RYNX
================================================= */

.service-benefit-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-benefit-grid .why-choose-card {
  min-height: 260px;
}

/* =================================================
   Selected Work
================================================= */

.service-work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-work-card {
  border: 1px solid var(--line);
  border-radius: 30px;
  overflow: hidden;
  background: radial-gradient(circle at 16% 0%, rgba(37, 99, 235, 0.13), transparent 34%), rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow-soft);
}

.service-work-preview {
  min-height: 250px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.service-work-preview::before {
  content: "";
  position: absolute;
  inset: 22px 22px 86px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 18%, transparent 18% 24%, rgba(255, 255, 255, 0.10) 24% 58%, transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04));
}

.service-work-preview span,
.service-work-preview strong {
  position: relative;
  z-index: 1;
}

.service-work-preview span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 700;
}

.service-work-preview strong {
  color: #fff;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.orchel-work { background: linear-gradient(135deg, rgba(22, 163, 74, 0.56), rgba(37, 99, 235, 0.58)); }
.tools-work { background: linear-gradient(135deg, rgba(37, 99, 235, 0.76), rgba(124, 60, 255, 0.58)); }
.rental-work { background: linear-gradient(135deg, rgba(24, 200, 255, 0.58), rgba(37, 99, 235, 0.64)); }
.vinn-work { background: linear-gradient(135deg, rgba(124, 60, 255, 0.68), rgba(15, 23, 42, 0.88)); }

.service-work-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
}

.service-work-info h3 {
  margin: 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
}

.service-work-info p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.service-work-info .btn {
  min-height: 42px;
  padding: 11px 15px;
}

/* =================================================
   Add-ons Upsells
================================================= */

.service-addon-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-addon-grid .addon-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-addon-grid .addon-card b {
  color: var(--primary);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.service-addon-grid .addon-card .btn {
  width: 100%;
  min-height: 42px;
  margin-top: auto;
  justify-content: center;
  padding: 11px 14px;
}

/* =================================================
   Quote Modal
================================================= */

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

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
}

.quote-modal.open {
  display: block;
}

.quote-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(12px);
}

.quote-modal-dialog {
  position: relative;
  width: min(760px, calc(100% - 28px));
  max-height: calc(100vh - 34px);
  overflow: auto;
  margin: 17px auto;
  border-radius: 28px;
  padding: clamp(22px, 4vw, 34px);
}

.quote-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  font-size: 24px;
  line-height: 1;
}

.quote-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-right: 52px;
}

.quote-brand span {
  color: var(--text);
  font-size: 26px;
  letter-spacing: -0.04em;
  font-weight: 800;
}

.quote-brand small {
  color: var(--muted);
  font-weight: 700;
}

.quote-modal h2 {
  margin: 24px 0 0;
  color: var(--text);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.quote-modal-content {
  margin-top: 22px;
  display: grid;
  gap: 16px;
}

.quote-box {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  padding: 18px;
}

.quote-box h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 18px;
  font-weight: 700;
}

.quote-box p,
.quote-box li {
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.quote-box ul {
  margin: 0;
  padding-left: 20px;
}

.quote-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.quote-line:last-child {
  border-bottom: 0;
}

.quote-line strong {
  color: var(--text);
  font-weight: 700;
}

.quote-total {
  color: var(--text);
  font-size: 24px;
  font-weight: 800;
}

.quote-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
}

/* =================================================
   Service Funnel Light Mode
================================================= */

[data-theme="light"] .estimate-panel,
[data-theme="light"] .estimate-summary,
[data-theme="light"] .service-work-card,
[data-theme="light"] .quote-modal-dialog {
  background:
    radial-gradient(circle at 16% 0%, rgba(37, 99, 235, 0.055), transparent 36%),
    rgba(255, 255, 255, 0.94);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 24px 68px rgba(15, 23, 42, 0.10);
}

[data-theme="light"] .estimate-option-card,
[data-theme="light"] .estimate-summary-package,
[data-theme="light"] .quote-box,
[data-theme="light"] .free-starter-note {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 23, 42, 0.13);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.045);
}

[data-theme="light"] .estimate-option input:checked + .estimate-option-card,
[data-theme="light"] .estimate-option-card.is-active {
  background: radial-gradient(circle at 18% 0%, rgba(37, 99, 235, 0.12), transparent 36%), rgba(255, 255, 255, 0.96);
  border-color: rgba(37, 99, 235, 0.46);
  box-shadow: 0 22px 58px rgba(37, 99, 235, 0.14), inset 0 0 0 1px rgba(124, 60, 255, 0.18);
}

[data-theme="light"] .estimate-badge {
  color: #1D4ED8;
  background: rgba(37, 99, 235, 0.10);
  border-color: rgba(37, 99, 235, 0.26);
}

[data-theme="light"] .estimate-qty-control button,
[data-theme="light"] .estimate-qty-control output,
[data-theme="light"] .quote-modal-close {
  color: #0F172A;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(15, 23, 42, 0.16);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

/* =================================================
   Print Styles
================================================= */

@media print {
  body.quote-printing {
    background: #fff !important;
    color: #0f172a !important;
  }

  body.quote-printing header,
  body.quote-printing main,
  body.quote-printing footer,
  body.quote-printing .scroll-top-btn,
  body.quote-printing .quote-modal-backdrop,
  body.quote-printing .quote-modal-close,
  body.quote-printing .quote-modal-actions {
    display: none !important;
  }

  body.quote-printing .quote-modal {
    position: static !important;
    display: block !important;
    inset: auto !important;
  }

  body.quote-printing .quote-modal-dialog {
    width: 100% !important;
    max-height: none !important;
    overflow: visible !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
    color: #0f172a !important;
  }

  body.quote-printing .quote-brand span,
  body.quote-printing .quote-modal h2,
  body.quote-printing .quote-box h3,
  body.quote-printing .quote-line strong,
  body.quote-printing .quote-total {
    color: #0f172a !important;
  }

  body.quote-printing .quote-brand small,
  body.quote-printing .quote-box p,
  body.quote-printing .quote-box li,
  body.quote-printing .quote-line {
    color: #334155 !important;
  }

  body.quote-printing .quote-box,
  body.quote-printing .quote-line {
    border-color: #cbd5e1 !important;
    background: #fff !important;
  }
}

/* =================================================
   Service Funnel Responsive
================================================= */

@media (max-width: 1180px) {
  .service-benefit-grid,
  .service-addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-package-card {
    min-height: 640px;
  }
}

@media (max-width: 980px) {
  .service-funnel-hero {
    padding-top: 120px;
  }

  .estimate-builder,
  .service-hero-grid {
    grid-template-columns: 1fr;
  }

  .estimate-summary {
    position: static;
  }

  .service-package-grid {
    grid-template-columns: 1fr;
  }

  .service-package-card {
    min-height: auto;
  }

  .service-package-card h3,
  .service-package-card .package-desc {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .service-funnel-hero {
    padding-top: 104px;
    padding-bottom: 58px;
  }

  .service-hero-actions {
    display: grid;
  }

  .service-hero-actions .btn,
  .quote-modal-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .estimate-builder {
    gap: 14px;
  }

  .estimate-panel,
  .estimate-summary {
    border-radius: 24px;
  }

  .estimate-panel-head {
    gap: 12px;
  }

  .estimate-plan-grid,
  .estimate-addon-grid,
  .service-work-grid,
  .service-benefit-grid,
  .service-addon-grid {
    grid-template-columns: 1fr;
  }

  .estimate-option-top,
  .estimate-summary-addons li,
  .quote-line {
    align-items: flex-start;
  }

  .service-work-info,
  .free-starter-note {
    align-items: stretch;
    flex-direction: column;
  }

  .service-work-info .btn {
    width: 100%;
    justify-content: center;
  }

  .quote-modal-dialog {
    width: 100%;
    min-height: 100vh;
    max-height: 100vh;
    margin: 0;
    border-radius: 0;
  }

  .quote-brand {
    align-items: flex-start;
    flex-direction: column;
    margin-right: 50px;
  }

  .quote-modal-actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-funnel-preview::after {
    animation: none;
  }
}

@keyframes serviceFunnelFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 220% 50%; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes growBar {
  from { width: 0; }
  to { width: 86%; }
}
@keyframes floatLogo {
  0% {
  transform: translateY(0);
  }
  50% {
  transform: translateY(-14px);
  }
  100% {
  transform: translateY(0);
  }
}
@keyframes rynxUrgentSpin {
  to {
  transform: rotate(360deg);
  }
}
@keyframes rynxFloat {
  0%, 100% {
  transform: translateY(0);
  }
  50% {
  transform: translateY(-10px);
  }
}
@media (max-width: 980px) {
  .hero-grid, .split, .bento, .contact-grid, .calculator, .cta-grid { grid-template-columns: 1fr; }
  .home-live-hero-grid { grid-template-columns: 1fr; }
  .home-live-copy { max-width: 100%; }
  .home-live-visual { max-width: 720px; width: 100%; }
  .main-nav {
    position: fixed;
    top: 76px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(5, 7, 19, 0.94);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }
  [data-theme="light"] .main-nav { background: rgba(255, 255, 255, 0.96); }
  .main-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .main-nav a { padding: 14px 16px; border-radius: 16px; }
  .main-nav a:hover { background: rgba(78, 234, 255, 0.08); }
  .menu-toggle { display: grid; }
  .desktop-only { display: none; }
  .grid-3, .tools-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .float-card { display: none; }
  .dashboard-card { transform: none; }
  .result-panel { position: static; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .brand-guide-header { grid-template-columns: 1fr; }
  .logo-usage-grid, .type-showcase { grid-template-columns: 1fr; }
  .brand-guide-header, .brand-guide-grid { grid-template-columns: 1fr; }
  .brand-guide-header h2 { max-width: 100%; }
  .guide-logo-usage, .guide-applications { grid-column: 1; }
  .tech-stack-board { grid-template-columns: 1fr; }
  .tech-stack-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-layout { grid-template-columns: 1fr; gap: 36px; }
  .article-sidebar { position: static; }
  .article-sidebar-card { margin-top: 10px; }
  .why-choose-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-choose-section .brand-guide-header { align-items: start; }
  .service-hero-upgrade { padding-top: 120px; }
  .service-hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .service-hero-copy, .service-hero-copy h1, .service-hero-copy .hero-description, .service-hero-copy .pricing-note {
    max-width: 100%;
  }
  .service-hero-visual { min-height: auto; }
  .browser-mockup { max-width: 100%; transform: none; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--container)); }
  .hero { padding-top: 54px; }
  .hero-actions, .cta-actions { flex-direction: column; }
  .btn { width: 100%; }
  .home-live-hero { padding-top: 54px; }
  .live-build-pill { max-width: 100%; }
  .live-proof-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .live-proof-row span { justify-content: center; }
  .live-system-top { align-items: flex-start; flex-direction: column; }
  .live-system-card { animation: none; }
  .live-system-grid { grid-template-columns: 1fr; }
  .live-module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .impact-card {
    min-height: auto;
    animation: none;
  }
  .build-flow { padding: 14px; }
  .build-flow-nodes {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .impact-flow .build-flow-nodes {
    gap: 8px;
  }
  .build-flow-nodes span {
    min-height: 34px;
    justify-content: start;
    padding-inline: 14px;
    font-size: 12px;
    letter-spacing: 0;
  }
  .impact-flow .build-flow-nodes span {
    animation: none;
  }
  .build-flow-nodes span:not(:last-child)::after {
    content: "";
    right: auto;
    left: 24px;
    top: calc(100% + 1px);
    width: 1px;
    height: 8px;
    background: var(--line);
  }
  .build-flow-line { display: none; }
  .live-module-card { min-height: 78px; padding: 14px; }
  .live-module-card strong { font-size: 14px; }
  .trust-row, .metric-grid, .grid-2, .grid-3, .tools-grid, .tool-list, .result-grid, .form-row {
    grid-template-columns: 1fr;
  }
  .dashboard-inner, .bento-main, .cta { padding: 22px; }
  .section { padding: 54px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .grid-4 { grid-template-columns: 1fr; }
  .logo-usage-grid, .palette-list, .application-grid { grid-template-columns: 1fr; }
  .brand-guide-board { border-radius: 28px; padding: 22px; }
  .brand-guide-board::before { inset: 12px; border-radius: 22px; }
  .brand-guide-header h2 { font-size: clamp(42px, 15vw, 64px); letter-spacing: -0.045em; }
  .brand-guide-header p { font-size: 15px; }
  .logo-usage-grid, .palette-list, .type-showcase, .application-grid { grid-template-columns: 1fr; }
  .logo-tile { min-height: 146px; }
  .spec-list div { display: grid; }
  .spec-list strong { text-align: left; }
  .scroll-top-btn {
    right: 16px;
    bottom: 16px;
    width: 44px;
    height: 44px;
    font-size: 22px;
  }
  .project-thumb { min-height: 180px; padding: 14px; }
  .article-content { font-size: 16px; line-height: 1.8; }
  .article-content h2 { margin-top: 42px; }
  .article-content blockquote { padding: 22px; font-size: 19px; }
  .service-hero-actions { display: grid; }
  .service-hero-actions .btn { width: 100%; justify-content: center; }
  .package-grid, .included-grid, .addon-grid { grid-template-columns: 1fr; }
  .package-card { min-height: auto; padding: 24px; }
  .package-price { min-height: auto; margin-top: 16px; }
  .package-desc { margin-top: 6px; }
  .comparison-table { min-width: 860px; }
  .package-card h3 {
    max-width: 100%;
    min-height: auto;
    font-size: clamp(32px, 10vw, 46px);
  }
  .package-price strong { font-size: clamp(52px, 15vw, 68px); }
  .package-price span { font-size: 14px; }
}
@media (max-width: 560px) {
  .brand-logo { width: 118px; }
  .tech-stack-grid { grid-template-columns: 1fr; }
  .stack-tool { min-height: 112px; }
}
@media (max-width: 1180px) {
  .guide-logo-usage, .guide-colors, .guide-type, .guide-specs, .guide-story, .guide-rules, .guide-applications {
    grid-column: auto;
  }
  .logo-usage-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .application-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-guide-grid { grid-template-columns: 1fr; }
  .guide-logo-usage, .guide-colors { grid-column: auto; }
  .palette-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .package-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .package-card { min-height: 600px; }
  .package-card.featured, .package-card.featured:hover { transform: none; }
  .package-card h3, .package-desc { min-height: auto; }
  .included-grid, .addon-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .logo-usage-grid, .palette-list { grid-template-columns: 1fr; }
  .guide-logo-usage, .guide-colors { padding: 22px; }
  .logo-tile { min-height: 160px; }
  .palette-item { min-height: auto; }
  .resources-grid { grid-template-columns: 1fr; }
  .resource-card { min-height: auto; padding: 24px; }
}
@media (max-width: 768px) {
  body { overflow-x: hidden; }
  .container { width: min(100% - 32px, var(--container)); }
  .site-header { backdrop-filter: blur(18px); }
  .header-inner { min-height: 72px; }
  .brand-logo { width: 145px; height: auto; }
  .hero, .page-hero { padding-top: 58px; padding-bottom: 56px; }
  .hero h1, .page-hero h1 {
    font-size: clamp(42px, 13vw, 62px);
    line-height: 1;
    letter-spacing: -0.045em;
  }
  .hero p, .page-hero p { font-size: 16px; line-height: 1.75; }
  .section { padding: 64px 0; }
  .section-tight { padding: 48px 0; }
  .section-head h2, .tools-hub-header h2 {
    font-size: clamp(34px, 10vw, 48px);
    line-height: 1.04;
    letter-spacing: -0.045em;
  }
  .card { border-radius: 24px; padding: 22px; }
  .grid-2, .grid-3, .tools-grid, .calculator { grid-template-columns: 1fr; }
  .btn, .btn-primary, .btn-ghost, .primary, .ghost { min-height: 48px; padding: 13px 18px; }
  .form-row { grid-template-columns: 1fr; }
  input, textarea, select { font-size: 16px; }
  .logo-watermark { width: 480px; opacity: 0.04; }
  .hero-watermark { top: 140px; right: -240px; }
  .service-pricing-hero { padding-top: 110px; }
  .service-pricing-hero .section-heading, .service-pricing-hero h1, .service-pricing-hero .hero-description, .pricing-note {
    text-align: left;
  }
  .service-hero-actions { flex-direction: column; align-items: stretch; }
  .service-hero-actions .btn { width: 100%; justify-content: center; }
  .service-pricing-hero .hero-description { font-size: 17px; }
  .hero h1, .page-hero h1, .service-hero-copy h1 { font-weight: 800 !important; letter-spacing: -0.05em; }
  .section-head h2, .cta h2, .split-content h2 { font-weight: 800 !important; }
  .btn { font-weight: 700 !important; }
  [data-theme="light"] .main-nav {
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid rgba(15, 23, 42, 0.10) !important;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.10) !important;
  }
}
@media (max-width: 480px) {
  .container { width: min(100% - 24px, var(--container)); }
  .brand-logo { width: 130px; }
  .hero h1, .page-hero h1 { font-size: clamp(38px, 14vw, 54px); }
  .home-live-copy h1 { font-size: clamp(36px, 11vw, 46px); }
  .live-system-card { border-radius: 26px; }
  .impact-dashboard-head strong { font-size: clamp(24px, 9vw, 34px); }
  .kicker, .eyebrow { letter-spacing: 0.16em; }
  .footer-grid { gap: 26px; }
}
@media (max-width: 1280px) {
  .package-card { padding: 26px; }
  .package-card h3 { font-size: clamp(28px, 2.25vw, 40px); }
}
@media (max-width: 640px) {
  .why-choose-grid { grid-template-columns: 1fr; }
  .why-choose-card { min-height: auto; padding: 24px; }
  .why-choose-promise { padding: 26px; }
  .service-hero-upgrade { padding-top: 105px; padding-bottom: 64px; }
  .service-hero-copy .hero-description { font-size: 17px; }
  .service-hero-copy .service-hero-actions { display: grid; gap: 12px; }
  .service-hero-copy .service-hero-actions .btn { width: 100%; }
  .browser-body { padding: 22px; }
  .mockup-features { grid-template-columns: 1fr; }
  .floating-pill { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* =================================================
   Service Funnel Final Responsive Guard
================================================= */

@media (max-width: 1180px) {
  .service-package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-benefit-grid,
  .service-addon-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .service-package-grid,
  .estimate-builder,
  .service-hero-grid {
    grid-template-columns: 1fr;
  }

  .service-package-card,
  .service-package-card h3,
  .service-package-card .package-desc {
    min-height: auto;
  }

  .estimate-summary {
    position: static;
  }
}

@media (max-width: 680px) {
  .estimate-plan-grid,
  .estimate-addon-grid,
  .service-work-grid,
  .service-benefit-grid,
  .service-addon-grid {
    grid-template-columns: 1fr;
  }

  .service-funnel-hero {
    padding-top: 104px;
    padding-bottom: 58px;
  }

  .service-package-card .package-price strong {
    font-size: clamp(34px, 12vw, 48px);
  }

  .service-work-info,
  .free-starter-note {
    flex-direction: column;
  }
}

/* =================================================
   Premium Typography Refinement
   Calmer weights and service package card polish
================================================= */

body {
  font-weight: 400;
}

.main-nav {
  font-weight: 600;
}

.kicker,
.eyebrow,
.tag,
.badge-coming,
.package-badge,
.resource-tag,
.resource-time {
  font-weight: 600;
}

.btn,
button.btn,
.btn-primary,
.btn-secondary,
.btn-ghost {
  font-weight: 700 !important;
}

.card p,
.trust-card p,
.metric-card p,
.project-body p,
.resource-card p,
.article-card p,
.guide-block p,
.why-choose-card p,
.included-card p,
.addon-card span,
.package-desc,
.package-list li,
.package-fit,
.service-work-info p,
.estimate-option-desc,
.estimate-option-note,
.quote-box p,
.quote-box li,
.footer-brand p,
.footer-col a {
  font-weight: 400 !important;
}

.card h3,
.trust-card strong,
.metric-card strong,
.project-body h3,
.resource-card h2,
.article-card h2,
.guide-title-row h3,
.included-card h3,
.addon-card strong,
.why-choose-card h3,
.service-work-info h3,
.stack-tool strong,
.stack-line strong {
  font-weight: 700;
}

.hero h1,
.page-hero h1,
.service-hero-copy h1,
.article-hero h1 {
  font-weight: 800 !important;
}

.section-head h2,
.cta h2,
.split-content h2,
.bento-main h2,
.brand-guide-header h2 {
  font-weight: 800 !important;
}

.package-card.service-package-card {
  min-height: 0;
  padding: clamp(28px, 3vw, 38px);
  border-color: rgba(148, 163, 184, 0.16);
  border-radius: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045), 0 22px 58px rgba(0, 0, 0, 0.13);
}

.package-card.service-package-card::after {
  top: 76px;
  opacity: 0.36;
}

.package-card.service-package-card:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 200, 255, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 26px 68px rgba(0, 0, 0, 0.16);
}

.package-card.service-package-card.featured {
  border-color: rgba(37, 99, 235, 0.34) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055), 0 26px 72px rgba(37, 99, 235, 0.13) !important;
}

.package-card.service-package-card.featured:hover {
  transform: translateY(-4px);
}

.service-package-card .package-badge {
  min-height: 32px;
  margin-bottom: 22px;
  padding: 8px 13px;
  font-weight: 600;
}

.service-package-card h3 {
  min-height: 0 !important;
  margin-bottom: 18px;
  font-size: clamp(26px, 2.1vw, 36px) !important;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700 !important;
}

.service-package-card .package-price {
  min-height: 0 !important;
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 18px;
  white-space: normal;
}

.service-package-card .package-price .price-prefix {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1;
  font-weight: 500;
}

.service-package-card .package-price .price-value {
  color: var(--text);
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.service-package-card .btn {
  width: fit-content;
  max-width: 100%;
  min-height: 50px;
  margin: 0 0 24px;
  padding: 13px 20px;
}

.service-package-card .package-desc {
  min-height: 0 !important;
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  font-weight: 400 !important;
}

.service-package-card .package-list {
  gap: 11px;
  margin-bottom: 22px;
}

.service-package-card .package-list li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400 !important;
}

.service-package-card .package-list li::before {
  width: 21px;
  height: 21px;
  font-weight: 500;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.16);
}

.service-package-card .package-fit {
  margin-top: auto;
  font-weight: 400 !important;
}

.estimate-option-price,
.estimate-summary-package b,
.estimate-grand-total strong,
.quote-total,
.price,
.result-number,
.package-price strong {
  font-weight: 700 !important;
}

.service-work-preview strong {
  font-weight: 600;
}

.service-work-preview span,
.estimate-summary-package span,
.estimate-summary-title,
.estimate-total-lines span,
.estimate-check-row {
  font-weight: 600;
}

[data-theme="light"] .package-card.service-package-card {
  border-color: rgba(15, 23, 42, 0.11) !important;
  box-shadow: 0 20px 54px rgba(15, 23, 42, 0.08) !important;
}

[data-theme="light"] .package-card.service-package-card.featured {
  border-color: rgba(37, 99, 235, 0.24) !important;
  box-shadow: 0 24px 62px rgba(37, 99, 235, 0.10) !important;
}

@media (max-width: 680px) {
  .package-card.service-package-card {
    padding: 26px;
  }

  .service-package-card .btn {
    width: 100%;
    justify-content: center;
  }

  .service-package-card .package-price .price-value {
    font-size: clamp(38px, 13vw, 52px);
  }
}

/* =================================================
   RYNX LAB Tools Ecosystem
================================================= */

.lab-hero {
  padding-top: 112px;
  padding-bottom: 54px;
}

.lab-hero-inner {
  max-width: 960px;
}

.lab-hero h1 {
  max-width: 900px;
}

.lab-hero p {
  max-width: 760px;
}

.lab-hero-actions {
  margin-top: 28px;
}

.lab-trust-line {
  margin-top: 18px;
  color: var(--muted-2);
  font-size: 14px;
}

.lab-dashboard-hero {
  padding-top: 88px;
  padding-bottom: 30px;
}

.lab-dashboard-hero h1 {
  max-width: 820px;
}

.lab-dashboard-hero p {
  max-width: 760px;
}

.lab-dashboard-section {
  padding-top: 24px;
}

.lab-dashboard-control,
.lab-dashboard-block {
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 14% 0%, rgba(37, 99, 235, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.052);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.lab-dashboard-control {
  padding: clamp(18px, 2.5vw, 24px);
}

.lab-dashboard-head,
.lab-block-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-end;
}

.lab-dashboard-head h2,
.lab-block-head h2 {
  margin: 8px 0 0;
  color: var(--text);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.lab-dashboard-head p,
.lab-block-head p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.lab-category-tabs {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding-bottom: 2px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.lab-search {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.lab-search span {
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lab-search input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  outline: none;
  padding: 12px 18px;
}

.lab-search input:focus {
  border-color: rgba(37, 99, 235, 0.58);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.lab-tab,
.lab-persona-card {
  appearance: none;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-family: inherit;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.lab-tab {
  flex: 0 0 auto;
  min-height: 42px;
  border-radius: 999px;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 700;
}

.lab-tab:hover,
.lab-persona-card:hover {
  color: var(--text);
  border-color: rgba(24, 200, 255, 0.30);
  transform: translateY(-1px);
}

.lab-tab:focus-visible,
.lab-persona-card:focus-visible,
.lab-side-nav a:focus-visible,
.lab-tool-card .btn:focus-visible {
  outline: 3px solid rgba(24, 200, 255, 0.34);
  outline-offset: 3px;
}

.lab-tab.is-active,
.lab-persona-card.is-active {
  color: #fff;
  border-color: rgba(24, 200, 255, 0.42);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.20);
}

.lab-dashboard-block {
  margin-top: 18px;
  padding: clamp(20px, 3vw, 28px);
}

.lab-directory-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.26fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}

.lab-directory-main {
  min-width: 0;
}

.lab-directory-main > .lab-dashboard-block:first-child {
  margin-top: 0;
}

.lab-side-nav {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 12px;
  background:
    radial-gradient(circle at 14% 0%, rgba(37, 99, 235, 0.10), transparent 34%),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.lab-side-nav a {
  display: flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 10px 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.lab-side-nav a:hover,
.lab-side-nav a.is-active {
  color: var(--text);
  border-color: rgba(24, 200, 255, 0.28);
  background: rgba(255, 255, 255, 0.055);
}

.lab-side-nav a:hover {
  transform: translateY(-1px);
}

.lab-persona-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.lab-persona-card {
  min-height: 150px;
  display: grid;
  align-content: start;
  gap: 10px;
  border-radius: 22px;
  padding: 18px;
  text-align: left;
}

.lab-persona-card span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-size: 12px;
  font-weight: 700;
}

.lab-persona-card.is-active span {
  color: var(--primary-dark);
  background: #fff;
}

.lab-persona-card strong {
  color: var(--text);
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.lab-persona-card small {
  color: var(--muted-2);
  line-height: 1.55;
  font-size: 12px;
}

.lab-persona-card.is-active strong,
.lab-persona-card.is-active small {
  color: #fff;
}

.lab-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.lab-featured-card {
  min-height: 250px;
  padding: 24px;
}

.lab-featured-card h3 {
  font-size: clamp(26px, 2.8vw, 36px);
}

.lab-category-section {
  scroll-margin-top: 112px;
  margin-top: 28px;
}

.lab-category-section + .lab-category-section {
  margin-top: 40px;
}

.lab-category-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.lab-category-head span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-size: 12px;
  font-weight: 700;
}

.lab-category-head h3 {
  margin: 0;
  color: var(--text);
  font-size: clamp(22px, 2.5vw, 32px);
  letter-spacing: -0.035em;
  font-weight: 700;
}

.lab-category-head p {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.lab-tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.lab-tool-card,
.lab-card,
.lab-result-card,
.lab-learn-card {
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 0%, rgba(37, 99, 235, 0.13), transparent 34%),
    rgba(255, 255, 255, 0.052);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.lab-tool-card {
  min-height: 236px;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  padding: 20px;
}

.lab-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 600;
}

.lab-status {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(37, 99, 235, 0.24);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
}

.lab-status.live {
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.13);
}

.lab-status.new {
  color: var(--success);
  border-color: rgba(85, 240, 163, 0.24);
  background: rgba(85, 240, 163, 0.1);
}

.lab-tool-card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.lab-tool-card p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.55;
}

.lab-tool-card small {
  display: block;
  margin-bottom: 16px;
  color: var(--muted-2);
  line-height: 1.55;
}

.lab-tool-card.is-highlighted {
  border-color: rgba(24, 200, 255, 0.42);
  box-shadow: 0 24px 68px rgba(37, 99, 235, 0.18);
}

.lab-empty-state {
  margin-top: 18px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 22px;
  padding: 22px;
  color: var(--muted);
  background: rgba(37, 99, 235, 0.08);
  text-align: center;
  font-weight: 600;
}

.lab-tool-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

.tool-page .page-hero p {
  max-width: 780px;
}

.lab-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.lab-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 13px;
  font-weight: 600;
}

.lab-tool-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  gap: 18px;
  align-items: start;
}

.lab-card,
.lab-result-card,
.lab-learn-card {
  border-radius: 28px;
  padding: clamp(22px, 3vw, 30px);
}

.lab-card h2,
.lab-result-card h2,
.lab-learn-card h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.lab-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.lab-field {
  display: grid;
  gap: 8px;
}

.lab-field.full {
  grid-column: 1 / -1;
}

.lab-field label,
.lab-field > span:first-child,
.lab-checklist > span:first-child {
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

.lab-field input,
.lab-field select,
.lab-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
  outline: none;
}

.lab-field textarea {
  min-height: 112px;
  resize: vertical;
}

.lab-field input:focus,
.lab-field select:focus,
.lab-field textarea:focus {
  border-color: rgba(37, 99, 235, 0.62);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.13);
}

.lab-checklist {
  display: grid;
  gap: 10px;
  grid-column: 1 / -1;
}

.lab-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lab-check {
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 11px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-size: 14px;
}

.lab-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.lab-actions .btn {
  min-height: 48px;
}

.lab-result-card {
  position: sticky;
  top: 98px;
}

.lab-result-main {
  margin: 20px 0 14px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  border-radius: 22px;
  padding: 20px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(124, 60, 255, 0.08));
}

.lab-result-main span,
.lab-metric span {
  display: block;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 600;
}

.lab-result-main strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 700;
}

.lab-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.lab-metric {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.lab-metric strong {
  display: block;
  margin-top: 6px;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
}

.lab-insight,
.lab-output {
  margin-top: 14px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 18px;
  padding: 15px;
  color: #bfdbfe;
  background: rgba(37, 99, 235, 0.11);
  line-height: 1.65;
}

.lab-insight.good {
  color: #bbf7d0;
  border-color: rgba(34, 197, 94, 0.2);
  background: rgba(34, 197, 94, 0.12);
}

.lab-insight.warn {
  color: #fde68a;
  border-color: rgba(245, 158, 11, 0.22);
  background: rgba(245, 158, 11, 0.12);
}

.lab-output ul {
  margin: 0;
  padding-left: 18px;
}

.lab-output pre {
  white-space: pre-wrap;
  word-break: break-word;
  margin: 0;
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  line-height: 1.65;
}

.lab-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
}

.lab-table th,
.lab-table td {
  border-bottom: 1px solid var(--line);
  padding: 10px 8px;
  text-align: left;
  color: var(--muted);
  font-size: 14px;
}

.lab-table th {
  color: var(--text);
  font-weight: 600;
}

.lab-item-row {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) 100px 120px auto;
  gap: 10px;
  align-items: end;
}

.lab-remove {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.lab-learn-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.lab-learn-card {
  margin-top: 16px;
}

.lab-learn-card span {
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 700;
}

.lab-learn-card h3 {
  margin: 12px 0 8px;
  color: var(--text);
  font-size: 20px;
  font-weight: 700;
}

.lab-learn-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.lab-print-area {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.lab-print-area h3,
.lab-print-area h4 {
  margin: 0 0 10px;
  color: var(--text);
}

.lab-invoice-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  margin-bottom: 14px;
}

.lab-invoice-head > div:last-child {
  text-align: right;
}

.lab-print-area p {
  color: var(--muted);
}

[data-theme="light"] .lab-tool-card,
[data-theme="light"] .lab-card,
[data-theme="light"] .lab-result-card,
[data-theme="light"] .lab-learn-card,
[data-theme="light"] .lab-dashboard-control,
[data-theme="light"] .lab-dashboard-block,
[data-theme="light"] .lab-side-nav,
[data-theme="light"] .lab-persona-card {
  background:
    radial-gradient(circle at 14% 0%, rgba(37, 99, 235, 0.07), transparent 34%),
    rgba(255, 255, 255, 0.94);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.085);
}

[data-theme="light"] .lab-tab {
  color: #475569;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 23, 42, 0.14);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.035);
}

[data-theme="light"] .lab-tab:hover,
[data-theme="light"] .lab-persona-card:hover,
[data-theme="light"] .lab-side-nav a:hover,
[data-theme="light"] .lab-side-nav a.is-active {
  color: #1D4ED8;
  border-color: rgba(37, 99, 235, 0.28);
  background: rgba(37, 99, 235, 0.08);
}

[data-theme="light"] .lab-tab.is-active,
[data-theme="light"] .lab-persona-card.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: rgba(37, 99, 235, 0.40);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.16);
}

[data-theme="light"] .lab-tool-card.is-highlighted {
  border-color: rgba(37, 99, 235, 0.40);
  box-shadow: 0 24px 62px rgba(37, 99, 235, 0.13);
}

[data-theme="light"] .lab-empty-state {
  color: #1D4ED8;
  background: rgba(239, 246, 255, 0.92);
  border-color: rgba(37, 99, 235, 0.24);
}

[data-theme="light"] .lab-status,
[data-theme="light"] .tool-status,
[data-theme="light"] .status-badge,
[data-theme="light"] .badge-live {
  color: #1D4ED8;
  background: rgba(37, 99, 235, 0.10);
  border: 1px solid rgba(37, 99, 235, 0.28);
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.08);
}

[data-theme="light"] .lab-status.new {
  color: #047857;
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.30);
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.08);
}

[data-theme="light"] .lab-field input,
[data-theme="light"] .lab-field select,
[data-theme="light"] .lab-field textarea,
[data-theme="light"] .lab-check,
[data-theme="light"] .lab-metric,
[data-theme="light"] .lab-search input,
[data-theme="light"] .lab-print-area {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(15, 23, 42, 0.14);
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.035);
}

[data-theme="light"] .lab-field input::placeholder,
[data-theme="light"] .lab-field textarea::placeholder {
  color: rgba(83, 98, 120, 0.76);
}

[data-theme="light"] .lab-chip {
  color: #334155;
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(15, 23, 42, 0.13);
}

[data-theme="light"] .lab-insight,
[data-theme="light"] .lab-output {
  color: var(--primary-dark);
  background: rgba(239, 246, 255, 0.92);
  border-color: rgba(37, 99, 235, 0.22);
  box-shadow: 0 10px 28px rgba(37, 99, 235, 0.06);
}

[data-theme="light"] .lab-insight.good {
  color: #047857;
  background: rgba(236, 253, 245, 0.94);
  border-color: rgba(16, 185, 129, 0.24);
}

[data-theme="light"] .lab-insight.warn {
  color: #92400E;
  background: rgba(255, 251, 235, 0.94);
  border-color: rgba(245, 158, 11, 0.26);
}

@media (max-width: 980px) {
  .lab-tool-grid,
  .lab-tool-layout,
  .lab-learn-grid,
  .lab-featured-grid {
    grid-template-columns: 1fr;
  }

  .lab-directory-layout {
    grid-template-columns: 1fr;
  }

  .lab-side-nav {
    display: none;
  }

  .lab-persona-grid {
    display: flex;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .lab-persona-card {
    flex: 0 0 min(310px, 82vw);
    scroll-snap-align: start;
  }

  .lab-result-card {
    position: static;
  }
}

@media (max-width: 680px) {
  .lab-dashboard-hero {
    padding-top: 72px;
    padding-bottom: 22px;
  }

  .lab-dashboard-section {
    padding-top: 18px;
  }

  .lab-dashboard-control {
    border-radius: 24px;
  }

  .lab-dashboard-head,
  .lab-block-head {
    display: grid;
    grid-template-columns: 1fr;
  }

  .lab-dashboard-head,
  .lab-block-head {
    align-items: start;
  }

  .lab-category-tabs {
    margin-inline: -2px;
    padding-bottom: 8px;
  }

  .lab-tab {
    min-height: 40px;
    padding-inline: 13px;
  }

  .lab-featured-card {
    min-height: 230px;
  }

  .lab-form-grid,
  .lab-metric-grid,
  .lab-check-grid,
  .lab-item-row {
    grid-template-columns: 1fr;
  }

  .lab-invoice-head {
    display: grid;
  }

  .lab-invoice-head > div:last-child {
    text-align: left;
  }

  .lab-actions .btn,
  .lab-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media print {
  body.lab-printing header,
  body.lab-printing main > *:not(.lab-print-source),
  body.lab-printing footer,
  body.lab-printing .scroll-top-btn,
  body.lab-printing .lab-actions,
  body.lab-printing .site-header {
    display: none !important;
  }

  body.lab-printing {
    background: #fff !important;
    color: #0f172a !important;
  }

  body.lab-printing .lab-print-area {
    display: block !important;
    border: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
    color: #0f172a !important;
  }

  body.lab-printing .lab-print-source {
    display: block !important;
    padding: 0 !important;
  }

  body.lab-printing .lab-tool-layout {
    display: block !important;
    max-width: none !important;
    padding: 0 !important;
  }

  body.lab-printing .lab-card,
  body.lab-printing .lab-result-card > h2,
  body.lab-printing .lab-result-main,
  body.lab-printing .lab-metric-grid,
  body.lab-printing .lab-insight,
  body.lab-printing .lab-output {
    display: none !important;
  }

  body.lab-printing .lab-result-card {
    display: block !important;
    position: static !important;
    border: 0 !important;
    box-shadow: none !important;
    background: #fff !important;
    padding: 0 !important;
  }
}

/* =================================================
   RYNXDigital Portfolio Gallery
   Clean optimized version
   Purpose: Hero â†’ Selected Work â†’ Screenshot Grid â†’ Live Preview Modal â†’ CTA
   Replace the old portfolio CSS block with this one.
================================================= */

/* -------------------------------
   Portfolio Hero
-------------------------------- */

.portfolio-gallery-hero {
  padding-top: 96px;
  padding-bottom: 50px;
}

.portfolio-gallery-hero-inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.portfolio-gallery-hero .breadcrumb,
.portfolio-gallery-hero .hero-actions {
  justify-content: center;
}

.portfolio-gallery-hero h1,
.portfolio-gallery-hero p {
  margin-left: auto;
  margin-right: auto;
}

.portfolio-gallery-hero h1 {
  max-width: 900px;
  font-weight: 800;
  letter-spacing: -0.055em;
}

.portfolio-gallery-hero p {
  max-width: 720px;
  font-weight: 400;
}


/* -------------------------------
   Selected Work Grid
-------------------------------- */

.portfolio-showcase-section {
  padding-top: 46px;
}

.portfolio-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 28px;
  align-items: stretch;
}

.showcase-card {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.showcase-preview {
  width: 100%;
  flex: 0 0 auto;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.showcase-browser {
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 0%, rgba(37, 99, 235, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.045);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.showcase-card:hover .showcase-browser {
  transform: translateY(-8px);
  border-color: rgba(24, 200, 255, 0.32);
  box-shadow: 0 30px 90px rgba(37, 99, 235, 0.16);
}


/* -------------------------------
   Browser Top Bar
-------------------------------- */

.showcase-topbar,
.modal-browser-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.showcase-topbar {
  height: 54px;
  padding: 0 18px;
  background: rgba(5, 8, 22, 0.76);
  border-bottom: 1px solid var(--line);
}

.showcase-topbar span,
.modal-browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.showcase-topbar span:nth-child(1),
.modal-browser-top span:nth-child(1) {
  background: #ff5f57;
}

.showcase-topbar span:nth-child(2),
.modal-browser-top span:nth-child(2) {
  background: #ffbd2e;
}

.showcase-topbar span:nth-child(3),
.modal-browser-top span:nth-child(3) {
  background: #28c840;
}

.showcase-topbar small,
.modal-browser-top small {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}


/* -------------------------------
   Preview Screens
-------------------------------- */

.showcase-screen {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 34px;
}

/* Use this when you add real screenshots later */
.showcase-screen img,
.showcase-shot {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
}

/* Visual background variants */
.orchel-showcase {
  background:
    radial-gradient(circle at 20% 0%, rgba(85, 240, 163, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(124, 60, 255, 0.12));
}

.tools-showcase {
  background:
    radial-gradient(circle at 20% 0%, rgba(24, 200, 255, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(124, 60, 255, 0.14));
}

.rental-showcase {
  background:
    radial-gradient(circle at 20% 0%, rgba(124, 60, 255, 0.2), transparent 34%),
    linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(24, 200, 255, 0.10));
}

.company-showcase {
  background:
    radial-gradient(circle at 20% 0%, rgba(37, 99, 235, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.84), rgba(124, 60, 255, 0.22));
}


/* -------------------------------
   Preview Card Components
-------------------------------- */

.showcase-site-card {
  width: min(390px, 100%);
  min-height: 210px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.12), transparent 34%),
    rgba(5, 8, 22, 0.78);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
}

.showcase-site-card small {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563EB, #7C3CFF);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.showcase-site-card strong {
  display: block;
  max-width: 320px;
  color: #fff;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.showcase-site-card span {
  display: block;
  margin-top: 16px;
  color: rgba(248, 250, 252, 0.72);
  font-size: 14px;
  font-weight: 400;
}


/* Tool preview block */

.showcase-tool-grid {
  width: min(390px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-self: center;
}

.showcase-tool-grid div {
  min-height: 128px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(5, 8, 22, 0.72);
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
}


/* Mini app preview block */

.mini-app-phone {
  width: min(230px, 100%);
  min-height: 310px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: rgba(5, 8, 22, 0.82);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.28);
}

.mini-app-phone div {
  width: 64px;
  height: 64px;
  border-radius: 22px;
  background: linear-gradient(135deg, #2563EB, #7C3CFF);
}

.mini-app-phone strong {
  color: #fff;
  font-size: 24px;
  line-height: 1.1;
  text-align: center;
  font-weight: 700;
}

.mini-app-phone span {
  color: rgba(248, 250, 252, 0.72);
  text-align: center;
  font-size: 13px;
  font-weight: 400;
}


/* -------------------------------
   Project Text Below Preview
-------------------------------- */

.showcase-info {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 18px;
  padding: 20px 6px 0;
}

.showcase-info h3 {
  min-height: 58px;
  margin: 0;
  color: var(--text);
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.04em;
  font-weight: 700;
}

.showcase-info p {
  min-height: 50px;
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 400;
}

.showcase-action {
  align-self: start;
  margin-top: 6px;
  white-space: nowrap;
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
}


/* -------------------------------
   Live Preview Modal
-------------------------------- */

body.modal-open {
  overflow: hidden;
}

.portfolio-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
}

.portfolio-modal.open {
  display: block;
}

.portfolio-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.78);
  backdrop-filter: blur(12px);
}

.portfolio-modal-dialog {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  height: min(820px, calc(100vh - 42px));
  margin: 20px auto;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 0%, rgba(37, 99, 235, 0.18), transparent 34%),
    var(--bg-soft);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.42);
}

.portfolio-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.portfolio-modal-header span {
  display: block;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portfolio-modal-header h3 {
  margin: 5px 0 0;
  color: var(--text);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 700;
}

.portfolio-modal-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.portfolio-modal-actions a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #2563EB, #7C3CFF);
  font-size: 13px;
  font-weight: 700;
}

.portfolio-modal-close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-card);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.portfolio-modal-browser {
  margin: 18px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 48px 1fr;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--bg);
}

.modal-browser-top {
  padding: 0 16px;
  background: rgba(15, 23, 42, 0.92);
  border-bottom: 1px solid var(--line);
}

#portfolioPreviewFrame {
  width: 100%;
  height: 100%;
  border: 0;
  background: #ffffff;
}

.portfolio-modal-note {
  margin: 0;
  padding: 0 22px 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}


/* -------------------------------
   Light Mode
-------------------------------- */

[data-theme="light"] .showcase-browser,
[data-theme="light"] .portfolio-modal-dialog {
  background:
    radial-gradient(circle at 18% 0%, rgba(37, 99, 235, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.94);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 24px 68px rgba(15, 23, 42, 0.10);
}

[data-theme="light"] .showcase-site-card,
[data-theme="light"] .showcase-tool-grid div,
[data-theme="light"] .mini-app-phone {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.10);
}

[data-theme="light"] .showcase-site-card strong,
[data-theme="light"] .showcase-tool-grid div,
[data-theme="light"] .mini-app-phone strong,
[data-theme="light"] .showcase-info h3 {
  color: #07111f;
}

[data-theme="light"] .showcase-site-card span,
[data-theme="light"] .mini-app-phone span {
  color: #536278;
}

[data-theme="light"] .portfolio-modal-close,
[data-theme="light"] .portfolio-modal-browser {
  color: #0F172A;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(15, 23, 42, 0.14);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}


/* -------------------------------
   Responsive
-------------------------------- */

@media (max-width: 980px) {
  .portfolio-showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-screen {
    min-height: 340px;
  }

  .showcase-info h3,
  .showcase-info p {
    min-height: auto;
  }
}

@media (max-width: 680px) {
  .portfolio-gallery-hero {
    padding-top: 72px;
  }

  .portfolio-gallery-hero-inner {
    text-align: left;
  }

  .portfolio-gallery-hero .breadcrumb,
  .portfolio-gallery-hero .hero-actions {
    justify-content: flex-start;
  }

  .portfolio-showcase-grid {
    gap: 34px;
  }

  .showcase-screen {
    min-height: 320px;
    padding: 22px;
  }

  .showcase-tool-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .showcase-tool-grid div {
    min-height: 96px;
    font-size: 18px;
  }

  .showcase-info {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 4px 0;
  }

  .showcase-info h3 {
    font-size: 26px;
  }

  .showcase-action {
    margin-top: 0;
  }

  .portfolio-modal-dialog {
    width: 100%;
    height: 100vh;
    margin: 0;
    border-radius: 0;
  }

  .portfolio-modal-header {
    align-items: flex-start;
    padding: 14px;
  }

  .portfolio-modal-actions a {
    display: none;
  }

  .portfolio-modal-browser {
    margin: 10px;
    border-radius: 18px;
  }

  .portfolio-modal-note {
    padding: 0 14px 14px;
  }
}

/* About Page Refresh */
.about-refresh .about-hero {
  padding-top: 72px;
  padding-bottom: 32px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
}

.about-refresh .about-hero h1 {
  max-width: 780px;
  font-size: clamp(42px, 5.8vw, 70px);
  line-height: 1.05;
  font-weight: 800;
}

.about-refresh .about-hero p {
  max-width: 680px;
  font-size: 17px;
}

.about-signal-panel,
.about-stat-card,
.about-status-card,
.about-build-card,
.about-compare-card,
.about-roadmap-grid article,
.about-product-grid a,
.about-timeline article {
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 16% 0%, rgba(37, 99, 235, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.about-signal-panel {
  border-radius: 28px;
  padding: 22px;
}

.about-signal-top {
  display: grid;
  gap: 10px;
}

.about-signal-top span,
.about-status-card strong,
.about-roadmap-grid span,
.about-product-grid span {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-signal-top strong {
  color: var(--text);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.about-signal-line {
  height: 1px;
  margin: 22px 0;
  background: var(--line);
}

.about-signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.about-signal-grid span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 600;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.about-stat-card,
.about-status-card,
.about-build-card,
.about-compare-card,
.about-roadmap-grid article,
.about-product-grid a,
.about-timeline article {
  border-radius: 22px;
  padding: 20px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.about-stat-card:hover,
.about-status-card:hover,
.about-product-grid a:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.42);
  box-shadow: 0 24px 62px rgba(37, 99, 235, 0.13);
}

.about-stat-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
}

.about-stat-card .about-stat-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
}

.about-stat-card strong {
  display: block;
  margin-top: 18px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 700;
}

.about-stat-card b {
  display: block;
  margin-top: 6px;
  color: var(--primary);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
}

.about-stat-card small {
  display: block;
  margin-top: 12px;
  font-size: 13px;
}

.about-stat-card small,
.about-status-card span,
.about-build-card p,
.about-compare-card li,
.about-roadmap-grid p,
.about-product-grid p,
.about-timeline h3,
.about-section-head p {
  color: var(--muted);
  line-height: 1.65;
  font-weight: 400;
}

.about-section {
  padding-top: 46px;
  padding-bottom: 46px;
}

.about-section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.about-section-head.center {
  margin-inline: auto;
  text-align: center;
}

.about-section-head h2 {
  margin: 10px 0 0;
  color: var(--text);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.about-section-head p {
  margin: 10px 0 0;
  font-size: 14px;
}

.about-status-grid,
.about-card-grid,
.about-roadmap-grid,
.about-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.about-status-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 92px;
}

.about-status-card strong {
  flex: 0 0 auto;
  border: 1px solid rgba(37, 99, 235, 0.26);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.10);
  padding: 7px 10px;
  line-height: 1;
}

.about-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-build-card {
  min-height: 190px;
}

.about-build-card span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-size: 13px;
  font-weight: 700;
}

.about-build-card h3,
.about-compare-card h3 {
  margin: 20px 0 8px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.16;
  font-weight: 700;
}

.about-build-card p,
.about-product-grid p,
.about-roadmap-grid p {
  margin: 0;
}

.about-compare-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-compare-card {
  padding: clamp(22px, 3vw, 30px);
}

.about-compare-card-featured {
  background:
    radial-gradient(circle at 18% 0%, rgba(124, 60, 255, 0.14), transparent 34%),
    rgba(255, 255, 255, 0.07);
}

.about-compare-card ul {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.about-compare-card li {
  position: relative;
  padding-left: 18px;
}

.about-compare-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
}

.about-roadmap-grid span,
.about-product-grid span {
  display: block;
  margin-bottom: 10px;
}

.about-product-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-timeline-wrap {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.about-timeline {
  position: relative;
  display: grid;
  gap: 12px;
}

.about-timeline::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 18px;
  width: 1px;
  background: var(--line);
}

.about-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
  padding-left: 50px;
}

.about-timeline article::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transform: translateY(-50%);
}

.about-timeline span {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
}

.about-timeline h3 {
  margin: 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
}

.about-final-cta {
  margin-top: 0;
}

[data-theme="light"] .about-signal-panel,
[data-theme="light"] .about-stat-card,
[data-theme="light"] .about-status-card,
[data-theme="light"] .about-build-card,
[data-theme="light"] .about-compare-card,
[data-theme="light"] .about-roadmap-grid article,
[data-theme="light"] .about-product-grid a,
[data-theme="light"] .about-timeline article {
  background:
    radial-gradient(circle at 16% 0%, rgba(37, 99, 235, 0.075), transparent 34%),
    rgba(255, 255, 255, 0.94);
  border-color: rgba(15, 23, 42, 0.13);
  box-shadow: 0 20px 52px rgba(15, 23, 42, 0.085);
}

[data-theme="light"] .about-signal-grid span,
[data-theme="light"] .about-status-card strong {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.20);
}

@media (max-width: 980px) {
  .about-hero-grid,
  .about-timeline-wrap,
  .about-compare-grid {
    grid-template-columns: 1fr;
  }

  .about-stat-grid,
  .about-status-grid,
  .about-card-grid,
  .about-roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .about-refresh .about-hero {
    padding-top: 58px;
    padding-bottom: 22px;
  }

  .about-refresh .about-hero h1 {
    font-size: clamp(38px, 13vw, 54px);
  }

  .about-section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .about-stat-grid,
  .about-status-grid,
  .about-card-grid,
  .about-roadmap-grid,
  .about-product-grid {
    grid-template-columns: 1fr;
  }

  .about-stat-card,
  .about-status-card,
  .about-build-card,
  .about-compare-card,
  .about-roadmap-grid article,
  .about-product-grid a,
  .about-timeline article,
  .about-signal-panel {
    border-radius: 20px;
    padding: 18px;
  }

  .about-build-card {
    min-height: auto;
  }

  .about-status-card {
    min-height: 82px;
  }

  .about-timeline article {
    grid-template-columns: 1fr;
    gap: 6px;
    padding-left: 44px;
  }
}
