:root {
  color-scheme: light;
  --ink: #171512;
  --muted: #6d675f;
  --line: #ded8cf;
  --paper: #fbfaf7;
  --white: #ffffff;
  --stone: #efebe4;
  --charcoal: #20201d;
  --accent: #9b2f24;
  --accent-strong: #6f2119;
  --sage: #65735f;
  --shadow: 0 24px 80px rgba(36, 30, 22, 0.16);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

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

.site-header,
.site-footer,
.hero,
.section,
.status-strip {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  font-size: 18px;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 640;
}

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

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: 58px;
  padding: 24px 0 86px;
}

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

.launch {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.95;
  font-weight: 520;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.02;
  font-weight: 520;
}

h3 {
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 1.2;
}

.hero-text {
  max-width: 570px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 760;
  white-space: nowrap;
}

.button.primary {
  background: var(--accent);
  color: var(--white);
}

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

.button.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.52);
}

.button.light {
  background: var(--white);
  color: var(--accent-strong);
}

.note {
  max-width: 560px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone {
  overflow: hidden;
  width: min(288px, 62vw);
  aspect-ratio: 9 / 19.5;
  border: 10px solid #151515;
  border-radius: 34px;
  background: #10100f;
  box-shadow: var(--shadow);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-front {
  position: relative;
  z-index: 2;
  transform: rotate(2deg);
}

.phone-back {
  position: absolute;
  z-index: 1;
  left: 12px;
  top: 86px;
  transform: rotate(-7deg) scale(0.92);
  opacity: 0.72;
}

.status-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.status-strip div {
  min-height: 116px;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}

.status-strip div:last-child {
  border-right: 0;
}

.status-strip span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-strip strong {
  font-size: 20px;
  line-height: 1.25;
}

.section {
  padding: 106px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 72px;
  border-bottom: 1px solid var(--line);
}

.copy-stack p,
.partner-intro p,
.contact-band p,
.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.partner-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 64px;
}

.partner-intro p {
  margin-top: 24px;
}

.partner-list {
  display: grid;
  gap: 12px;
}

.partner-list article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.partner-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 74px;
  padding: 44px;
  border-radius: 8px;
  background: var(--charcoal);
  color: var(--white);
}

.contact-band p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 0 44px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 8px 0 0;
  color: var(--muted);
}

.legal-page {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 100px;
}

.legal-page h1 {
  font-size: clamp(42px, 6vw, 68px);
  margin-bottom: 18px;
}

.legal-page h2 {
  margin: 44px 0 12px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 780;
}

.legal-page ul {
  padding-left: 22px;
}

.legal-meta {
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 740;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 0;
  }

  .site-header nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

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

  .hero-visual {
    min-height: 560px;
    order: -1;
  }

  .phone-back {
    left: 50%;
    margin-left: -210px;
  }

  .status-strip,
  .split,
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .status-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .status-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 78px 0;
  }

  .contact-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header,
  .site-footer,
  .hero,
  .section,
  .status-strip,
  .legal-page {
    width: min(100% - 28px, var(--max));
  }

  h1 {
    font-size: 45px;
  }

  .hero-text {
    font-size: 18px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  .phone {
    width: min(248px, 70vw);
    border-radius: 30px;
  }

  .phone-back {
    margin-left: -174px;
  }

  .contact-band {
    padding: 30px 22px;
  }

  .site-footer nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
