/* ════════════════════════════════════════════════════
   RHINOLINE SHARED DESIGN TOKENS
   Common to every landing page (lawn, future verticals, main site).
   Sourced from Figma "Simple Design System – Optik".
   ════════════════════════════════════════════════════ */
:root {
  /* brand gradient (CTA buttons, header pill) */
  --rl-gradient: linear-gradient(90deg, #6440f9 0%, #ff00a5 100%);

  /* core palette */
  --rl-bg: #fafafa;
  --rl-bg-translucent: rgba(250, 250, 250, 0.96);
  --rl-text: #2C2F37;
  --rl-text-on-brand: #f3f3f3;
  --rl-green: #00ba85;
  --rl-border: #d9d9d9;

  /* accent gradients used on headline copy */
  --rl-gradient-teal: linear-gradient(90deg, #00ad9c 0%, #00da9c 100%);

  /* type */
  --rl-font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --rl-title-page-size: clamp(2rem, 6vw, 3rem);
  --rl-title-hero-size: clamp(4rem, 8vw, 5.5rem);
  --rl-heading-size: 1.5rem;
  --rl-body-size: 1rem;

  /* radius / shadow */
  --rl-radius-card: 30px;
  --rl-radius-input: 8px;
  --rl-radius-pill: 48px;
  --rl-shadow-card: 0px 3px 10px rgba(0, 0, 0, 0.1);

  /* spacing scale (sds sizing) */
  --rl-space-200: 8px;
  --rl-space-300: 12px;
  --rl-space-400: 16px;
}

/* shared resets, reused by every landing page */
.rl-page * {
  box-sizing: border-box;
}
.rl-page {
  margin: 0;
  font-family: var(--rl-font);
  color: var(--rl-text);
  background: var(--rl-bg);
}
.rl-page img {
  display: block;
  max-width: 100%;
}

/* gradient CTA button, identical across all landing pages */
.rl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--rl-space-200);
  padding: var(--rl-space-300) 20px;
  border: none;
  border-radius: var(--rl-radius-input);
  background: var(--rl-gradient);
  color: var(--rl-text-on-brand);
  font-weight: 600;
  font-size: var(--rl-body-size);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.rl-btn--pill {
  border-radius: var(--rl-radius-pill);
}

/* shared footer, reused on every landing page so they all link back consistently */
.rl-footer {
  border-top: 1px solid var(--rl-border);
  background: var(--rl-bg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.rl-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.rl-footer__top img {
  width: 40px;
  height: 24px;
  object-fit: contain;
}
.rl-footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
}
.rl-footer__social img {
  width: 24px;
  height: 24px;
}
.rl-footer__links {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.rl-footer__link-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rl-footer__link-list a {
  color: var(--rl-text);
  text-decoration: none;
  font-size: var(--rl-body-size);
}
.rl-footer__link-list a:hover {
  text-decoration: underline;
}
.rl-footer__copy {
  font-size: var(--rl-body-size);
  opacity: 0.8;
}
