@font-face {
  font-family: "Lato-Bold";
  src: url("/Lato-Bold.ttf");
}

:root {
  --bg: #f7fbf8;
  --surface: #ffffff;
  --surface-soft: #edf6f1;
  --ink: #203937;
  --muted: #58706c;
  --line: #c9dcd4;
  --green: #356f63;
  --blue: #2d5872;
  --coral: #c86f55;
  --gold: #d6a64c;
  --shadow: 0 22px 60px rgba(32, 57, 55, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(237, 246, 241, 0.9), rgba(247, 251, 248, 0.35) 42%),
    var(--bg);
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
}

header, main, footer {
  width: min(1080px, 92vw);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0 30px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 44px;
}

nav a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Lato-Bold, Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1;
}

.wordmark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
}

h1, h2, h3 {
  font-family: Lato-Bold, Arial, sans-serif;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  margin: 0 0 20px;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
}

h2 {
  margin: 48px 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

h3 {
  margin: 28px 0 8px;
  font-size: 1.25rem;
}

p {
  max-width: 780px;
  margin: 0 0 18px;
}

a {
  color: var(--blue);
}

ul {
  padding-left: 1.25rem;
}

li {
  margin: 8px 0;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.intro {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 340px);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: 520px;
  padding: 10px 0 58px;
}

.home-hero h1 {
  max-width: 760px;
}

.app-hero {
  min-height: 500px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 10px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 2px solid var(--green);
  border-radius: 6px;
  background: var(--green);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.button:hover,
.button:focus-visible {
  background: #2a5d53;
  border-color: #2a5d53;
}

.text-link {
  align-self: center;
  color: var(--green);
  font-weight: 700;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.brand-panel {
  display: grid;
  min-height: 330px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at top left, rgba(216, 166, 76, 0.18), transparent 38%),
    linear-gradient(150deg, #ffffff, var(--surface-soft));
  box-shadow: var(--shadow);
}

.brand-panel img {
  width: min(210px, 70%);
}

.app-preview {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 390px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(53, 111, 99, 0.16), rgba(200, 111, 85, 0.12)),
    var(--surface);
  box-shadow: var(--shadow);
}

.app-logo {
  width: min(118px, 38%);
  height: auto;
}

.phone-frame {
  position: relative;
  display: flex;
  width: min(230px, 76%);
  min-height: 390px;
  flex-direction: column;
  justify-content: center;
  padding: 44px 24px 32px;
  border: 10px solid #213d3b;
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(237, 246, 241, 0.9), rgba(255, 255, 255, 0.98)),
    #ffffff;
  color: var(--ink);
  text-align: center;
}

.phone-speaker {
  position: absolute;
  top: 18px;
  left: 50%;
  width: 58px;
  height: 6px;
  border-radius: 999px;
  background: #9cb5ad;
  transform: translateX(-50%);
}

.phone-frame p {
  margin: 0 auto 26px;
  font-family: Lato-Bold, Arial, sans-serif;
  font-size: 1.42rem;
  line-height: 1.25;
}

.phone-frame span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: end;
  margin: 0 0 46px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(32, 57, 55, 0.08);
}

.feature-band h2 {
  margin-top: 0;
}

.feature-band p:last-child {
  margin-bottom: 0;
}

.notice {
  margin: 34px 0;
  padding: 18px 20px;
  border-left: 5px solid var(--gold);
  background: var(--surface-soft);
}

.notice p:last-child {
  margin-bottom: 0;
}

.meta {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.utility-header {
  padding-bottom: 0;
}

.utility-header nav {
  padding-bottom: 34px;
}

.utility-header h1 {
  font-size: clamp(2.15rem, 5vw, 4.1rem);
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  justify-content: space-between;
  padding: 42px 0 34px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.95rem;
}

footer p {
  margin: 0;
}

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

.footer-links a {
  color: var(--muted);
}

@media (max-width: 760px) {
  body {
    font-size: 17px;
  }

  nav {
    align-items: flex-start;
    padding-bottom: 34px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-bottom: 42px;
  }

  .brand-panel {
    min-height: 230px;
  }

  .brand-panel img {
    width: min(160px, 58%);
  }

  .app-preview {
    min-height: 330px;
  }

  .phone-frame {
    width: min(215px, 78vw);
    min-height: 340px;
  }

  .feature-band {
    grid-template-columns: 1fr;
    padding: 22px;
  }
}
