:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-soft: #0a0908;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.1);
  --line-gold: rgba(217, 182, 106, 0.26);
  --text: #f7f3ec;
  --muted: #b8b0a4;
  --quiet: #857e73;
  --gold: #d9b66a;
  --gold-soft: #ecd59c;
  --white: #ffffff;
  --max: 1120px;
  --radius: 24px;
  --radius-sm: 18px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 70% 0%, rgba(217, 182, 106, 0.075), transparent 34rem),
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.045), transparent 24rem),
    linear-gradient(180deg, #050505 0%, #080807 42%, #040404 100%);
  color: var(--text);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
  background-size: 96px 96px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.62), transparent 70%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.34));
  content: "";
}

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

a:hover {
  color: var(--gold-soft);
}

p {
  margin: 0;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

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

.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(22px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 640;
}

.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(217, 182, 106, 0.28);
  object-fit: cover;
  box-shadow: 0 0 26px rgba(217, 182, 106, 0.08);
}

.brand-name {
  font-size: 1.02rem;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 8px 12px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-color: rgba(217, 182, 106, 0.18);
  background: rgba(255, 255, 255, 0.035);
  color: var(--gold-soft);
}

.hero {
  position: relative;
  padding: 74px 0 70px;
}

.hero::after,
.page-hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(217, 182, 106, 0.2), transparent);
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  align-items: center;
  gap: 72px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  gap: 10px;
  margin-bottom: 20px;
  color: rgba(236, 213, 156, 0.86);
  font-size: 0.72rem;
  font-weight: 640;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(217, 182, 106, 0.84), transparent);
  content: "";
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--white);
  font-weight: 620;
  letter-spacing: 0;
}

h1 {
  max-width: 800px;
  font-size: clamp(3rem, 5vw, 5.75rem);
  line-height: 1.02;
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.35rem);
  line-height: 1.08;
}

h3 {
  font-size: 1.02rem;
  line-height: 1.22;
}

.lead {
  max-width: 640px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.35vw, 1.18rem);
  line-height: 1.7;
}

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

.app-store-soon,
.link-button,
.contact-link {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 600;
}

.app-store-soon,
.contact-link {
  border: 1px solid rgba(217, 182, 106, 0.34);
  padding: 0 19px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.link-button {
  padding: 0 4px;
  color: var(--gold-soft);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-badges span {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--quiet);
  font-size: 0.8rem;
}

.phone-preview {
  display: grid;
  place-items: center;
}

.screenshot-frame {
  position: relative;
  width: min(100%, 316px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    0 32px 76px rgba(0, 0, 0, 0.42),
    0 0 38px rgba(217, 182, 106, 0.045);
  overflow: hidden;
}

.app-screenshot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  object-fit: cover;
}

.section {
  padding: 88px 0;
}

.section-head {
  max-width: 720px;
}

.section-head p {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.68;
}

.principles {
  border-top: 1px solid rgba(255, 255, 255, 0.065);
  background: rgba(255, 255, 255, 0.012);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.feature,
.legal-card,
.company-card,
.statement {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.feature {
  min-height: 190px;
  padding: 24px;
}

.feature-icon {
  display: none;
}

.feature-icon::before,
.feature-icon::after {
  position: absolute;
  content: "";
}

.icon-message::before {
  top: 11px;
  left: 6px;
  width: 18px;
  height: 12px;
  border: 1.4px solid currentColor;
  border-radius: 7px;
}

.icon-message::after {
  left: 21px;
  top: 14px;
  width: 8px;
  height: 8px;
  border: 1.4px solid currentColor;
  border-radius: 3px;
  background:
    linear-gradient(currentColor, currentColor) 50% 56% / 1.4px 4px no-repeat,
    radial-gradient(circle at 50% 34%, transparent 0 1.7px, currentColor 1.8px 3.2px, transparent 3.3px);
}

.icon-exposure::before {
  top: 10px;
  left: 6px;
  width: 21px;
  height: 13px;
  border: 1.4px solid currentColor;
  border-radius: 50% / 58%;
}

.icon-exposure::after {
  left: 8px;
  top: 24px;
  width: 23px;
  height: 1.4px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(-42deg);
  transform-origin: left center;
}

.icon-calm::before {
  top: 8px;
  left: 10px;
  width: 14px;
  height: 18px;
  border: 1.4px solid currentColor;
  border-radius: 50%;
}

.icon-calm::after {
  left: 15px;
  top: 5px;
  width: 14px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: var(--bg);
}

.feature p,
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.66;
}

.feature p {
  margin-top: 13px;
  font-size: 0.95rem;
}

.statement-section {
  padding: 76px 0;
}

.statement {
  max-width: 900px;
  padding: 34px 36px;
}

.statement p {
  max-width: 720px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.company-section {
  border-top: 1px solid rgba(255, 255, 255, 0.065);
  background: rgba(255, 255, 255, 0.01);
}

.company-block {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(380px, 0.54fr);
  gap: 48px;
  align-items: start;
}

.company-card {
  display: grid;
  gap: 13px;
  padding: 26px;
  color: var(--muted);
  line-height: 1.5;
}

.company-card p:first-child {
  color: var(--text);
}

.company-name {
  white-space: nowrap;
}

.company-card a {
  width: fit-content;
  color: var(--gold-soft);
}

.page-hero {
  position: relative;
  padding: 88px 0 70px;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(2.6rem, 5.4vw, 5rem);
  line-height: 1.04;
}

.page-hero .lead {
  max-width: 780px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 34px;
  align-items: start;
  padding-bottom: 96px;
}

.legal-meta {
  position: sticky;
  top: 108px;
  border-left: 1px solid var(--line-gold);
  border-radius: 0 18px 18px 0;
  padding: 16px 0 16px 20px;
  color: var(--muted);
  line-height: 1.65;
}

.legal-card {
  display: grid;
  gap: 30px;
  padding: 34px;
}

.legal-section {
  display: grid;
  gap: 12px;
}

.legal-section ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.contact-band {
  padding: 70px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.contact-inner p {
  max-width: 600px;
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.075);
  padding: 32px 0;
  color: var(--quiet);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

@media (max-width: 960px) {
  .hero-grid,
  .company-block {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .phone-preview {
    justify-content: start;
  }

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

@media (max-width: 880px) {
  .container {
    width: min(100% - 30px, var(--max));
  }

  .nav-inner {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 0;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-links a {
    white-space: nowrap;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-meta {
    position: static;
  }

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

@media (max-width: 560px) {
  h1 {
    font-size: 2.72rem;
  }

  h2,
  .page-hero h1 {
    font-size: 2.15rem;
  }

  .hero {
    padding: 58px 0 54px;
  }

  .section {
    padding: 68px 0;
  }

  .statement-section,
  .contact-band {
    padding: 58px 0;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .app-store-soon,
  .link-button,
  .contact-link {
    width: 100%;
  }

  .hero-badges {
    gap: 7px;
  }

  .hero-badges span {
    font-size: 0.76rem;
  }

  .company-name {
    font-size: clamp(0.82rem, 3.6vw, 1rem);
  }

  .screenshot-frame {
    width: min(100%, 286px);
    border-radius: 30px;
    padding: 6px;
  }

  .app-screenshot {
    border-radius: 25px;
  }

  .feature,
  .statement,
  .company-card,
  .legal-card {
    border-radius: 20px;
    padding: 23px;
  }

  .legal-card {
    gap: 26px;
  }
}
