@import url('https://fonts.googleapis.com/css2?family=Fraunces:wght@600;700&family=Manrope:wght@400;600;700;800&display=swap');

:root {
  --ink: #102033;
  --muted: #58708a;
  --paper: #fffdf8;
  --surface: #ffffff;
  --line: rgba(16, 32, 51, 0.12);
  --blue: #2f79e8;
  --green: #24a875;
  --coral: #ec6f5b;
  --gold: #f3c667;
  --shadow: 0 24px 70px rgba(16, 32, 51, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(47, 121, 232, 0.12), rgba(36, 168, 117, 0.08) 44%, rgba(236, 111, 91, 0.1)),
    var(--paper);
}

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

p {
  color: var(--muted);
  line-height: 1.62;
}

.site-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px;
}

.site-header {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(47, 121, 232, 0.18);
}

.brand-name {
  font-family: 'Fraunces', serif;
  font-size: 24px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

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

.button,
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 800;
}

.button {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(16, 32, 51, 0.18);
}

.text-button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.hero {
  min-height: calc(100vh - 112px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
  gap: 38px;
  align-items: center;
  padding: 38px 0 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Fraunces', serif;
}

h1 {
  max-width: 11ch;
  font-size: clamp(48px, 7vw, 82px);
  line-height: 0.97;
}

h2 {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.04;
}

h3 {
  font-size: 21px;
}

.hero-copy {
  max-width: 62ch;
  margin-top: 20px;
  font-size: 18px;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.product-visual {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.phone {
  width: min(320px, 86vw);
  min-height: 610px;
  padding: 18px;
  border: 1px solid rgba(16, 32, 51, 0.14);
  border-radius: 42px;
  background: #111823;
  box-shadow: var(--shadow);
}

.screen {
  min-height: 574px;
  padding: 20px;
  border-radius: 28px;
  background: linear-gradient(180deg, #f7fbff, #fffaf2);
}

.app-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.app-lockup img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.screen-title {
  margin-top: 28px;
  font-family: 'Fraunces', serif;
  font-size: 34px;
  line-height: 1.04;
}

.checkin-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.checkin-row {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.checkin-row strong {
  display: block;
}

.checkin-row span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.composer {
  margin-top: 24px;
  padding: 14px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--green));
}

.composer p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
}

.section {
  padding: 58px 0;
  border-top: 1px solid rgba(16, 32, 51, 0.08);
}

.section-lede {
  max-width: 66ch;
  margin: 14px 0 0;
  font-size: 17px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.card,
.step,
.pricing-panel,
.content-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 12px 34px rgba(16, 32, 51, 0.08);
}

.card,
.step {
  padding: 20px;
}

.card p,
.step p {
  margin-bottom: 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.step-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
}

.pricing-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  margin-top: 24px;
  background: var(--line);
}

.price-column {
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
}

.price {
  margin: 14px 0 4px;
  font-family: 'Fraunces', serif;
  font-size: 38px;
  line-height: 1;
}

.small {
  margin: 0;
  font-size: 14px;
}

.content-page {
  padding: 48px 0 70px;
}

.content-panel {
  max-width: 820px;
  padding: 34px;
}

.content-panel h1 {
  max-width: none;
  font-size: clamp(38px, 5vw, 58px);
}

.content-panel h2 {
  margin-top: 28px;
  font-size: 26px;
}

.content-panel ul,
.content-panel ol {
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.62;
}

.support-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin: 22px 0;
}

.email-link {
  font-weight: 800;
  color: var(--blue);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 30px 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 700;
}

@media (max-width: 860px) {
  .site-header,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 24px;
  }

  .product-visual {
    min-height: 0;
  }

  .phone {
    min-height: 520px;
  }

  .screen {
    min-height: 484px;
  }

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

@media (max-width: 520px) {
  .site-shell {
    padding: 14px;
  }

  .nav {
    font-size: 13px;
  }

  h1 {
    font-size: 46px;
  }

  .content-panel {
    padding: 24px;
  }
}
