* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7f7f3;
  color: #111318;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

.shell {
  width: min(1180px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.skip-link,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  padding: 10px 14px;
  clip: auto;
  background: #111318;
  color: #fff;
  z-index: 20;
}

.site-header {
  min-height: 86px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand {
  justify-self: start;
  font-size: 18px;
  font-weight: 720;
}

.app-icon {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: linear-gradient(180deg, #fff, #ebebeb 70%);
  box-shadow: inset 0 0 0 1px rgba(17, 19, 24, 0.08), 0 7px 16px rgba(17, 19, 24, 0.12);
  overflow: hidden;
}

.app-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #676763;
  font-size: 14px;
  font-weight: 600;
}

.site-header a:hover,
.site-footer a:hover,
.text-link:hover {
  color: #5d3fc1;
}

.status {
  justify-self: end;
  padding: 10px 14px;
  border: 1px solid #dfdfd7;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #676763;
  font-size: 13px;
  font-weight: 600;
}

.hero {
  padding: 34px 0 100px;
}

.hero-image {
  width: 100%;
  aspect-ratio: 1731 / 909;
  object-fit: cover;
  border: 1px solid #dfdfd7;
  border-radius: 42px;
  background: #fff;
  box-shadow: 0 30px 80px rgba(17, 19, 24, 0.1);
}

.hero-details {
  padding: 30px 4px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}

.hero-copy {
  display: grid;
  align-items: flex-start;
  justify-items: start;
  gap: 20px;
}

.hero-copy > p {
  max-width: 720px;
  margin: 0;
  color: #676763;
  font-size: clamp(18px, 2vw, 23px);
}

.hero-actions {
  display: flex;
  align-items: center;
}

.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: #111318;
  color: #fff;
  font-weight: 690;
  box-shadow: 0 18px 34px rgba(17, 19, 24, 0.16);
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
a:focus-visible {
  outline: 3px solid #8f6af8;
  outline-offset: 4px;
}

.kicker {
  width: fit-content;
  margin: 0 0 24px;
  color: #5d3fc1;
  font-size: 13px;
  font-weight: 720;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.sentence {
  display: inline-block;
}

h2 {
  margin: 0;
  font-size: clamp(40px, 5.8vw, 72px);
  line-height: 1.04;
}

h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.08;
}

.intro {
  padding: 110px 0 64px;
}

.intro h2 {
  max-width: 1040px;
}

.feature-grid {
  padding-bottom: 120px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.feature-card {
  min-height: 430px;
  padding: 24px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 10px;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 30px;
  overflow: hidden;
}

.lavender {
  background: #e8e0ff;
}

.mint {
  background: #d4f8ea;
}

.peach {
  background: #ffe3cf;
}

.number {
  position: relative;
  z-index: 1;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 19, 24, 0.14);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.feature-art {
  width: min(76%, 245px);
  height: 200px;
  align-self: center;
  justify-self: center;
  object-fit: contain;
}

.feature-card p,
.product-copy > p {
  margin: 14px 0 0;
  color: #676763;
}

.product {
  padding: 120px 0;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: center;
  gap: 74px;
  border-top: 1px solid #dfdfd7;
}

.product-copy h2,
.privacy h2 {
  max-width: 560px;
  font-size: clamp(40px, 4.4vw, 60px);
}

.product-copy > p {
  max-width: 540px;
  font-size: 18px;
}

.product-copy ul {
  margin: 28px 0 0;
  padding-left: 22px;
  color: #53534f;
}

.product-copy li + li {
  margin-top: 10px;
}

.product-visual {
  min-height: 650px;
  display: grid;
  place-items: center;
  border-radius: 42px;
  overflow: hidden;
}

.controls-visual {
  padding: 50px 36px;
  background: #111318;
}

.controls-visual img {
  width: min(100%, 315px);
  border: 7px solid #060708;
  border-radius: 28px;
  box-shadow: 0 26px 46px rgba(0, 0, 0, 0.42);
}

.insights-product {
  grid-template-columns: 1.14fr 0.86fr;
}

.insights-visual {
  padding: 50px 36px;
  background: linear-gradient(145deg, #ddeaff, #f7f7f3 55%, #d4f8ea);
}

.insights-visual img {
  width: min(82%, 420px);
  border: 7px solid #fff;
  border-radius: 28px;
  box-shadow: 0 28px 60px rgba(17, 19, 24, 0.14);
}

.privacy {
  margin-top: 40px;
  padding: 76px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  border-radius: 42px;
  background: #111318;
  color: #fff;
}

.privacy .kicker {
  color: #bfaeff;
}

.privacy > div > p {
  margin: 26px 0 0;
  color: #cecec5;
  font-size: 18px;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 26px;
  font-weight: 680;
}

.privacy-facts {
  display: grid;
  gap: 12px;
}

.privacy-facts article {
  padding: 22px;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.055);
}

.privacy-facts span {
  color: #cecec5;
}

.site-footer {
  padding: 56px 0 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
}

.footer-brand > div {
  display: grid;
  gap: 3px;
}

.footer-brand span:last-child,
.site-footer > p {
  color: #8b8b85;
  font-size: 13px;
}

.site-footer > p {
  grid-column: 1 / -1;
  margin: 8px 0 0;
}

.site-footer .lang-switcher {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  border-top: 1px solid #dfdfd7;
  color: #8b8b85;
  font-size: 13px;
  font-weight: 620;
}

.site-footer .lang-switcher [aria-current="true"] {
  color: #111318;
}

.page-shell {
  max-width: 920px;
  padding: 80px 0 110px;
}

.page-hero {
  padding-bottom: 58px;
  border-bottom: 1px solid #dfdfd7;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 24px;
  padding: 9px 13px;
  border-radius: 999px;
  background: #e8e0ff;
  color: #5d3fc1;
  font-size: 13px;
  font-weight: 720;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(54px, 9vw, 94px);
  line-height: 1;
}

.page-description {
  max-width: 760px;
  margin: 28px 0 0;
  color: #676763;
  font-size: 20px;
}

.page-actions {
  margin: 32px 0 0;
}

.effective-date {
  width: fit-content;
  margin: 26px 0 0;
  padding: 8px 12px;
  border: 1px solid #dfdfd7;
  border-radius: 999px;
  color: #676763;
  font-size: 13px;
  font-weight: 620;
}

.legal-note {
  margin: 26px 0 0;
  padding: 16px 18px;
  border: 1px solid #dfdfd7;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: #676763;
  font-size: 15px;
  line-height: 1.6;
}

.legal-body {
  padding-top: 26px;
}

.legal-body section,
.faq-list article {
  padding: 40px 0;
  border-bottom: 1px solid #dfdfd7;
}

.legal-body h2,
.faq-list h2 {
  font-size: 28px;
  line-height: 1.12;
}

.legal-body h3 {
  margin: 28px 0 0;
  font-size: 19px;
}

.legal-body p,
.legal-body li,
.faq-list p {
  color: #53534f;
  font-size: 17px;
  line-height: 1.72;
}

.legal-body p,
.faq-list p {
  margin: 16px 0 0;
}

.legal-body ul {
  padding-left: 24px;
}

.legal-body li + li {
  margin-top: 8px;
}

.legal-body a {
  color: #5d3fc1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.support-card {
  margin-top: 40px;
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 240px;
  align-items: center;
  gap: 36px;
  border-radius: 32px;
  background: linear-gradient(145deg, #fff, #e8e0ff);
}

.support-card p {
  color: #676763;
  font-size: 18px;
}

.support-card img {
  max-height: 260px;
  justify-self: center;
}

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

  .site-header nav {
    display: none;
  }

  .hero-details,
  .product,
  .insights-product,
  .privacy {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    display: grid;
  }

  .hero-actions {
    justify-content: flex-start;
  }

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

  .feature-card {
    min-height: 360px;
    grid-template-columns: auto minmax(130px, 0.8fr) minmax(0, 1.2fr);
    grid-template-rows: auto 1fr;
    align-items: center;
  }

  .feature-card .number {
    align-self: start;
  }

  .feature-art {
    width: min(100%, 220px);
    height: 230px;
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .feature-card > div {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .product {
    gap: 48px;
  }

  .insights-visual {
    order: 2;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(100% - 28px, 1180px);
  }

  .status {
    display: none;
  }

  .hero {
    padding-top: 16px;
    padding-bottom: 76px;
  }

  .hero-image {
    border-radius: 24px;
  }

  .hero-details {
    padding-top: 24px;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    gap: 22px;
  }

  h2 {
    font-size: 40px;
  }

  .intro {
    padding-top: 80px;
  }

  .feature-grid {
    padding-bottom: 84px;
  }

  .feature-card {
    min-height: 410px;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr) auto;
  }

  .feature-art {
    width: min(72%, 230px);
    height: 210px;
    grid-column: auto;
    grid-row: auto;
  }

  .feature-card > div {
    grid-column: auto;
    grid-row: auto;
  }

  .product {
    padding: 84px 0;
  }

  .product-visual {
    min-height: 0;
    padding: 36px 18px;
    border-radius: 28px;
  }

  .privacy {
    width: 100%;
    padding: 54px 22px;
    border-radius: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 16px 22px;
  }

  .site-footer > p {
    grid-column: auto;
  }

  .page-shell {
    padding: 58px 0 86px;
  }

  .page-description {
    font-size: 18px;
  }

  .legal-body p,
  .legal-body li,
  .faq-list p {
    font-size: 16px;
  }

  .support-card {
    padding: 34px 24px 0;
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .support-card img {
    max-height: 210px;
  }
}

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