:root {
  --ink: #111b19;
  --muted: #5e6966;
  --paper: #f7f5ef;
  --surface: #ffffff;
  --line: #dce2de;
  --green: #184f42;
  --green-bright: #80d8b0;
  --green-pale: #dff4e9;
  --gold: #d8ac57;
  --shadow: 0 30px 80px rgba(17, 27, 25, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .75rem 1rem;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  width: 100%;
  min-height: 92px;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 0;
  background: var(--paper);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--green-bright);
  font-size: .7rem;
  letter-spacing: -.02em;
}

.logo-brand {
  min-width: 0;
  line-height: 0;
}

.brand-logo {
  width: 190px;
  height: 82px;
  object-fit: contain;
}

.site-header nav,
footer nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-header nav a,
footer nav a {
  color: var(--muted);
  font-size: .88rem;
  font-weight: 650;
  text-decoration: none;
}

.site-header nav a:hover,
footer nav a:hover {
  color: var(--green);
}

.site-header .nav-cta {
  padding: .7rem 1rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
}

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 690px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 5vw;
  align-items: center;
  padding: 5.5rem 0 6rem;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--green);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1 {
  max-width: 680px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.7rem, 6.5vw, 6rem);
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .96;
}

.hero-lede {
  max-width: 600px;
  margin: 1.7rem 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: .85rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 1.3rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 12px 30px rgba(24, 79, 66, .2);
}

.button-primary:hover {
  background: #0f3e33;
  box-shadow: 0 16px 35px rgba(24, 79, 66, .28);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, .45);
}

.button-secondary:hover {
  background: white;
}

.button-light {
  background: var(--green-bright);
  color: var(--ink);
}

.microcopy {
  margin: 1rem 0 0;
  color: #727b78;
  font-size: .76rem;
}

.app-screenshot {
  margin: 0;
}

.app-screenshot img {
  display: block;
  width: 100%;
  border: 1px solid rgba(17, 27, 25, .18);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.app-screenshot figcaption {
  margin-top: .8rem;
  color: var(--muted);
  font-size: .7rem;
  text-align: center;
}

.app-window {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 18px;
  background: #111817;
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1.5deg);
}

.window-bar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  background: #17201e;
}

.window-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3d4845;
}

.window-bar span:first-child {
  background: #cd7869;
}

.window-bar span:nth-child(2) {
  background: var(--gold);
}

.window-bar span:nth-child(3) {
  background: #62b88e;
}

.window-bar strong {
  margin-left: auto;
  color: #91a09c;
  font-size: .58rem;
  letter-spacing: .2em;
}

.dashboard {
  min-height: 430px;
  display: grid;
  grid-template-columns: 58px 1fr;
}

.dashboard-nav {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 26px;
  padding: 20px 0;
  border-right: 1px solid rgba(255, 255, 255, .07);
}

.nav-logo {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(128, 216, 176, .5);
  border-radius: 8px;
  color: var(--green-bright);
  font-size: .52rem;
  font-weight: 900;
}

.dashboard-nav i {
  width: 16px;
  height: 16px;
  border: 1px solid #66716e;
  border-radius: 5px;
  opacity: .5;
}

.dashboard-nav i.active {
  border-color: var(--green-bright);
  background: rgba(128, 216, 176, .15);
  opacity: 1;
}

.dashboard-content {
  padding: 30px;
}

.dashboard-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.dashboard-heading small,
.dashboard-cards small {
  display: block;
  margin-bottom: 7px;
  color: #798682;
  font-size: .55rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .12em;
}

.dashboard-heading b {
  color: white;
  font-family: Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
}

.dashboard-heading span {
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(128, 216, 176, .12);
  color: var(--green-bright);
  font-size: .62rem;
  font-weight: 800;
}

.chart {
  position: relative;
  height: 190px;
  margin: 25px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.chart-grid {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 44px, rgba(255, 255, 255, .05) 45px);
}

.chart svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.chart-line {
  fill: none;
  stroke: var(--green-bright);
  stroke-width: 3;
  vector-effect: non-scaling-stroke;
}

.chart-area {
  fill: url("#area");
}

.dashboard-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dashboard-cards div {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 10px;
  background: rgba(255, 255, 255, .025);
}

.dashboard-cards b {
  display: block;
  color: white;
  font-size: .92rem;
}

.dashboard-cards em {
  display: block;
  margin-top: 6px;
  color: var(--green-bright);
  font-size: .55rem;
  font-style: normal;
}

.dashboard-cards em.muted {
  color: #9ba5a2;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, .38);
}

.trust-strip p {
  min-height: 112px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-right: 1px solid var(--line);
  text-align: center;
}

.trust-strip p:last-child {
  border: 0;
}

.trust-strip strong {
  font-family: Georgia, serif;
  font-size: 1.12rem;
  font-weight: 500;
}

.trust-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-size: .72rem;
}

.section {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  padding: 8rem 0;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 4rem;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: 1.03;
}

.section-heading > p:last-child,
.privacy-card p,
.pricing-card > div > p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-grid article {
  min-height: 260px;
  padding: 2rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .2);
}

.feature-grid article:hover {
  background: rgba(255, 255, 255, .6);
}

.feature-number {
  color: var(--green);
  font-family: Georgia, serif;
  font-size: .85rem;
}

h3 {
  margin: 4rem 0 .85rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -.02em;
}

.feature-grid p,
.steps p,
.faq-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
}

.features-intro {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  margin-bottom: 4rem;
}

.features-intro .section-heading {
  margin-bottom: 0;
}

.features-intro-image {
  min-width: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features-intro-image img {
  display: block;
  width: 76%;
  max-width: 500px;
  margin-inline: auto;
  border: 1px solid rgba(17, 27, 25, .18);
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.features-intro-image figcaption {
  margin-top: .8rem;
  color: var(--muted);
  font-size: .7rem;
  text-align: center;
}

.privacy-section {
  padding: 1rem 20px;
}

.privacy-card {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 7vw;
  align-items: center;
  padding: clamp(3rem, 7vw, 7rem);
  border-radius: 26px;
  background: var(--green);
  color: white;
}

.privacy-card .eyebrow {
  color: var(--green-bright);
}

.privacy-card p {
  color: rgba(255, 255, 255, .7);
}

.privacy-card ul,
.price-box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.privacy-card li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
  font-size: .92rem;
}

.privacy-card li span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(128, 216, 176, .15);
  color: var(--green-bright);
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  gap: 1.2rem;
  padding: 2rem 2.5rem 2rem 0;
  border-top: 1px solid var(--ink);
}

.steps li > span {
  display: grid;
  flex: 0 0 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: white;
  color: var(--green);
  font-size: .75rem;
  font-weight: 900;
}

.steps h3 {
  margin: .2rem 0 .55rem;
}

.pricing-section {
  padding: 1rem 20px 8rem;
}

.pricing-card {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 7vw;
  align-items: center;
  padding: clamp(2.5rem, 6vw, 6rem);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: 0 25px 70px rgba(17, 27, 25, .07);
}

.price-box {
  padding: 2rem;
  border-radius: 18px;
  background: var(--paper);
}

.price-box > p {
  margin: 0;
}

.price-box s {
  color: #8c9492;
  font-size: 1rem;
}

.price-box strong {
  display: inline-block;
  margin-left: .5rem;
  font-family: Georgia, serif;
  font-size: 3.4rem;
  font-weight: 500;
}

.price-box > span {
  display: block;
  color: var(--muted);
  font-size: .78rem;
}

.price-box ul {
  margin: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.price-box li {
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: .85rem;
}

.price-box li::before {
  margin-right: .6rem;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.price-box .button {
  width: 100%;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.faq-grid details {
  min-height: 150px;
  padding: 2rem;
  background: var(--paper);
}

.faq-grid summary {
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 1.25rem;
}

.faq-grid p {
  padding-top: 1rem;
}

.closing {
  padding: 8rem 20px;
  background: var(--ink);
  color: white;
  text-align: center;
}

.closing .eyebrow {
  color: var(--green-bright);
}

.closing h2 {
  max-width: 850px;
  margin: 0 auto 2.5rem;
}

footer {
  min-height: 260px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 1rem 3rem;
  align-items: start;
  padding: 4rem max(20px, calc((100vw - 1180px) / 2));
  background: white;
  color: var(--ink);
}

.footer-brand {
  align-self: start;
}

.footer-logo {
  width: 230px;
  height: 112px;
}

footer p {
  margin: .5rem 0 0;
  color: var(--muted);
  font-size: .85rem;
}

footer nav {
  grid-row: 1 / 3;
  grid-column: 2;
}

footer small {
  align-self: end;
  color: #7c8683;
  font-size: .7rem;
}

@media (max-width: 900px) {
  .site-header nav > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 4rem;
  }

  .hero-copy {
    max-width: 700px;
  }

  .app-window {
    transform: none;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-intro {
    grid-template-columns: 1fr;
  }

  .features-intro .section-heading {
    max-width: 760px;
  }

  .privacy-card,
  .pricing-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .hero,
  .section {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 74px;
    padding-inline: 14px;
  }

  .brand-logo {
    width: 138px;
    height: 68px;
  }

  .site-header .nav-cta {
    padding: .6rem .8rem;
    font-size: .74rem;
  }

  .hero {
    min-height: auto;
    padding: 3.5rem 0 4rem;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 4.8rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .dashboard {
    grid-template-columns: 42px 1fr;
    min-height: 330px;
  }

  .dashboard-nav {
    gap: 18px;
  }

  .dashboard-content {
    padding: 20px 14px;
  }

  .chart {
    height: 135px;
  }

  .dashboard-cards div {
    padding: 10px 7px;
  }

  .dashboard-cards small {
    font-size: .44rem;
  }

  .dashboard-cards b {
    font-size: .72rem;
  }

  .trust-strip {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip p:nth-child(2) {
    border-right: 0;
  }

  .trust-strip p:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding: 6rem 0;
  }

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

  .feature-grid article {
    min-height: 220px;
  }

  .privacy-section,
  .pricing-section {
    padding-inline: 14px;
  }

  .privacy-card,
  .pricing-card {
    padding: 2.2rem 1.4rem;
    border-radius: 18px;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    width: 210px;
    height: 102px;
  }

  footer nav {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: .01ms !important;
  }
}
