:root {
  --black: #1c2020;
  --dark: #202829;
  --teal: #17899b;
  --orange: #ffad21;
  --cream: #f1f3ee;
  --white: #ffffff;
  --gray: #6d7472;
  --border: #d9ddd7;
  --teal-light: #e7f3f4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
}

a {
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}


/* HEADER */

.site-header {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -1px;
  text-decoration: none;
}

.brand span {
  color: var(--green);
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

nav a:hover {
  color: var(--green);
}


/* TYPOGRAPHY */

h1,
h2,
h3 {
  line-height: 1.12;
  margin-top: 0;
}

h1 {
  font-size: clamp(48px, 7vw, 78px);
  letter-spacing: -3px;
  margin-bottom: 25px;
}

h2 {
  font-size: clamp(34px, 5vw, 50px);
  letter-spacing: -2px;
  margin-bottom: 22px;
}

h3 {
  font-size: 23px;
  margin-bottom: 12px;
}

p {
  color: var(--gray);
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 20px;
}

.eyebrow.light {
  color: var(--tan);
}


/* HERO */

.hero {
  background: var(--cream);
  padding: 95px 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: center;
}

.hero-text {
  max-width: 650px;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 15px 23px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--black);
  color: white;
}

.button.secondary {
  border: 1px solid var(--black);
}

.button.white {
  background: white;
  color: var(--black);
}

.privacy-note {
  font-size: 13px;
  margin-top: 22px;
}


/* REAL APP SCREENSHOTS */

.hero-screenshot-wrap {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-screenshot {
  width: min(360px, 100%);
  border-radius: 38px;
  display: block;
  box-shadow:
    0 35px 70px rgba(0, 0, 0, .16),
    0 8px 20px rgba(0, 0, 0, .08);
  transform: rotate(2deg);
}

.screenshot-section {
  background: var(--cream);
  overflow: hidden;
}

.centered-heading {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.screenshot-showcase {
  max-width: 820px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 55px;
  align-items: start;
}

.screenshot-item img {
  width: 100%;
  display: block;
  border-radius: 32px;
  box-shadow: 0 25px 55px rgba(0, 0, 0, .13);
}

.screenshot-item-raised {
  margin-top: 70px;
}

.screenshot-caption {
  padding: 28px 8px 0;
}

.screenshot-caption h3 {
  margin-bottom: 7px;
}

.screenshot-caption p {
  margin-top: 0;
}


/* SECTIONS */

.section {
  padding: 100px 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 55px;
}

.section-heading > p {
  font-size: 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.feature-card {
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.feature-number {
  font-size: 12px;
  color: var(--green);
  font-weight: 800;
  margin-bottom: 35px;
}

.pro-section {
  background: var(--dark);
  color: white;
}

.pro-section p {
  color: #c7cbc8;
}

.pro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.pro-features {
  display: grid;
  gap: 20px;
}

.pro-item {
  display: flex;
  gap: 17px;
}

.pro-item > span {
  color: var(--tan);
  font-size: 20px;
  font-weight: 800;
}

.pro-item p {
  margin: 3px 0 0;
}

.privacy-section {
  background: var(--green-light);
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}

.text-link {
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}


/* CTA */

.cta {
  padding: 70px 0;
}

.cta-box {
  padding: 55px;
  border-radius: 15px;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-box h2 {
  margin: 0;
}


/* LEGAL + SUPPORT PAGES */

.page-hero {
  background: var(--cream);
  padding: 75px 0;
}

.page-hero h1 {
  font-size: clamp(42px, 6vw, 64px);
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 18px;
  max-width: 720px;
}

.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 75px 20px 110px;
}

.content-page h2 {
  font-size: 28px;
  letter-spacing: -1px;
  margin-top: 50px;
  margin-bottom: 15px;
}

.content-page h3 {
  margin-top: 30px;
}

.content-page li {
  margin-bottom: 8px;
  color: var(--gray);
}

.content-page a {
  color: var(--green);
}

.notice {
  padding: 22px;
  background: var(--green-light);
  border-left: 4px solid var(--green);
  margin: 30px 0;
}

.notice p {
  margin: 0;
}

.support-card {
  border: 1px solid var(--border);
  padding: 30px;
  border-radius: 12px;
  margin: 25px 0;
}

.support-card h3 {
  margin-top: 0;
}


/* FOOTER */

footer {
  background: var(--black);
  color: white;
  padding: 55px 0 25px;
}

footer p {
  color: #aaa;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand span {
  color: var(--tan);
}

.footer-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
}

.copyright {
  border-top: 1px solid #333;
  padding-top: 25px;
  margin-top: 40px;
  color: #888;
  font-size: 12px;
}


/* MOBILE */

@media (max-width: 800px) {

  nav a:first-child {
    display: none;
  }

  nav {
    gap: 15px;
  }

  .hero {
    padding: 65px 0;
  }

  .hero-screenshot {
    width: min(320px, 85%);
    transform: none;
  }

  .screenshot-showcase {
    grid-template-columns: 1fr;
    max-width: 360px;
    gap: 55px;
  }

  .screenshot-item-raised {
    margin-top: 0;
  }
  
  .hero-grid,
  .pro-grid,
  .privacy-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .app-preview {
    margin-top: 15px;
  }

  .cta-box,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 70px 0;
  }

  h1 {
    letter-spacing: -2px;
  }
}
