@charset "UTF-8";
/*
  Rentelya marketing site — shared stylesheet for index.html, privacy.html
  and terms.html.

  Standalone on purpose: this is NOT the app's compiled assets/app.css (a
  53KB stylesheet built for the portal screens). Bunny serves site/ as flat
  files with no build step, so this file is committed as-authored — there is
  nothing to compile.

  Brand colours are hand-copied from tailwind.config.js's brand-*/accent-*/
  key-* ramps, because tailwind.config.js's `content` globs do not include
  site/, so this page cannot consume the ramp directly. Keep these two files
  in sync by hand if the ramp ever changes.
*/

:root {
  /* Navy — tailwind.config.js `brand-*`. brand-600 is the exact logo navy. */
  --navy-900: #091c31;
  --navy-800: #0e2743;
  --navy-700: #123156;
  --navy-600: #173b66;
  --navy-500: #2b5387;
  --navy-200: #adc2d9;
  --navy-100: #d5e0ed;
  --navy-50:  #eef3f9;

  /* Teal — tailwind.config.js `accent-*`. accent-500 is the exact logo teal. */
  --teal:     #2bb49e; /* accent-500 */
  --teal-600: #219684; /* accent-600 */
  --teal-400: #34bfa6; /* accent-400 — AA-safe teal for small text on navy */
  --teal-100: #c7f0e8; /* accent-100 */
  --teal-50:  #e9f9f6; /* accent-50 */

  /* Amber — tailwind.config.js `key-*`. The keyhole in the mark; used
     sparingly elsewhere as a flag for text the site owner still has to fill in. */
  --amber-100: #f9e6bc; /* key-100 */
  --amber-ink: #855b0f; /* key-700 — placeholder-badge text, ~5.1:1 on amber-100 */

  --ink:      #14213a;
  --ink-2:    #4a5a73;
  --ink-3:    #7b8aa1;
  --rule:     #dfe6ef;
  --white:    #ffffff;
  --sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;
  --measure:    34rem;
  --measure-lg: 42rem; /* long-form legal copy reads better a touch wider */
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

.shell { width: 100%; max-width: 72rem; margin: 0 auto; padding: 0 1.5rem; }

a { color: inherit; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 3px; }

.skip {
  position: absolute; left: -9999px;
}
.skip:focus {
  left: 1rem; top: 1rem; z-index: 50;
  background: var(--white); color: var(--navy-600);
  padding: .6rem 1rem; border-radius: .5rem; font-weight: 600;
}

/* ---------- header ---------- */
.masthead {
  position: sticky; top: 0; z-index: 40;
  background: var(--navy-600);
}
.masthead .shell {
  display: flex; align-items: center; gap: 1rem;
  height: 4.25rem;
}
.wordmark {
  display: flex; align-items: center; gap: .6rem;
  text-decoration: none; margin-right: auto;
}
.wordmark span {
  font-size: 1.15rem; font-weight: 700; letter-spacing: -.015em; color: var(--white);
}
.masthead nav { display: none; gap: 2rem; }
.masthead nav a {
  color: var(--navy-100); text-decoration: none; font-size: .9rem; font-weight: 500;
}
.masthead nav a:hover { color: var(--white); }
@media (min-width: 56rem) { .masthead nav { display: flex; } }

/* Small, secondary "existing user" link — deliberately not a filled button,
   so the primary action (Request access) is unambiguous. */
.link-quiet {
  color: var(--navy-100);
  font-size: .875rem; font-weight: 600;
  text-decoration: none;
  padding: .6rem .25rem;
  border-radius: .3rem;
  white-space: nowrap;
}
.link-quiet:hover { color: var(--white); text-decoration: underline; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .7rem 1.15rem;
  border-radius: .55rem; font-size: .925rem; font-weight: 600;
  text-decoration: none; border: 1px solid transparent;
  transition: background-color .15s, color .15s, border-color .15s;
  white-space: nowrap;
}
.btn-teal  { background: var(--teal); color: #05231d; }
.btn-teal:hover { background: var(--teal-400); }
.btn-ghost { border-color: rgba(255,255,255,.28); color: var(--white); }
.btn-ghost:hover { border-color: rgba(255,255,255,.6); }
.btn-navy  { background: var(--navy-600); color: var(--white); }
.btn-navy:hover { background: var(--navy-700); }
.btn-lg { padding: .85rem 1.5rem; font-size: 1rem; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy-600);
  background-image: linear-gradient(140deg, var(--navy-600) 0%, var(--navy-700) 55%, var(--navy-900) 100%);
  color: var(--white);
  padding: clamp(3.5rem, 9vw, 7rem) 0 clamp(4rem, 10vw, 8rem);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .13;
  background-image:
    linear-gradient(to right, #fff 1px, transparent 1px),
    linear-gradient(to bottom, #fff 1px, transparent 1px);
  background-size: 56px 56px;
}
.hero::after {
  content: ""; position: absolute;
  right: -10rem; top: -10rem; width: 34rem; height: 34rem;
  border-radius: 50%; background: rgba(43,180,158,.16); filter: blur(80px);
}
.hero .shell { position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; color: var(--teal-400);
  margin: 0 0 1.25rem;
}
.eyebrow::before {
  content: ""; width: 1.75rem; height: 2px; background: var(--teal);
}
h1 {
  margin: 0;
  font-size: clamp(2.15rem, 5.6vw, 3.9rem);
  line-height: 1.06; letter-spacing: -.028em; font-weight: 700;
  max-width: 18ch; text-wrap: balance;
}
.hero p.lede {
  margin: 1.5rem 0 0; max-width: var(--measure);
  font-size: clamp(1.05rem, 2vw, 1.2rem); color: var(--navy-100);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2.25rem; }
.hero-note { margin: 1.5rem 0 0; font-size: .875rem; color: var(--navy-200); }
.hero-note + .hero-note { margin-top: .5rem; }
.hero-note a { color: var(--white); text-decoration: underline; text-underline-offset: 2px; }
.hero-note a:hover { color: var(--teal-400); }

/* ---------- audiences ---------- */
.audiences { background: var(--navy-50); border-bottom: 1px solid var(--rule); }
.audiences .shell { padding-top: 4.5rem; padding-bottom: 4.5rem; }
.grid-2 { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 46rem) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

.card {
  background: var(--white); border: 1px solid var(--rule);
  border-radius: .875rem; padding: 1.6rem;
}
.card h3 { margin: 1rem 0 .5rem; font-size: 1.075rem; letter-spacing: -.01em; }
.card p  { margin: 0; font-size: .95rem; color: var(--ink-2); }
.chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: .625rem;
  background: var(--teal-50); color: var(--teal-600);
}

/* ---------- sections ---------- */
section { scroll-margin-top: 5rem; }
.band { padding: clamp(4rem, 8vw, 6rem) 0; }
.section-head { max-width: var(--measure); margin-bottom: 3rem; }
h2 {
  margin: 0; font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  line-height: 1.15; letter-spacing: -.022em; text-wrap: balance;
}
.section-head p { margin: 1rem 0 0; color: var(--ink-2); }

.features { display: grid; gap: 2.25rem 3rem; grid-template-columns: 1fr; }
@media (min-width: 46rem) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 68rem) { .features { grid-template-columns: repeat(3, 1fr); } }
.feature h3 {
  margin: 0 0 .4rem; font-size: 1rem; letter-spacing: -.005em;
  padding-top: .9rem; border-top: 2px solid var(--navy-600);
}
.feature p { margin: 0; font-size: .935rem; color: var(--ink-2); }

/* ---------- trust / ownership ---------- */
.split { background: var(--navy-800); color: var(--white); }
.split .inner { display: grid; gap: 3rem; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 56rem) { .split .inner { grid-template-columns: 1.05fr .95fr; gap: 4.5rem; } }
.split h2 { color: var(--white); }
.split p { color: var(--navy-100); }
.proof {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: .875rem; padding: 1.5rem;
}
.proof dl { margin: 0; display: grid; gap: 1.1rem; }
.proof dt {
  font-size: .7rem; font-weight: 600; letter-spacing: .09em;
  text-transform: uppercase; color: var(--teal-400);
}
.proof dd { margin: .3rem 0 0; font-size: .95rem; color: var(--navy-100); }

/* ---------- closing cta / pricing ---------- */
.cta { background: var(--teal-50); border-top: 1px solid var(--teal-100); }
.cta .shell {
  /* Longhands only — letting .shell's own padding: 0 1.5rem keep supplying
     the horizontal gutter. A shorthand here (`padding: X 0`) previously
     zeroed it below 544px. */
  padding-top: clamp(3.5rem, 7vw, 5rem);
  padding-bottom: clamp(3.5rem, 7vw, 5rem);
  text-align: center;
}
.cta h2 { max-width: 24ch; margin: 0 auto; }
.cta p { margin: 1rem auto 0; max-width: var(--measure); color: var(--ink-2); }
.cta .hero-actions { justify-content: center; }

/* ---------- legal document pages ---------- */
.doc-head { background: var(--navy-50); border-bottom: 1px solid var(--rule); }
.doc-head .shell { padding: clamp(2.5rem, 6vw, 4rem) 1.5rem clamp(2rem, 5vw, 3rem); }
.doc-head h1 {
  margin: 0; max-width: none;
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  line-height: 1.15; letter-spacing: -.02em; color: var(--navy-700);
}
.meta-line { margin: .9rem 0 0; font-size: .875rem; color: var(--ink-3); }
.doc-intro { margin: .75rem 0 0; max-width: var(--measure-lg); font-size: 1.05rem; color: var(--ink-2); }

.legal { max-width: var(--measure-lg); margin: 0 auto; }
.legal h2 {
  margin: 2.5rem 0 .75rem; font-size: 1.3rem; line-height: 1.3;
  letter-spacing: -.01em; color: var(--ink);
}
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--ink-2); }
.legal p { margin: 0 0 1rem; }
.legal ul { margin: 0 0 1rem; padding-left: 1.25rem; }
.legal li { margin: .4rem 0; }
.legal a { color: var(--navy-600); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--teal-600); }
.legal strong { color: var(--ink); }

.data-table { display: grid; gap: 1rem; margin: 1rem 0 1.5rem; }
.data-row { border-left: 3px solid var(--teal); padding: .05rem 0 .05rem 1rem; }
.data-row dt { font-weight: 700; color: var(--ink); font-size: .95rem; }
.data-row dd { margin: .25rem 0 0; color: var(--ink-2); font-size: .95rem; }

/* A token the site owner still has to replace — [COMPANY NAME]-style. Kept
   legible on both the dark footer and the light legal-page body because it
   sets its own background/text pair rather than inheriting either. */
.placeholder {
  display: inline-block;
  background: var(--amber-100);
  color: var(--amber-ink);
  border-radius: .3rem;
  padding: .05rem .45rem;
  font-weight: 700;
  font-size: .92em;
}

/* ---------- footer ---------- */
footer { background: var(--navy-900); color: var(--navy-200); font-size: .9rem; }
footer .shell {
  padding: 2.75rem 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1.25rem 2rem; align-items: center;
}
footer a {
  color: var(--navy-100); text-decoration: none;
  display: inline-block; padding: .55rem 0;
}
footer a:hover { color: var(--white); text-decoration: underline; }
footer .spacer { margin-left: auto; }
