/* =============================================================
   RefReflect Lite — Landing page
   Modern SaaS style. Self-contained: does NOT rely on Tabler.
   ============================================================= */

:root {
  --ll-bg: #ffffff;
  --ll-bg-tint: #f7f8fb;
  --ll-ink: #0b0e1a;
  --ll-ink-2: #1f2333;
  --ll-muted: #555a6b;
  --ll-muted-2: #8a8fa3;
  --ll-line: #e7e9ef;
  --ll-line-strong: #d0d3dc;
  --ll-brand: #6366f1;
  --ll-brand-2: #0ea5e9;
  --ll-brand-3: #a855f7;
  --ll-success: #10b981;
  --ll-amber: #f59e0b;
  --ll-rose: #f43f5e;
  --ll-shadow-sm: 0 1px 2px rgba(11, 14, 26, .06), 0 1px 3px rgba(11, 14, 26, .04);
  --ll-shadow-md: 0 10px 24px -8px rgba(11, 14, 26, .12), 0 4px 10px -4px rgba(11, 14, 26, .08);
  --ll-shadow-lg: 0 30px 60px -20px rgba(11, 14, 26, .25), 0 18px 36px -18px rgba(11, 14, 26, .15);
  --ll-radius-sm: 8px;
  --ll-radius: 14px;
  --ll-radius-lg: 22px;
  --ll-font: 'Inter var', 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI",
             Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body.landing {
  font-family: var(--ll-font);
  font-feature-settings: "ss01", "cv11";
  color: var(--ll-ink);
  background: var(--ll-bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

.ll-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) {
  .ll-container { padding: 0 32px; }
}

/* ====== Buttons ====== */
.ll-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  padding: 12px 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease,
              color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.ll-btn-sm { padding: 9px 14px; font-size: 13px; border-radius: 8px; }
.ll-btn-lg { padding: 15px 22px; font-size: 15px; border-radius: 12px; }

.ll-btn-primary {
  background: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
  color: #fff;
  box-shadow: 0 6px 18px -6px rgba(99, 102, 241, .55),
              inset 0 1px 0 rgba(255, 255, 255, .2);
}
.ll-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -8px rgba(99, 102, 241, .6),
              inset 0 1px 0 rgba(255, 255, 255, .2);
}

.ll-btn-ghost {
  background: transparent;
  color: var(--ll-ink);
  border-color: var(--ll-line-strong);
}
.ll-btn-ghost:hover {
  background: var(--ll-bg-tint);
  border-color: var(--ll-ink);
}
.ll-btn-ghost-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .04);
}
.ll-btn-ghost-light:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .45);
}

/* ====== Nav ====== */
.ll-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background-color .25s ease, backdrop-filter .25s ease,
              border-color .25s ease, padding .25s ease;
  border-bottom: 1px solid transparent;
}
.ll-nav.is-scrolled {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom-color: var(--ll-line);
  padding: 12px 0;
}
.ll-nav-inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.ll-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
  letter-spacing: -.01em;
  flex: 0 0 auto;
}

/* Oval-cropped logo capsule — works in nav and footer. The source PNG is
   roughly 3:1 ratio with a blue background, so a radius of 999px renders
   as a clean horizontal oval/pill. */
.ll-brand-logo,
.ll-footer-logo {
  display: inline-flex;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  background: #3a64a4; /* matches the logo's existing blue, hides edges on AA */
  box-shadow: 0 2px 8px -2px rgba(0, 0, 0, .25),
              inset 0 0 0 1px rgba(255, 255, 255, .08);
  transition: transform .2s ease, box-shadow .2s ease;
}
.ll-brand-logo:hover { transform: translateY(-1px); }
.ll-brand-logo img,
.ll-footer-logo img {
  height: 100%;
  width: auto;
  display: block;
  /* Crop the source image slightly so the rounded ends don't clip wordmark text. */
  object-fit: cover;
  object-position: center;
}
.ll-footer-logo { height: 36px; }

.ll-nav-links {
  display: none;
  margin-left: 32px;
  gap: 28px;
  flex: 1;
}
.ll-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .8);
  transition: color .2s ease;
}
.ll-nav-links a:hover { color: #fff; }
.ll-nav.is-scrolled .ll-nav-links a {
  color: var(--ll-muted);
}
.ll-nav.is-scrolled .ll-nav-links a:hover { color: var(--ll-ink); }

.ll-nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}
.ll-nav-signin {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, .85);
}
.ll-nav-signin:hover { color: #fff; }
.ll-nav.is-scrolled .ll-nav-signin { color: var(--ll-ink-2); }
.ll-nav.is-scrolled .ll-nav-signin:hover { color: var(--ll-brand); }

@media (min-width: 900px) {
  .ll-nav-links { display: flex; }
}

/* ====== Hero ====== */
.ll-hero {
  position: relative;
  padding: 160px 0 80px;
  background: radial-gradient(ellipse at top, #1a1f3a 0%, #0b0e1a 60%);
  color: #fff;
  overflow: hidden;
}
.ll-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.ll-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
}
.ll-orb-1 {
  width: 480px;
  height: 480px;
  top: -120px;
  left: -120px;
  background: radial-gradient(circle, #6366f1 0%, transparent 70%);
}
.ll-orb-2 {
  width: 560px;
  height: 560px;
  top: 60px;
  right: -160px;
  background: radial-gradient(circle, #0ea5e9 0%, transparent 70%);
  opacity: .45;
}
.ll-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center top, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center top, #000 30%, transparent 75%);
}

.ll-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ll-notice {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto 32px;
  padding: 14px 20px;
  text-align: left;
  background: rgba(245, 158, 11, .12);
  border: 1px solid rgba(245, 158, 11, .35);
  border-radius: var(--ll-radius);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ll-notice svg {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--ll-amber);
}
.ll-notice-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .9);
}
.ll-notice-text strong {
  color: #fff;
  font-weight: 600;
}
.ll-notice-text a {
  color: #fdba74;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ll-notice-text a:hover { color: #fff; }

.ll-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .01em;
  color: rgba(255, 255, 255, .85);
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
}
.ll-eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 12px #10b981;
}

.ll-hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.04;
  margin: 0 0 22px;
  color: #fff;
}
.ll-gradient-text {
  background: linear-gradient(120deg, #a5b4fc 0%, #67e8f9 50%, #f0abfc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.ll-hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(255, 255, 255, .72);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.55;
}

.ll-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}

.ll-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .65);
}
.ll-hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ll-hero-meta-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}
.ll-dot-green { background: #10b981; }
.ll-dot-blue { background: #0ea5e9; }
.ll-dot-orange { background: #f59e0b; }

/* ====== Hero dashboard preview ====== */
.ll-hero-preview-wrap {
  position: relative;
  z-index: 1;
  margin-top: 72px;
}
.ll-hero-preview {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--ll-radius-lg);
  overflow: hidden;
  box-shadow: 0 60px 120px -20px rgba(0, 0, 0, .6),
              0 30px 60px -20px rgba(99, 102, 241, .25);
  backdrop-filter: blur(20px);
  transform: perspective(1800px) rotateX(6deg);
  transform-origin: center top;
}
.ll-preview-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, .04);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.ll-preview-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
}
.ll-preview-dot:nth-child(1) { background: #ef4444aa; }
.ll-preview-dot:nth-child(2) { background: #f59e0baa; }
.ll-preview-dot:nth-child(3) { background: #10b981aa; }
.ll-preview-url {
  margin-left: auto;
  margin-right: auto;
  font-family: 'SF Mono', ui-monospace, monospace;
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  padding: 4px 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 6px;
}
.ll-preview-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 360px;
  background: rgba(8, 10, 20, .6);
}
.ll-preview-side {
  border-right: 1px solid rgba(255, 255, 255, .06);
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ll-preview-side-item {
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  font-weight: 500;
}
.ll-preview-side-item.active {
  background: rgba(99, 102, 241, .18);
  color: #c7d2fe;
  border: 1px solid rgba(99, 102, 241, .35);
}
.ll-preview-main {
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.ll-preview-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.ll-preview-stat {
  padding: 16px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 12px;
}
.ll-preview-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 8px;
}
.ll-preview-stat-value {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ll-pill {
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 999px;
}
.ll-pill-green { background: rgba(16, 185, 129, .15); color: #34d399; }
.ll-preview-spark {
  margin-top: 12px;
  height: 36px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(99, 102, 241, .25) 50%, transparent 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .03) 0 1px, transparent 1px 24px);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}
.ll-preview-spark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 36' preserveAspectRatio='none'><polyline points='0,28 20,22 40,24 60,18 80,20 100,14 120,16 140,10 160,12 180,6 200,8' fill='none' stroke='%236366f1' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat center / 100% 100%;
  opacity: .9;
}
.ll-preview-spark-2::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 36' preserveAspectRatio='none'><polyline points='0,24 20,20 40,22 60,16 80,18 100,12 120,14 140,8 160,10 180,4 200,6' fill='none' stroke='%2310b981' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}
.ll-preview-spark-3::after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 36' preserveAspectRatio='none'><polyline points='0,12 20,16 40,14 60,20 80,18 100,22 120,16 140,24 160,20 180,28 200,22' fill='none' stroke='%23f59e0b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.ll-preview-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ll-preview-list-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 10px;
}
.ll-preview-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex: 0 0 32px;
}
.ll-avatar-1 { background: linear-gradient(135deg, #6366f1, #a855f7); }
.ll-avatar-2 { background: linear-gradient(135deg, #10b981, #0ea5e9); }
.ll-avatar-3 { background: linear-gradient(135deg, #f59e0b, #f43f5e); }
.ll-preview-list-meta { flex: 1; min-width: 0; }
.ll-preview-list-title {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, .9);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ll-preview-list-sub {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .45);
}
.ll-rating {
  font-size: 12px;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 6px;
  color: #fff;
  flex: 0 0 auto;
}
.ll-rating-1 { background: linear-gradient(135deg, #10b981, #059669); }
.ll-rating-2 { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.ll-rating-3 { background: linear-gradient(135deg, #f59e0b, #d97706); }

@media (max-width: 700px) {
  .ll-preview-body { grid-template-columns: 1fr; min-height: 0; }
  .ll-preview-side { display: none; }
  .ll-preview-row { grid-template-columns: 1fr; }
  .ll-hero-preview { transform: none; }
}

/* ====== Sections ====== */
.ll-section {
  padding: 100px 0;
  background: var(--ll-bg);
}
.ll-section-tint { background: var(--ll-bg-tint); }

.ll-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.ll-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--ll-brand);
  margin-bottom: 14px;
  padding: 5px 12px;
  background: rgba(99, 102, 241, .08);
  border-radius: 999px;
}
.ll-section-title {
  font-size: clamp(1.8rem, 3.6vw, 2.7rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 18px;
  color: var(--ll-ink);
}
.ll-section-sub {
  font-size: 1.0625rem;
  color: var(--ll-muted);
  margin: 0;
  line-height: 1.6;
}

/* ====== Feature grid ====== */
.ll-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .ll-feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .ll-feature-grid { grid-template-columns: repeat(3, 1fr); }
}

.ll-feature {
  background: #fff;
  border: 1px solid var(--ll-line);
  border-radius: var(--ll-radius);
  padding: 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.ll-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, .25), transparent);
  opacity: 0;
  transition: opacity .3s ease;
}
.ll-feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--ll-shadow-md);
  border-color: var(--ll-line-strong);
}
.ll-feature:hover::before { opacity: 1; }

.ll-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 8px 18px -6px rgba(0, 0, 0, .15);
}
.ll-icon-indigo  { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.ll-icon-emerald { background: linear-gradient(135deg, #10b981, #059669); }
.ll-icon-amber   { background: linear-gradient(135deg, #f59e0b, #d97706); }
.ll-icon-blue    { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.ll-icon-orange  { background: linear-gradient(135deg, #f97316, #ea580c); }
.ll-icon-rose    { background: linear-gradient(135deg, #f43f5e, #e11d48); }

.ll-feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ll-ink);
  margin: 0 0 10px;
}
.ll-feature-desc {
  font-size: 0.95rem;
  color: var(--ll-muted);
  margin: 0 0 16px;
  line-height: 1.55;
}
.ll-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 1px solid var(--ll-line);
  padding-top: 16px;
}
.ll-feature-list li {
  font-size: 0.875rem;
  color: var(--ll-ink-2);
  position: relative;
  padding-left: 22px;
}
.ll-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>")
    center / 60% no-repeat,
    linear-gradient(135deg, #6366f1, #0ea5e9);
}

/* ====== Roles ====== */
.ll-role-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 992px) {
  .ll-role-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}
.ll-role {
  background: #fff;
  border: 1px solid var(--ll-line);
  border-radius: var(--ll-radius);
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ll-role:hover {
  transform: translateY(-4px);
  box-shadow: var(--ll-shadow-md);
}
.ll-role-featured {
  background: linear-gradient(160deg, #0b0e1a 0%, #1a1f3a 100%);
  border-color: rgba(99, 102, 241, .4);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ll-role-featured::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(99, 102, 241, .35) 0%, transparent 70%);
  pointer-events: none;
}
.ll-role-featured .ll-role-title { color: #fff; }
.ll-role-featured .ll-role-list { color: rgba(255, 255, 255, .85); }

.ll-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 11px;
  background: var(--ll-bg-tint);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ll-ink-2);
  margin-bottom: 16px;
}
.ll-role-featured .ll-role-badge {
  background: rgba(255, 255, 255, .08);
  color: #fff;
}
.ll-role-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.ll-role-title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -.015em;
  margin: 0 0 22px;
  color: var(--ll-ink);
}
.ll-role-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--ll-ink-2);
  font-size: 0.95rem;
  position: relative;
}
.ll-role-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ll-role-list svg {
  color: #6366f1;
  flex: 0 0 auto;
}
.ll-role-featured .ll-role-list svg { color: #67e8f9; }

/* ====== Value section ====== */
.ll-value-section {
  background: var(--ll-bg);
}
.ll-value-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .ll-value-grid { grid-template-columns: 5fr 7fr; gap: 64px; }
}
.ll-value-text .ll-section-label { margin-bottom: 16px; }
.ll-value-title {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 16px;
}
.ll-value-sub {
  font-size: 1rem;
  color: var(--ll-muted);
  margin: 0 0 22px;
  line-height: 1.65;
}
.ll-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--ll-brand);
  font-size: 14px;
  transition: gap .2s ease;
}
.ll-link-arrow:hover { gap: 14px; color: #4f46e5; }

.ll-value-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 600px) {
  .ll-value-cards { grid-template-columns: 1fr; }
}
.ll-value-card {
  background: var(--ll-bg-tint);
  border: 1px solid var(--ll-line);
  border-radius: var(--ll-radius);
  padding: 22px 22px 20px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ll-value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ll-shadow-md);
  background: #fff;
}
.ll-value-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 14px;
}
.ll-value-card h4 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 0 0 6px;
  color: var(--ll-ink);
}
.ll-value-card p {
  font-size: 0.875rem;
  color: var(--ll-muted);
  margin: 0;
  line-height: 1.55;
}

/* ====== CTA section ====== */
.ll-cta {
  padding: 60px 0 100px;
  background: var(--ll-bg);
}
.ll-cta-card {
  background: linear-gradient(135deg, #0b0e1a 0%, #1e1b4b 50%, #1a1f3a 100%);
  border-radius: 28px;
  padding: 64px 32px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(11, 14, 26, .35);
}
.ll-cta-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99, 102, 241, .4) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}
.ll-cta-title {
  position: relative;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin: 0 0 16px;
  color: #fff;
}
.ll-cta-sub {
  position: relative;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .72);
  max-width: 580px;
  margin: 0 auto 30px;
  line-height: 1.6;
}
.ll-cta-buttons {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ====== Footer ====== */
.ll-footer {
  background: #0b0e1a;
  color: rgba(255, 255, 255, .55);
  padding: 56px 0 28px;
}
.ll-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin-bottom: 32px;
}
@media (min-width: 700px) {
  .ll-footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.ll-footer-brand .ll-brand-word { color: #fff; }
.ll-footer-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, .45);
  margin: 6px 0 0;
}
.ll-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 14px;
}
.ll-footer-links a {
  color: rgba(255, 255, 255, .65);
  transition: color .2s;
}
.ll-footer-links a:hover { color: #fff; }
.ll-footer-base {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .35);
  flex-wrap: wrap;
  gap: 12px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001s !important;
    transition-duration: .001s !important;
  }
  .ll-hero-preview { transform: none; }
}
