/**
 * Regios Discounts landing — Linear-style SaaS
 * Primary: dark blue. No DashCore dependency for this page.
 */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

.rd-landing {
  --rd-primary: #002366;
  --rd-primary-light: #003380;
  --rd-primary-dark: #001a4d;
  --rd-bg: #ffffff;
  --rd-bg-subtle: #f8fafc;
  --rd-bg-muted: #f1f5f9;
  --rd-text: #0f172a;
  --rd-text-muted: #475569;
  --rd-text-muted-2: #64748b;
  --rd-border: #e2e8f0;
  --rd-radius: 12px;
  --rd-radius-lg: 16px;
  --rd-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  --rd-shadow-lg: 0 4px 24px -4px rgba(0, 0, 0, 0.08), 0 8px 16px -8px rgba(0, 0, 0, 0.04);
  --rd-font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --rd-container: min(1200px, 100% - 48px);
  font-family: var(--rd-font-sans);
  color: var(--rd-text);
  background: var(--rd-bg);
  line-height: 1.6;
}

.rd-landing *,
.rd-landing *::before,
.rd-landing *::after {
  box-sizing: border-box;
}

/* Nav bar */
.rd-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--rd-border);
}

.rd-nav-inner {
  max-width: var(--rd-container);
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.rd-nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--rd-primary);
  flex-shrink: 0;
  min-width: 0;
}

.rd-nav-logo {
  height: 32px;
  width: auto;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}

.rd-nav-brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.rd-nav-brand:hover {
  color: var(--rd-primary-dark);
}

.rd-nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.rd-nav-links a {
  color: var(--rd-text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.15s ease;
}

.rd-nav-links a:hover {
  color: var(--rd-text);
}

.rd-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--rd-primary);
  color: #fff !important;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease;
}

.rd-nav-cta:hover {
  background: var(--rd-primary-dark);
  color: #fff;
}

.rd-nav-toggle {
  display: none !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0 -8px 0 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  border-radius: 8px;
  color: var(--rd-text-muted);
}
.rd-nav-toggle:hover {
  color: var(--rd-text);
  background: var(--rd-bg-muted, #f1f5f9);
}
.rd-nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.rd-nav-is-open .rd-nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.rd-nav-is-open .rd-nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.rd-nav-is-open .rd-nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
  .rd-nav-inner {
    flex-wrap: wrap;
    width: 100%;
  }
  .rd-nav-brand {
    flex-shrink: 1;
    min-width: 0;
  }
  .rd-nav-brand-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .rd-nav-toggle {
    display: flex !important;
    order: 2;
    flex-shrink: 0;
  }
  .rd-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 20px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid var(--rd-border);
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1);
  }
  .rd-nav-is-open .rd-nav-links {
    display: flex;
  }
  .rd-nav-links a {
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid #f1f5f9;
  }
  .rd-nav-links a:last-of-type {
    border-bottom: none;
  }
  .rd-nav-links .rd-nav-cta {
    justify-content: center;
    margin-top: 8px;
    padding: 12px 24px;
  }
}

/* Hero — compact so screenshot starts above the fold */
.rd-hero {
  padding: 100px 24px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.rd-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0, 35, 102, 0.03), transparent),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0, 35, 102, 0.015), transparent);
  pointer-events: none;
}

.rd-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(12, 74, 110, 0.08);
  color: var(--rd-primary);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 24px;
}

.rd-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--rd-text);
  max-width: 720px;
  margin: 0 auto 20px;
}

.rd-hero p {
  font-size: 1.25rem;
  color: var(--rd-text-muted);
  max-width: 720px;
  margin: 0 auto 24px;
}

.rd-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--rd-primary);
  color: #fff;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 35, 102, 0.3);
}

.rd-hero-cta:hover {
  background: var(--rd-primary-dark);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0, 35, 102, 0.35);
}

.rd-hero-stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--rd-border);
}

/* Hero screenshot — prominent above the fold (Granola / Evernote / Paper style) */
.rd-hero-screenshot {
  padding: 0 24px 48px;
  margin-top: -8px;
}

.rd-hero-screenshot-inner {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 40px -8px rgba(0, 0, 0, 0.15), 0 20px 48px -16px rgba(0, 0, 0, 0.1);
  background: var(--rd-bg-muted);
}

.rd-hero-screenshot-inner img {
  width: 100%;
  height: auto;
  display: block;
}

.rd-hero-stars {
  display: flex;
  gap: 4px;
  align-items: center;
}

.rd-hero-star {
  display: block;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e2e8f0'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.rd-hero-star--full {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23f59e0b'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}

/* 5th star: 50% filled via gradient */
.rd-hero-star--last {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%23f59e0b'/%3E%3Cstop offset='50%25' stop-color='%23f59e0b'/%3E%3Cstop offset='50%25' stop-color='%23e2e8f0'/%3E%3Cstop offset='100%25' stop-color='%23e2e8f0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z' fill='url(%23g)'/%3E%3C/svg%3E");
}

.rd-hero-stat-rating {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 1rem;
}

.rd-hero-stat-value {
  font-weight: 700;
  color: var(--rd-text);
}

.rd-hero-stat-sep {
  color: var(--rd-text-muted);
  font-weight: 400;
}

.rd-hero-stat-reviews {
  color: var(--rd-text-muted);
  font-weight: 500;
}

/* Section common */
.rd-section {
  padding: 80px 24px;
  max-width: var(--rd-container);
  margin: 0 auto;
}

.rd-section-head {
  text-align: center;
  margin-bottom: 48px;
}

.rd-section--narrow .rd-section-head {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.rd-section-label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--rd-primary);
  margin-bottom: 12px;
}

.rd-section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--rd-text);
  margin: 0;
}

/* Dark section: one full-width band, no overlapping (head + features aligned) */
.rd-section--dark-head {
  max-width: none;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  box-sizing: border-box;
  background: #0f172a;
  padding: 64px 24px 80px;
}

.rd-section--dark-head .rd-section-head {
  margin-left: 0;
  margin-right: 0;
  padding: 0 0 48px;
  background: transparent;
}

.rd-section-title--linear {
  font-size: clamp(1.25rem, 2.25vw, 1.625rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.rd-section-title-lead {
  font-weight: 700;
  color: #fff;
}

.rd-section-title-rest {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
}

/* Features grid */
.rd-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.rd-feature-card {
  padding: 28px;
  background: var(--rd-bg);
  border: 1px solid var(--rd-border);
  border-radius: var(--rd-radius-lg);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.rd-feature-card:hover {
  border-color: rgba(0, 35, 102, 0.25);
  box-shadow: var(--rd-shadow-lg);
}

.rd-feature-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 35, 102, 0.1);
  color: var(--rd-primary);
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 18px;
}

.rd-feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--rd-text);
}

.rd-feature-card p {
  font-size: 15px;
  color: var(--rd-text-muted);
  margin: 0;
  line-height: 1.6;
}

/* Features with vertical dividers (Linear-style), dark theme */
.rd-features--divided {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  max-width: var(--rd-container);
  margin-left: auto;
  margin-right: auto;
}

.rd-features--divided .rd-feature-card {
  padding: 24px 32px;
  background: transparent;
  border: none;
  border-radius: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.rd-features--divided .rd-feature-card:first-child {
  border-left: none;
}

.rd-features--divided .rd-feature-card:hover {
  box-shadow: none;
}

.rd-features--divided .rd-feature-icon {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.rd-features--divided .rd-feature-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.rd-features--divided .rd-feature-card p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 768px) {
  .rd-features--divided {
    grid-template-columns: 1fr;
  }

  .rd-features--divided .rd-feature-card {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 24px 0;
  }

  .rd-features--divided .rd-feature-card:first-child {
    border-top: none;
  }
}

/* Product showcase (image + text) */
.rd-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 24px;
  max-width: var(--rd-container);
  margin: 0 auto;
}

@media (max-width: 900px) {
  .rd-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .rd-showcase.reverse {
    direction: rtl;
  }
  .rd-showcase.reverse > * {
    direction: ltr;
  }
}

.rd-showcase-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--rd-text);
}

.rd-showcase-content p {
  color: var(--rd-text-muted);
  margin: 0;
  font-size: 1.0625rem;
}

.rd-showcase-image {
  border-radius: var(--rd-radius-lg);
  overflow: hidden;
  box-shadow: var(--rd-shadow-lg);
  background: var(--rd-bg-muted);
}

.rd-showcase-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Pricing */
.rd-pricing {
  padding-bottom: 80px;
}

.rd-pricing .rd-section-lead {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.rd-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 960px;
  margin: 0 auto 32px;
}

.rd-pricing-card {
  background: var(--rd-bg-subtle);
  border: 1px solid var(--rd-border);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rd-pricing-card--highlight {
  background: var(--rd-bg);
  border-color: var(--rd-primary);
  box-shadow: 0 0 0 1px var(--rd-primary);
}

.rd-pricing-plan {
  font-size: 1rem;
  font-weight: 600;
  color: var(--rd-fg);
  margin: 0 0 12px;
}

.rd-pricing-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--rd-primary);
  background: rgba(0, 35, 102, 0.1);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  vertical-align: middle;
}

.rd-pricing-price {
  margin-bottom: 4px;
}

.rd-pricing-amount {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--rd-fg);
}

.rd-pricing-period {
  font-size: 0.9375rem;
  color: var(--rd-muted);
  font-weight: 400;
}

.rd-pricing-note {
  font-size: 0.8125rem;
  color: var(--rd-muted);
  margin: 0 0 20px;
}

.rd-pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.rd-pricing-features li {
  font-size: 0.9375rem;
  color: var(--rd-fg-muted);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}

.rd-pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rd-primary);
}

.rd-pricing-cta {
  display: inline-block;
  padding: 10px 18px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--rd-fg);
  background: transparent;
  border: 1px solid var(--rd-border);
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.rd-pricing-cta:hover {
  border-color: var(--rd-fg-muted);
  color: var(--rd-fg);
}

.rd-pricing-cta--primary {
  background: var(--rd-primary);
  border-color: var(--rd-primary);
  color: #fff;
}

.rd-pricing-cta--primary:hover {
  background: var(--rd-primary-dark, #0d6b4a);
  border-color: var(--rd-primary-dark, #0d6b4a);
  color: #fff;
}

.rd-pricing-disclaimer {
  font-size: 0.8125rem;
  color: var(--rd-muted);
  text-align: center;
  max-width: 480px;
  margin: 0 auto;
}

.rd-pricing-disclaimer a {
  color: var(--rd-primary);
  text-decoration: none;
}

.rd-pricing-disclaimer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .rd-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Trusted by / logos */
.rd-logos {
  background: var(--rd-bg-subtle);
  padding: 80px 24px;
}

.rd-logos .rd-section-lead {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.rd-logos-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 48px;
  max-width: 900px;
  margin: 0 auto 24px;
}

.rd-logo-slot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 56px;
  background: var(--rd-bg);
  border: 1px dashed var(--rd-border);
  border-radius: 8px;
  color: var(--rd-text-muted);
  font-size: 13px;
  font-weight: 500;
}

.rd-logo-slot img {
  max-height: 32px;
  max-width: 100px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.8;
}

.rd-logos-note {
  font-size: 0.875rem;
  color: var(--rd-text-muted);
  text-align: center;
  margin: 0;
}

.rd-logos-note a {
  color: var(--rd-primary);
  text-decoration: none;
}

.rd-logos-note a:hover {
  text-decoration: underline;
}

/* Testimonials */
.rd-testimonials {
  padding: 80px 24px;
  background: var(--rd-bg);
}

.rd-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.rd-testimonial-card {
  padding: 28px 24px;
  background: var(--rd-bg-subtle);
  border: 1px solid var(--rd-border);
  border-radius: var(--rd-radius-lg);
  margin: 0;
  display: flex;
  flex-direction: column;
}

.rd-testimonial-quote {
  font-size: 0.9375rem;
  color: var(--rd-text);
  line-height: 1.6;
  margin: 0 0 20px;
  flex: 1;
}

.rd-testimonial-meta {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--rd-border);
}

.rd-testimonial-name {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--rd-text);
  font-style: normal;
}

.rd-testimonial-role {
  display: block;
  font-size: 0.8125rem;
  color: var(--rd-text-muted);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .rd-testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Use cases */
.rd-use-cases {
  padding-bottom: 80px;
  border-top: 1px solid var(--rd-border);
}

.rd-use-cases .rd-section-lead {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.rd-use-cases-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.rd-use-case-item {
  padding: 24px;
  background: var(--rd-bg-subtle);
  border: 1px solid var(--rd-border);
  border-radius: var(--rd-radius);
}

.rd-use-case-item h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--rd-text);
}

.rd-use-case-item p {
  font-size: 0.9375rem;
  color: var(--rd-text-muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .rd-use-cases-list {
    grid-template-columns: 1fr;
  }
}

/* Feature blocks (Linear-style: heading + description + large screenshot, dividers, gradient on image) */
.rd-feature-blocks {
  background: #0f172a;
  padding: 80px 24px 96px;
  width: 100%;
  box-sizing: border-box;
}

.rd-feature-block {
  max-width: var(--rd-container);
  margin-left: auto;
  margin-right: auto;
}

.rd-feature-block-head {
  margin-bottom: 48px;
}

.rd-feature-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.rd-feature-block-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
  margin: 0;
}

.rd-feature-block-body p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0 0 16px;
}

.rd-feature-block-body p:last-of-type {
  margin-bottom: 12px;
}

.rd-feature-block-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.rd-feature-block-bullets li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 6px;
}

.rd-feature-block-bullets li::before {
  content: "·";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
}

.rd-feature-block-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.rd-feature-block-link:hover {
  color: #fff;
}

/* Large screenshot with gradient/shadow (CSS-only “glow” so image feels lifted) */
.rd-feature-block-screenshot {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px -16px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.rd-feature-block-screenshot-glow {
  position: absolute;
  inset: -60px;
  pointer-events: none;
  background: radial-gradient(ellipse 85% 70% at 50% 50%, transparent 55%, rgba(15, 23, 42, 0.08) 90%, rgba(15, 23, 42, 0.18) 100%);
  z-index: 1;
}

.rd-feature-block-screenshot img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

/* Divider between feature blocks */
.rd-feature-block-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  max-width: var(--rd-container);
  margin: 48px auto 80px;
}

@media (max-width: 900px) {
  .rd-feature-block-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Team */
.rd-team {
  padding: 80px 24px;
}

.rd-team-inner {
  max-width: 720px;
  margin: 0 auto;
}

.rd-team-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 32px;
  background: var(--rd-bg);
  border: 1px solid var(--rd-border);
  border-radius: var(--rd-radius-lg);
  align-items: center;
}

@media (max-width: 600px) {
  .rd-team-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.rd-team-photo {
  width: 200px;
  height: 200px;
  border-radius: var(--rd-radius);
  object-fit: cover;
  background: var(--rd-bg-muted);
}

.rd-team-name {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--rd-text);
}

.rd-team-role {
  font-size: 13px;
  color: var(--rd-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.rd-team-quote {
  font-size: 1rem;
  color: var(--rd-text-muted);
  margin: 0 0 16px;
  line-height: 1.6;
}

.rd-team-quote p {
  margin: 0 0 12px;
}

.rd-team-quote p:last-child {
  margin-bottom: 0;
}

.rd-team-quote a {
  color: var(--rd-primary);
  font-weight: 500;
  text-decoration: underline;
}

.rd-team-quote a:hover {
  color: var(--rd-primary-dark);
}

.rd-team-links {
  display: flex;
  gap: 16px;
}

.rd-team-links a {
  color: var(--rd-text-muted);
  font-size: 20px;
  transition: color 0.2s ease;
}

.rd-team-links a:hover {
  color: var(--rd-primary);
}

/* CTA block */
.rd-cta-block {
  padding: 80px 24px;
  text-align: center;
  background: var(--rd-primary-dark);
  color: #fff;
}

.rd-cta-block h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
}

.rd-cta-block p {
  color: #fff;
  margin: 0 0 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
}

.rd-cta-block .rd-hero-cta {
  background: #fff;
  color: var(--rd-primary-dark);
}

.rd-cta-block .rd-hero-cta:hover {
  background: var(--rd-bg-subtle);
  color: var(--rd-primary-dark);
}

.rd-cta-block-subtext {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 48px 0 0;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer strip for landing */
/* Utility: hide when inside rd-landing so we don't double-nav */
.rd-landing .rd-hide-nav-spacer {
  height: 72px;
}
