:root {
  color-scheme: light;
  --ink: #111114;
  --muted: #6e6e73;
  --line: #dedee3;
  --soft: #f7f4f0;
  --panel: #ffffff;
  --blue: #1167d8;
  --green: #1d8f5f;
  --mint: #dff4ea;
  --pink: #d9578f;
  --coral: #f06f61;
  --orange: #c86d2a;
  --cream: #fff7ec;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--panel);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  height: 52px;
  margin: 0 auto;
  font-size: 13px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
}

.brand img {
  width: 24px;
  height: 24px;
  border-radius: 7px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #2f2f34;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  background: var(--blue);
}

.hero {
  overflow: hidden;
  min-height: calc(100vh - 52px);
  padding: 72px 0 44px;
  background:
    radial-gradient(circle at 14% 18%, rgba(48, 129, 91, 0.16), transparent 30%),
    radial-gradient(circle at 86% 26%, rgba(240, 111, 97, 0.18), transparent 32%),
    linear-gradient(180deg, #fffaf3 0%, #f7fbff 58%, #fff 86%);
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 19px;
  font-weight: 700;
}

.hero h1,
.page-hero h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.98;
  font-weight: 800;
}

.hero-copy,
.page-copy {
  max-width: 760px;
  margin: 24px auto 0;
  color: #303034;
  font-size: clamp(19px, 2.3vw, 28px);
  line-height: 1.35;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  color: var(--blue);
  font-size: 17px;
  font-weight: 600;
}

.button.primary {
  color: #fff;
  border-color: #0f5fc8;
  background: linear-gradient(135deg, #0f6fde, #0b55bc);
}

.button.dark {
  border-color: #1d1d1f;
  color: #fff;
  background: #1d1d1f;
}

.product-stage {
  display: grid;
  gap: 28px;
  align-items: end;
  margin-top: 58px;
}

.product-card {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  border-radius: 8px;
  background: #f5f5f7;
}

.product-card.smoke {
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(74, 206, 137, 0.24), transparent 28%),
    linear-gradient(145deg, #111816 0%, #17241f 48%, #22252d 100%);
}

.product-card.baby {
  background:
    radial-gradient(circle at 76% 18%, rgba(98, 177, 255, 0.22), transparent 30%),
    linear-gradient(150deg, #fff7f1 0%, #fff2f6 42%, #eef7ff 100%);
}

.product-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(44%, 520px);
  min-width: 360px;
  padding: 38px;
  text-align: left;
}

.app-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(100%, 340px);
  min-width: 0;
  text-align: left;
}

.app-lockup img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.app-lockup strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 22px;
}

.app-lockup span {
  display: block;
  margin-top: 3px;
  color: inherit;
  opacity: 0.72;
  font-size: 14px;
  line-height: 1.35;
}

.product-card h2 {
  max-width: 520px;
  margin: 28px 0 10px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.02;
}

.product-card p {
  max-width: 500px;
  margin: 0;
  color: inherit;
  opacity: 0.78;
  font-size: 19px;
  line-height: 1.45;
}

.phone-row {
  position: absolute;
  z-index: 1;
  right: 54px;
  bottom: -72px;
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 20px;
}

.phone {
  overflow: hidden;
  width: min(270px, 34vw);
  aspect-ratio: 1206 / 2622;
  border: 10px solid #111;
  border-radius: 42px;
  background: #fff;
  box-shadow: var(--shadow);
}

.phone.small {
  width: min(220px, 29vw);
  transform: translateY(34px);
}

.mock-screen {
  height: 100%;
  padding: 26px 22px;
  color: #f7fbf8;
  background: linear-gradient(180deg, #101214, #22312a);
}

.mock-status {
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.mock-title {
  margin-top: 40px;
  font-size: 28px;
  font-weight: 800;
}

.mock-ring {
  display: grid;
  place-items: center;
  width: 155px;
  height: 155px;
  margin: 36px auto;
  border: 14px solid rgba(42, 192, 126, 0.32);
  border-top-color: #31d27b;
  border-radius: 50%;
  font-size: 34px;
  font-weight: 800;
}

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

.mock-line {
  display: flex;
  justify-content: space-between;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 14px;
}

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

.section {
  padding: 92px 0;
}

.section.soft {
  background:
    linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section-title {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
}

.section-title p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.45;
}

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

.feature {
  min-height: 210px;
  padding: 26px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  background: #fff;
}

.feature:nth-child(1) {
  background: linear-gradient(160deg, #ffffff, var(--mint));
}

.feature:nth-child(2) {
  background: linear-gradient(160deg, #ffffff, #ffeef3);
}

.feature:nth-child(3) {
  background: linear-gradient(160deg, #ffffff, var(--cream));
}

.feature strong {
  display: block;
  margin-bottom: 10px;
  font-size: 23px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.5;
}

.compare {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border-top: 1px solid var(--line);
}

.compare-row:first-child {
  border-top: 0;
}

.compare-row > div {
  padding: 20px 22px;
  font-size: 16px;
}

.compare-head {
  color: #fff;
  background: linear-gradient(135deg, #13221c, #27303f);
  font-weight: 700;
}

.check {
  color: var(--green);
  font-weight: 800;
}

.muted {
  color: var(--muted);
}

.showcase {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: start;
}

.shot {
  overflow: hidden;
  border: 8px solid #111;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.download-panel {
  padding: 36px;
  border-radius: 8px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 12%, rgba(240, 111, 97, 0.36), transparent 28%),
    radial-gradient(circle at 16% 80%, rgba(47, 190, 118, 0.3), transparent 30%),
    linear-gradient(145deg, #141a22, #22202b);
}

.download-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
}

.download-panel p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.55;
}

.download-list {
  display: grid;
  gap: 14px;
}

.download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f8fbff);
  box-shadow: 0 14px 40px rgba(26, 37, 58, 0.08);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.download-item:hover {
  border-color: rgba(17, 103, 216, 0.22);
  box-shadow: 0 18px 46px rgba(26, 68, 125, 0.13);
  transform: translateY(-2px);
}

.download-item img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
}

.download-item strong,
.download-item span {
  display: block;
}

.download-item span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

.mini-button {
  display: inline-flex !important;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 64px;
  min-height: 32px;
  margin-top: 0 !important;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--blue) !important;
  background: rgba(17, 103, 216, 0.11);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease;
}

.download-item:hover .mini-button {
  color: #fff !important;
  background: var(--blue);
}

.page-hero {
  padding: 82px 0 54px;
  text-align: center;
  background: linear-gradient(180deg, #fbfbfd, #fff);
}

.legal {
  max-width: 880px;
  margin: 0 auto;
  padding: 58px 16px 90px;
}

.legal h1 {
  margin: 0 0 12px;
  font-size: clamp(36px, 5vw, 58px);
}

.legal h2 {
  margin: 38px 0 12px;
  font-size: 25px;
}

.legal p,
.legal li {
  color: #3c3c43;
  font-size: 17px;
  line-height: 1.8;
}

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

.brochure {
  background: #f5f5f7;
}

.brochure-sheet {
  width: min(1020px, calc(100% - 32px));
  margin: 28px auto 80px;
  padding: 58px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.brochure-head {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 42px;
  align-items: center;
}

.brochure-head h1 {
  margin: 18px 0;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.98;
}

.brochure-head p {
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
}

.brochure-logo {
  width: 82px;
  height: 82px;
  border-radius: 20px;
}

.brochure-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.point {
  padding: 22px;
  border-radius: 8px;
  background: var(--soft);
}

.point strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}

.point span {
  color: var(--muted);
  line-height: 1.55;
}

.footer {
  padding: 42px 0;
  color: var(--muted);
  background: #f5f5f7;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

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

@media (max-width: 900px) {
  .nav-links {
    gap: 13px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .product-stage,
  .split,
  .brochure-head {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 820px;
  }

  .product-card-content {
    width: auto;
    min-width: 0;
  }

  .phone-row {
    right: auto;
    bottom: -96px;
    left: 50%;
    width: 100%;
    justify-content: center;
    gap: 0;
    transform: translateX(-50%);
  }

  .product-card .phone {
    width: min(270px, 64vw);
    flex: 0 0 auto;
  }

  .product-card .phone.small {
    width: min(210px, 50vw);
    margin-left: -52px;
    transform: translateY(48px);
  }

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

  .showcase {
    grid-template-columns: repeat(2, 1fr);
  }

  .compare-row {
    grid-template-columns: 1fr;
  }

  .compare-row > div {
    border-top: 1px solid var(--line);
  }

  .compare-row > div:first-child {
    border-top: 0;
  }

  .brochure-sheet {
    padding: 28px;
  }

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

@media print {
  .topbar,
  .footer,
  .hero-actions {
    display: none;
  }

  body,
  .brochure {
    background: #fff;
  }

  .brochure-sheet {
    width: 100%;
    margin: 0;
    box-shadow: none;
  }
}
