:root {
  --bg: #f6f3ea;
  --surface: #ffffff;
  --surface-alt: #ece8dc;
  --text: #1e241f;
  --muted: #687067;
  --accent: #435b3b;
  --accent-dark: #2f4329;
  --border: #d9d4c7;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
}

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


.wide-container {
  width: min(calc(100% - 24px), 1280px);
  margin: 0 auto;
}

.narrow {
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(246, 243, 234, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 212, 199, 0.8);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 750;
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-logo {
  width: 220px;
  height: 116px;
  object-fit: contain;
  flex: 0 0 auto;
}


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

nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.hero {
  padding: 120px 0 110px;
}

.hero-inner {
  max-width: 900px;
}

.eyebrow,
.section-label,
.status {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 750;
  color: var(--accent);
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-top: 0;
}

h1 {
  max-width: 850px;
  font-size: clamp(3rem, 8vw, 6.6rem);
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 22px;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.hero-copy,
.section p,
.app-content p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-copy {
  max-width: 730px;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  margin-bottom: 34px;
}

.button {
  display: inline-block;
  padding: 14px 20px;
  border-radius: 999px;
  text-decoration: none;
  background: var(--accent);
  color: white;
  font-weight: 700;
}

.button:hover {
  background: var(--accent-dark);
}

.section {
  padding: 96px 0;
}

.alt {
  background: var(--surface-alt);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 36px;
}

.app-card {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 28px;
  align-items: start;
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--surface);
}

.app-icon-placeholder {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: white;
  font-weight: 800;
  letter-spacing: 0.08em;
}

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

#contact a {
  color: var(--accent-dark);
  font-weight: 650;
}


#about .wide-container > p:not(.section-label),
#contact .wide-container > p:not(.section-label) {
  max-width: 760px;
}

#about .wide-container h2,
#contact .wide-container h2 {
  max-width: 900px;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 700px) {
  .wide-container {
    width: min(calc(100% - 28px), 1280px);
  }

  .brand-logo {
    width: 112px;
    height: 62px;
  }

  
.brand span {
    font-size: 0.9rem;
  }

  .nav {
    min-height: 84px;
  }

  nav {
    gap: 14px;
  }

  nav a {
    font-size: 0.88rem;
  }

  .hero {
    padding: 88px 0 80px;
  }

  .section {
    padding: 72px 0;
  }

  .app-card {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand span {
    max-width: 145px;
    white-space: normal;
    line-height: 1.1;
  }

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


.app-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  display: block;
  object-fit: cover;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}
