:root {
  color: #152038;
  background: #f6f7f9;
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid #c45c26;
  outline-offset: 4px;
}

.site {
  --ink: #152038;
  --muted: #5c6679;
  --subtle: #7f8897;
  --line: #dce1e8;
  --navy: #17233e;
  --rust: #c45c26;
  --green: #177459;
  min-height: 100vh;
  color: var(--ink);
  background: linear-gradient(180deg, #fafbfc 0%, #f5f6f8 44%, #fff 100%);
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  background: #17233e;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header,
.hero-section,
.content-section,
.privacy-section,
.download-section,
footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  display: grid;
  min-height: 82px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid rgb(219 224 232 / 75%);
}

.site-brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 780;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.site-brand > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(145deg, #e07a45, #8b3a1a);
  box-shadow: 0 6px 18px rgb(139 58 26 / 22%);
  font-family: Georgia, serif;
  font-size: 19px;
}

.site-header nav {
  display: flex;
  gap: 34px;
}

.site-header nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

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

.header-download {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgb(255 255 255 / 72%);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: 56px;
  min-height: 640px;
  padding: 72px 0 64px;
}

.hero-glow {
  position: absolute;
  top: -140px;
  right: -240px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(196 92 38 / 16%), transparent 68%);
  pointer-events: none;
}

.hero-copy,
.product-frame {
  position: relative;
  z-index: 1;
}

.hero-kicker,
.section-kicker {
  color: #9a4a22;
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  min-height: 35px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid #f0d2c2;
  border-radius: 999px;
  background: #fdf0e9;
  letter-spacing: 0.03em;
  text-transform: none;
}

.hero-copy h1 {
  margin: 22px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.hero-copy h1 span {
  color: #53617b;
}

.hero-copy > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 760;
  text-decoration: none;
}

.primary-cta {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 10px 30px rgb(23 35 62 / 17%);
}

.primary-cta:hover {
  background: #223252;
}

.secondary-cta {
  border: 1px solid var(--line);
  background: rgb(255 255 255 / 70%);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 13px;
}

.product-frame {
  overflow: hidden;
  border: 1px solid #cbd2de;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 40px 95px rgb(33 44 70 / 17%);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 39px;
  padding: 0 13px;
  border-bottom: 1px solid #dbe0e8;
  background: #f7f8fa;
}

.window-bar > span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fb655e;
}

.window-bar > span:nth-child(2) {
  background: #f7bd4f;
}

.window-bar > span:nth-child(3) {
  background: #45c35a;
}

.window-bar small {
  margin-inline: auto;
  padding-right: 40px;
  color: #7b8494;
  font-size: 10px;
}

.app-preview {
  display: grid;
  min-height: 360px;
  grid-template-columns: 150px 1fr;
}

.app-preview aside {
  padding: 17px 11px;
  color: #e4e9f2;
  background: #17233d;
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 760;
}

.preview-brand strong {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 7px;
  background: linear-gradient(145deg, #e07a45, #8b3a1a);
  font-family: Georgia, serif;
}

.preview-brand em {
  display: block;
  color: #b9c2d4;
  font-size: 8px;
  font-style: normal;
  font-weight: 500;
}

.preview-new {
  display: grid;
  height: 30px;
  margin-bottom: 16px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 7px;
  font-size: 9px;
}

.app-preview aside > small {
  color: #8390a7;
  font-size: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preview-main {
  padding: 22px 20px;
  background: #f5f6f8;
}

.preview-label {
  color: #7f8998;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-main h2 {
  margin: 10px 0 16px;
  font-family: Georgia, serif;
  font-size: 22px;
  font-weight: 500;
}

.preview-main pre {
  overflow: auto;
  margin: 0;
  padding: 14px;
  border-radius: 11px;
  color: #e6edf7;
  background: #182235;
  font-size: 11px;
  line-height: 1.55;
}

.content-section,
.privacy-section,
.download-section {
  padding: 72px 0;
}

.content-section h2,
.privacy-section h2,
.download-section h2 {
  margin: 10px 0 16px;
  font-family: Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
}

.content-section > p,
.privacy-section p,
.download-section p {
  max-width: 680px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.feature-grid li {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.feature-grid strong {
  display: block;
  margin-bottom: 8px;
}

.feature-grid span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.privacy-section {
  border-top: 1px solid var(--line);
}

.download-section {
  text-align: center;
  border-top: 1px solid var(--line);
}

.download-section p {
  margin-inline: auto;
}

.download-section .primary-cta {
  margin-top: 24px;
}

.download-section small {
  display: block;
  max-width: 520px;
  margin: 16px auto 0;
  color: var(--subtle);
  font-size: 13px;
  line-height: 1.5;
}

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

footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

footer a {
  text-decoration: none;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 40px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
