@charset "UTF-8";
/* ===============================
   RESET
   =============================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===============================
   DESKTOP STYLES
   Elements are organized in order of appearance on screen
   =============================== */
/* ===============================
   CSS VARIABLES
   Global design tokens for colors, fonts, spacing
   =============================== */
:root {
  /* Layout */
  --page-max: 68rem;
  --page-pad: 6vw;
  --gap-1: 0.75rem;
  --gap-2: 1.25rem;
  --gap-3: 2rem;
  --gap-4: 3rem;
  --text-max: 38rem;
  /* Fonts */
  --font-roboto: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-worksans: "Work Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  /* Colors */
  --color-black: #000000;
  --color-primary: #30E3CA; /* mint / brand color */
  --color-white: #FAF7EE; /* warm off-white background */
  --color-gray: #2F3E46; /* dark slate / secondary text */
  --color-blue: #193D62;
}

/* ===============================
   BASE LAYOUT
   Page wrapper, container, body styles
   =============================== */
body {
  font-family: var(--font-roboto);
  color: var(--color-white);
  background-color: var(--color-blue);
}

.page {
  width: 100%;
  margin: 0;
  padding: 0;
}

.container {
  width: min(var(--page-max), 100%);
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

/* ===============================
   BACKGROUND BANDS
   Full-width gradient sections that wrap content
   =============================== */
.band {
  width: 100%;
}

/* Top band: wraps Nav, Hero, Features */
.band--top {
  background: linear-gradient(to bottom, #000000 0%, #0b1f3a 50%, #123a6f 100%);
}

/* Middle band: wraps Split Title, Tenants/Landlords, Footer legal */
.band--middle {
  padding-top: 7rem;
  padding-bottom: 0;
  background: linear-gradient(to bottom, #2F3E46 0%, #1c3f66 100%);
}

/* ===============================
   NAV
   Logo on left, About and Contact Us links on right
   =============================== */
.nav {
  padding-top: 5vh;
  padding-block: 2.5rem;
  /* Hamburger menu icon - hidden on desktop */
  /* Dropdown menu - hidden on desktop */
}
.nav__brand {
  flex-shrink: 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--gap-3);
}
.nav__spacer {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.nav__links {
  width: 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__link {
  cursor: pointer;
  line-height: 1;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--color-white);
}
.nav__menu {
  display: none;
}
.nav__dropdown {
  display: none;
}

.nav,
.quotes,
.footer {
  font-family: var(--font-worksans);
}

/* Brand logo */
.brand {
  display: flex;
  align-items: center;
  gap: var(--gap-2);
}
.brand__logo img {
  width: 200px;
  height: auto;
}
.brand__name {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
}

/* ===============================
   HERO
   Main headline, subheading, CTA button, phone mockup image
   =============================== */
.hero {
  padding-top: 3rem;
  padding-block: 2.5rem;
  /* Text content: headline, subhead, button */
  /* "Better Records for better renting" */
  /* Description paragraph */
  /* Emphasized text: "for everyone involved." */
  /* Button wrapper */
  /* "Join our waitlist!" button */
  /* Phone mockup image */
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}
.hero__content {
  max-width: var(--text-max);
}
.hero__headline {
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.hero__subhead {
  margin-top: var(--gap-2);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 34rem;
  text-align: justify;
}
.hero__emphasis {
  font-style: italic;
  font-size: 1.25rem;
  display: inline-block;
  margin-top: 0.75rem;
}
.hero__cta {
  margin-top: var(--gap-3);
}
.hero .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.2rem;
  border-radius: 0.4rem;
  font-weight: 700;
  user-select: none;
}
.hero .button--primary {
  background-color: var(--color-primary);
  color: var(--color-blue);
  font-size: 1.5rem;
}
.hero__visual {
  justify-self: end;
  align-self: start;
  overflow: hidden;
  width: clamp(22rem, 32vw, 34rem);
  height: clamp(20rem, 28vw, 26rem);
  margin-top: -1.25rem;
}
.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  display: block;
}

.quotes {
  color: var(--color-white);
}

/* ===============================
   FEATURES
   4 feature cards: Rental History, Lease Clarity, Issues Tracking, Communication
   =============================== */
.features {
  padding: 5rem 0;
  padding-block: 2.5rem;
}
.features__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap-3);
  align-items: start;
}

/* Individual feature card with icon and label */
.feature-card {
  display: grid;
  justify-items: center;
  gap: 0.75rem;
  text-align: center;
  padding-block: 0;
}
.feature-card__icon {
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card__icon img {
  max-height: 100%;
  width: auto;
}
.feature-card__label {
  font-weight: 700;
}

/* ===============================
   SPLIT TITLE
   "Designed for both sides, beyond property management."
   =============================== */
.split-title {
  padding-block: 2.5rem;
}
.split-title__text {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 48rem;
  display: flex;
  justify-content: center;
  text-align: center;
  margin-inline: auto;
}

/* ===============================
   TENANTS / LANDLORDS SPLIT
   Two columns showing benefits for tenants and landlords
   =============================== */
.split {
  padding-block: 2.5rem;
  /* Each column (Tenants or Landlords) */
  /* Icon and title (e.g., Tenants icon + "Tenants") */
  /* Dark card containing bullet points */
}
.split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-4);
  align-items: start;
}
.split__col {
  display: grid;
  justify-items: center;
}
.split__header, .split__box {
  width: 100%;
  max-width: 34rem;
  margin-inline: auto;
}
.split__header {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.35rem;
  margin-bottom: var(--gap-2);
}
.split__header-icon img {
  width: clamp(44px, 4vw, 56px);
  height: auto;
  display: block;
}
.split__header-title {
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}
.split__box {
  margin-top: 0;
  padding: 2rem 2.25rem;
  border-radius: 0.6rem;
  background: rgba(0, 0, 0, 0.18);
  display: grid;
  gap: 0.9rem;
}

/* Bullet point items in Tenants/Landlords boxes */
.bullet {
  line-height: 1.5;
  position: relative;
  padding-left: 1.25rem;
}
.bullet::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0.1em;
  font-size: 1.2em;
}

/* ===============================
   FOOTER
   Legal disclaimer and copyright bar
   =============================== */
.footer {
  text-align: center;
  margin-top: 3rem;
  background: transparent;
  font-size: 0.95rem;
  /* Legal disclaimer text */
  /* Full-width gray copyright bar */
}
.footer__inner {
  margin-inline: auto;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
  text-align: center;
}
.footer__legal {
  width: 100%;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-top: 5rem;
  color: var(--color-primary);
}
.footer__bar {
  width: 100%;
  background: var(--color-gray);
  padding: 1.5rem 0;
}
.footer__copyright {
  text-align: center;
  color: var(--color-white);
}

/* ===============================
   ===============================
   RESPONSIVE STYLES
   ===============================
   =============================== */
/* ===============================
   MEDIUM SCREENS (screen width ≤ 820px)
   =============================== */
@media (max-width: 820px) {
  /* Hide desktop-only line break earlier */
  .br-desktop {
    display: none;
  }
}
/* ===============================
   TABLET & MOBILE (screen width ≤ 720px)
   =============================== */
@media (max-width: 720px) {
  /* Reduce container padding */
  :root {
    --page-pad: 3rem;
  }
  /* ----- BAND (gradient background) ----- */
  .band--top {
    padding-top: 0;
    background: transparent;
  }
  /* ----- NAV ----- */
  .nav {
    padding-block: 1.25rem;
    padding-top: 1.25rem;
  }
  /* Hide desktop nav links */
  .nav__links {
    display: none;
  }
  .nav__spacer {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 0.75rem;
    position: relative;
  }
  /* Show hamburger menu icon */
  .nav__menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
  }
  /* Dropdown menu (appears when hamburger is tapped) */
  .nav__dropdown {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 0.4rem;
    padding: 2.5rem 2rem 1.5rem;
    flex-direction: column;
    gap: 2.5rem;
    min-width: 10rem;
    z-index: 100;
  }
  .nav__dropdown.is-open {
    display: flex;
  }
  .nav__dropdown .nav__link {
    display: block;
    text-align: left;
    white-space: nowrap;
  }
  /* ----- HERO ----- */
  .hero {
    padding-top: 0.75rem;
  }
  /* Center all hero text */
  .hero__content,
.hero__headline,
.hero__subhead,
.hero__cta {
    text-align: center;
  }
  .hero__headline {
    margin-top: 1.5rem;
  }
  /* Overlay layout: phone as background, text on top */
  .hero__inner {
    position: relative;
    display: block;
    min-height: 28rem;
    /* Gradient overlay (transparent → black) on top of phone */
  }
  .hero__inner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: calc(100% + 5rem);
    background: linear-gradient(to bottom, transparent 0%, #000000 50%);
    z-index: 2;
    pointer-events: none;
  }
  /* Phone image as background layer, cropped to 60% */
  .hero__visual {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 22rem;
    height: 60%;
    overflow: hidden;
    z-index: 1;
  }
  .hero__visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center top;
  }
  /* Text/button positioned on top of phone and gradient */
  .hero__content {
    position: relative;
    z-index: 3;
    padding-top: 14rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-inline: auto;
  }
  /* ----- FEATURES ----- */
  .features {
    padding-top: 5rem; /* 2.5rem spacing + 2.5rem to clear gradient */
  }
  /* 2 features per row */
  .features__inner {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-2);
  }
  /* Smaller feature icons */
  .feature-card {
    justify-items: center;
    align-items: center;
  }
  .feature-card__icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  .feature-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .feature-card__label {
    font-size: 0.9rem;
  }
  /* ----- SPLIT TITLE ----- */
  .split-title {
    margin-top: -4rem;
  }
  /* ----- TENANTS / LANDLORDS SPLIT ----- */
  /* Stack vertically: Tenants on top, Landlords below */
  .split__inner {
    grid-template-columns: 1fr;
  }
}
/* ===============================
   SMALL MOBILE (screen width ≤ 540px)
   =============================== */
@media (max-width: 540px) {
  /* ----- BANDS ----- */
  .band,
.band--top,
.band--middle {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
  }
  /* ----- CONTAINER ----- */
  .container {
    padding-inline: 1.5rem;
    max-width: 100%;
  }
  /* ----- HERO ----- */
  /* Smaller phone crop window */
  .hero__visual {
    max-width: 18rem;
    height: 16rem;
    margin: 0.25rem auto 0;
  }
  .hero__visual img {
    width: 115%;
    height: 115%;
  }
  /* Smaller headline */
  .hero__headline {
    font-size: 2.2rem;
  }
  .hero__subhead {
    font-size: 0.95rem;
  }
}
/* ===============================
   EXTRA SMALL MOBILE (screen width ≤ 400px)
   Ensures CTA button is visible on page load
   =============================== */
@media (max-width: 400px) {
  /* ----- CONTAINER ----- */
  .container {
    padding-inline: 1rem;
  }
  /* ----- HERO ----- */
  /* Reduce space above headline */
  .hero__content {
    padding-top: 10rem;
  }
  /* Smaller headline */
  .hero__headline {
    font-size: 1.8rem;
  }
  /* Smaller phone crop window */
  .hero__visual {
    max-width: 14rem;
    height: 12rem;
  }
  /* Smaller CTA button */
  .hero .button--primary {
    font-size: 1.2rem;
    padding: 0.7rem 1rem;
  }
  /* ----- SPLIT TITLE ----- */
  .split-title {
    margin-top: -4rem;
  }
  .split-title__text {
    font-size: 1.4rem;
  }
  /* ----- FOOTER ----- */
  .footer__legal {
    font-size: 0.75rem;
  }
}

/*# sourceMappingURL=styles.css.map */
