:root {
  color-scheme: light;
  --bg: #f7f7f2;
  --surface: #ffffff;
  --surface-strong: #101414;
  --text: #151817;
  --muted: #5f6965;
  --line: #dfe3dc;
  --accent: #0f766e;
  --accent-dark: #0b4f4a;
  --gold: #d99b30;
  --coral: #d4553f;
  --shadow: 0 24px 70px rgba(20, 28, 28, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(247, 247, 242, 0.86);
  border-bottom: 1px solid rgba(20, 24, 23, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand span {
  overflow-wrap: anywhere;
}

nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
}

nav a:hover,
.text-link:hover {
  color: var(--accent-dark);
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: center;
  gap: clamp(28px, 6vw, 88px);
  min-height: calc(100svh - 74px);
  padding: clamp(48px, 8vw, 96px) clamp(18px, 6vw, 88px) 44px;
}

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

.eyebrow,
.app-status {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(3.2rem, 9vw, 7.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-text {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
}

.hero-actions,
.app-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 11px 18px;
  font-weight: 850;
}

.button.primary {
  background: var(--surface-strong);
  color: #ffffff;
}

.button.secondary {
  border: 1px solid var(--line);
  background: var(--surface);
}

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

.hero-visual::before {
  position: absolute;
  inset: 8% 4% 0;
  content: "";
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.22), rgba(217, 155, 48, 0.18)),
    var(--surface);
  border: 1px solid rgba(20, 24, 23, 0.08);
  border-radius: 8px;
  transform: rotate(-4deg);
  box-shadow: var(--shadow);
}

.hero-visual img {
  position: relative;
  width: min(78vw, 430px);
  max-width: 100%;
  filter: drop-shadow(0 26px 38px rgba(17, 24, 24, 0.18));
}

.intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(18px, 6vw, 88px);
  border: 1px solid var(--line);
  background: var(--line);
}

.intro > div {
  background: var(--surface);
  padding: clamp(24px, 4vw, 42px);
}

.metric {
  color: var(--coral);
  font-weight: 950;
}

.intro h2,
.section-heading h2,
.legal h1 {
  margin: 8px 0 12px;
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.intro p,
.app-content p,
.legal p,
.legal li {
  color: var(--muted);
}

.apps-section {
  padding: clamp(64px, 10vw, 112px) clamp(18px, 6vw, 88px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.app-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  max-width: 980px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 44px);
  box-shadow: var(--shadow);
}

.app-icon {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  background: #eff2ea;
  border-radius: 8px;
}

.app-icon img {
  width: 78%;
}

.app-content h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.text-link {
  color: var(--accent);
  font-weight: 850;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--text);
  font-weight: 800;
}

.app-detail,
.legal {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(44px, 8vw, 86px) 0;
}

.app-hero {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: clamp(22px, 5vw, 46px);
  align-items: center;
  margin-bottom: 44px;
}

.app-hero img {
  width: 150px;
  border-radius: 8px;
  background: var(--surface);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  list-style: none;
}

.feature-list li,
.legal-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.legal {
  max-width: 860px;
}

.legal-card h2 {
  margin-top: 30px;
  color: var(--text);
}

.legal-card a {
  color: var(--accent-dark);
  font-weight: 850;
}

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

  .hero,
  .intro,
  .app-card,
  .app-hero,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 260px;
  }

  .app-card {
    gap: 22px;
  }

  .app-icon {
    width: min(180px, 60vw);
  }
}

