:root {
  --bg: #f7f9fb;
  --ink: #111923;
  --muted: #627080;
  --line: #d7dfe7;
  --surface: #ffffff;
  --orange: #f97316;
  --orange-dark: #c85008;
  --teal: #0f9ca7;
  --shadow: 0 28px 80px rgba(17, 25, 35, 0.14);
  color-scheme: light;
  font-family: Avenir Next, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  background:
    linear-gradient(115deg, rgba(249, 115, 22, 0.12), transparent 28rem),
    linear-gradient(165deg, transparent 48%, rgba(15, 156, 167, 0.11) 48%, rgba(15, 156, 167, 0.11) 58%, transparent 58%),
    var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
}

a {
  color: var(--orange-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--orange);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(215, 223, 231, 0.86);
  background: rgba(247, 249, 251, 0.9);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 8px 18px rgba(249, 115, 22, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 650;
}

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

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

.hero,
.resource-strip,
.showcase,
.quick-links,
.page-shell,
.footer-inner {
  max-width: 1180px;
}

.hero,
.page-shell {
  margin: 0 auto;
  padding: 5rem 1.25rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  align-items: start;
  gap: 4.5rem;
  min-height: 720px;
  padding-top: 3.25rem;
  padding-bottom: 2.5rem;
}

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

.hero-logo {
  display: block;
  width: 6.5rem;
  height: 6.5rem;
  margin: 0 0 1.35rem;
  border-radius: 22px;
  box-shadow: 0 22px 52px rgba(14, 42, 54, 0.2);
}

.hero h1,
.page-title {
  margin: 0;
  color: var(--ink);
  font-size: 4.8rem;
  font-weight: 780;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero p {
  max-width: 39rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.28rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 750;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(17, 25, 35, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.button.primary {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}

.button:hover {
  border-color: rgba(249, 115, 22, 0.55);
  color: var(--ink);
  transform: translateY(-1px);
}

.button.primary:hover {
  color: #fff;
  box-shadow: 0 12px 30px rgba(249, 115, 22, 0.24);
}

.mac-frame {
  position: relative;
  min-width: 0;
  margin: 2.5rem 0 0;
  overflow: hidden;
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mac-frame::before {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.62);
  content: "";
  pointer-events: none;
}

.app-shot {
  display: block;
  width: 100%;
  aspect-ratio: 128 / 86;
  object-fit: cover;
  object-position: center top;
}

.resource-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin: -2rem auto 0;
  padding: 0 1.25rem;
}

.resource-strip div {
  min-height: 7rem;
  padding: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.resource-strip div:first-child {
  border-left: 1px solid var(--line);
  border-radius: 8px 0 0 8px;
}

.resource-strip div:last-child {
  border-right: 1px solid var(--line);
  border-radius: 0 8px 8px 0;
}

.resource-strip strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
}

.resource-strip span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  align-items: start;
  gap: 2rem;
  margin: 0 auto;
  padding: 6rem 1.25rem 4.5rem;
}

.showcase-copy h2 {
  margin: 0;
  max-width: 28rem;
  font-size: 2.35rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.showcase-copy p {
  max-width: 27rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.screenshot-grid {
  display: grid;
  gap: 1rem;
}

.screenshot-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 128 / 86;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 16px 48px rgba(17, 25, 35, 0.08);
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 auto;
  padding: 0 1.25rem 5rem;
}

.link-card {
  min-height: 10rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(17, 25, 35, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.link-card:hover {
  border-color: rgba(249, 115, 22, 0.46);
  box-shadow: 0 16px 44px rgba(17, 25, 35, 0.09);
  transform: translateY(-1px);
}

.link-card strong {
  display: block;
  color: var(--ink);
  font-size: 1.05rem;
}

.link-card span {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
}

.page-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(260px, 0.32fr);
  align-items: start;
  gap: 5rem;
}

.page-title {
  font-size: 4.4rem;
}

.lede {
  max-width: 42rem;
  margin: 1.25rem 0 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.content {
  margin-top: 2.5rem;
}

.content h2 {
  margin: 2rem 0 0.45rem;
  font-size: 1.25rem;
  line-height: 1.25;
}

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

.content ul {
  margin: 0.75rem 0 0;
  padding-left: 1.25rem;
}

.support-box,
.policy-box {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 36px rgba(17, 25, 35, 0.06);
}

.support-box h2,
.policy-box h2 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.support-box p,
.policy-box p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.support-box a,
.policy-box a {
  overflow-wrap: anywhere;
}

.small {
  color: var(--muted);
  font-size: 0.92rem;
}

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

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto;
  padding: 1.5rem 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
    padding-top: 4rem;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .mac-frame {
    max-width: 760px;
  }

  .showcase,
  .page-shell {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

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

  .hero,
  .page-shell {
    padding-top: 3.5rem;
  }

  .hero h1,
  .page-title {
    font-size: 3rem;
  }

  .hero p {
    font-size: 1.08rem;
  }

  .hero-logo {
    width: 5.25rem;
    height: 5.25rem;
    border-radius: 18px;
  }

  .resource-strip,
  .quick-links {
    grid-template-columns: 1fr;
  }

  .resource-strip div,
  .resource-strip div:first-child,
  .resource-strip div:last-child {
    border: 1px solid var(--line);
    border-radius: 8px;
  }

  .showcase {
    padding-top: 4rem;
  }

  .showcase-copy h2 {
    font-size: 2rem;
  }

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

@media (max-width: 460px) {
  .actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero h1,
  .page-title {
    font-size: 2.5rem;
  }

}
