@font-face {
  font-family: "Mona Sans";
  src: url("https://cdn.jsdelivr.net/gh/github/mona-sans@main/fonts/webfonts/MonaSans%5Bwdth%2Cwght%5D.woff2")
    format("woff2-variations");
  font-weight: 200 900;
  font-stretch: 75% 125%;
  font-display: swap;
}

:root {
  --page: #f8f7f2;
  --ink: #111111;
  --muted: #5c5a55;
  --line: #e4e1d8;
  --pill: #5b4fc7;
  --card: #ffffff;
  --soft: #f1efe8;
  --radius: 28px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--page);
  color: var(--ink);
  font-family: "Mona Sans", ui-sans-serif, system-ui, sans-serif;
  line-height: 1.45;
}

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

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 28px;
  background: color-mix(in srgb, var(--page) 88%, white);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
}

.logo {
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.04em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  font-weight: 600;
}

.nav a:hover {
  opacity: 0.7;
}

.nav a[aria-current="page"] {
  color: var(--pill);
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.35;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font: inherit;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-sm {
  min-height: 40px;
  padding: 0 16px;
  font-size: 14px;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 28px 72px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 48px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--pill);
  font-size: 14px;
  font-weight: 650;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.hero h1,
.section-head h2 {
  margin: 0;
  font-weight: 850;
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.hero h1 {
  font-size: clamp(56px, 9vw, 104px);
}

.hero-tag {
  margin: 14px 0 0;
  font-size: clamp(26px, 3.6vw, 40px);
  font-weight: 750;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.lede,
.section-lede {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.lede {
  max-width: 34rem;
  margin: 22px 0 28px;
}

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

.lifestyle {
  max-width: var(--max);
  margin: 0 auto 24px;
  padding: 0 28px;
}

.lifestyle img {
  width: 100%;
  height: auto;
  border-radius: 32px;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 32px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.12);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-collage {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 84px;
  gap: 12px;
}

.collage-item {
  overflow: hidden;
  background: var(--soft);
  border: 0;
  padding: 0;
  cursor: pointer;
}

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

.collage-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  border-radius: 40px;
}

.collage-item:nth-child(2) {
  border-radius: 999px;
}

.collage-item:nth-child(3) {
  border-radius: 28px;
  grid-row: span 2;
}

.collage-item:nth-child(4),
.collage-item:nth-child(8),
.collage-item:nth-child(12) {
  border-radius: 999px;
}

.collage-item:nth-child(5),
.collage-item:nth-child(9),
.collage-item:nth-child(13) {
  border-radius: 32px;
}

.collage-item:nth-child(6),
.collage-item:nth-child(10),
.collage-item:nth-child(14) {
  border-radius: 999px 999px 24px 24px;
}

.collage-item:nth-child(7),
.collage-item:nth-child(11),
.collage-item:nth-child(15) {
  border-radius: 24px;
}

.collage-item:focus-visible,
.companion-card:focus-visible {
  outline: 3px solid var(--pill);
  outline-offset: 3px;
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 28px 88px;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 36px;
}

.eyebrow,
.feature-tag,
.price-label,
.friend-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.section-head h2 {
  font-size: clamp(36px, 5vw, 58px);
}

.section-lede {
  margin: 16px 0 0;
}

.companion-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.7fr);
  gap: 28px;
  align-items: start;
}

.companion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}

.companion-card {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 24px;
  padding: 12px;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.companion-card:hover,
.companion-card.is-active {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.06);
}

.companion-card .thumb {
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  background: var(--soft);
  margin-bottom: 10px;
}

.companion-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.companion-card strong {
  display: block;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.companion-card span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.companion-detail {
  position: sticky;
  top: 96px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 24px;
}

.detail-frame {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 28px;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--soft);
}

.detail-frame img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.companion-detail h3 {
  margin: 0;
  font-size: 34px;
  letter-spacing: -0.04em;
  line-height: 1;
}

.friend-species {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.friend-note {
  margin: 14px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.hardware-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 48px 0 0;
}

.hardware-row figure {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 16px 16px 14px;
}

.hardware-row img {
  width: 100%;
  height: auto;
}

.hardware-row figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.device-stage {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
}

.chatbox-wrap {
  margin: 0 auto;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.chatbox {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: center;
  gap: 10px;
  background: linear-gradient(180deg, #fbfbfa 0%, #eceae4 100%);
  border: 1px solid #ddd9cf;
  border-radius: 42px;
  padding: 22px 16px 20px;
  box-shadow: 0 22px 44px rgba(17, 17, 17, 0.1);
}

.chatbox-grille {
  display: grid;
  gap: 9px;
  transform: skewY(-22deg);
  padding: 18px 4px;
}

.chatbox-grille span {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: #c44732;
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.18);
}

.chatbox-bezel {
  background: #111;
  border-radius: 28px;
  padding: 9px;
  aspect-ratio: 240 / 298;
}

.chatbox-bezel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.chatbox-buttons {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.chatbox-btn {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #e86a52, #c44732 62%);
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.18), 0 2px 0 rgba(0, 0, 0, 0.08);
}

.chatbox-btn svg {
  width: 16px;
  height: 16px;
}

.chatbox-feet {
  display: flex;
  justify-content: space-between;
  padding: 0 56px;
  margin-top: 4px;
}

.chatbox-feet i {
  display: block;
  width: 28px;
  height: 7px;
  border-radius: 4px;
  background: #3a3a3a;
}

.chatbox-wrap figcaption {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(92px, 1fr));
  gap: 12px;
}

.mockup-card {
  appearance: none;
  border: 1px solid transparent;
  background: transparent;
  padding: 8px;
  border-radius: 20px;
  cursor: pointer;
  text-align: center;
}

.mockup-card img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  background: #111;
}

.mockup-card span {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.mockup-card:hover,
.mockup-card.is-active {
  border-color: var(--ink);
  background: var(--card);
}

.mockup-card:focus-visible {
  outline: 3px solid var(--pill);
  outline-offset: 3px;
}

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

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

.support-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.support-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.support-card p {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.5;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.feature-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.55;
}

.lang-wrap {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.lang-wrap li {
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 650;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card-accent {
  background: linear-gradient(180deg, #f4f1ff 0%, #ffffff 55%);
}

.price-card h3 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.price-card li {
  padding-left: 18px;
  position: relative;
  color: var(--muted);
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
}

.price-card li strong {
  display: block;
  color: var(--ink);
}

.price-card li span {
  display: block;
  margin-top: 2px;
  font-size: 14px;
}

.price-note {
  margin: 0;
  font-weight: 800;
  font-size: 18px;
}

.price-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.partner-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 32px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 28px;
}

.partner-logo {
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 24px;
  padding: 28px 24px;
}

.partner-logo img {
  width: 100%;
  height: auto;
}

.partner-kicker {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.partner-copy h3 {
  margin: 0 0 14px;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.partner-copy p {
  margin: 0 0 14px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.55;
}

.partner-copy .btn {
  margin-top: 8px;
}

.benefits-hero {
  align-items: center;
}

.benefits-photo {
  margin: 0;
}

.benefits-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  border-radius: 32px;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.why-photo {
  margin: 0 auto 36px;
  max-width: 560px;
}

.why-photo img {
  width: 100%;
  height: auto;
  border-radius: 32px;
}

.benefit-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
}

.benefit-icon svg {
  width: 56px;
  height: 56px;
}

.benefit-card h3 {
  margin: 0 0 10px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.55;
}

.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 28px 64px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.footer-copy {
  max-width: 34rem;
  margin: 10px 0 0;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  line-height: 1.5;
}

.footer-legal {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 650;
  font-size: 14px;
}

.footer-links a:hover {
  opacity: 0.7;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 24px;
  align-items: start;
}

.contact-card {
  display: grid;
  gap: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 32px;
}

.contact-form {
  display: grid;
  gap: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: 32px;
}

.contact-form h3 {
  margin: 0;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.contact-form .req {
  font-weight: 650;
  color: var(--pill);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  background: var(--page);
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  padding: 12px 14px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid color-mix(in srgb, var(--pill) 45%, white);
  outline-offset: 1px;
  border-color: var(--pill);
}

.contact-form .btn {
  justify-self: start;
}

.contact-form .h-captcha {
  min-height: 78px;
}

.form-status {
  margin: 0;
  font-size: 15px;
  font-weight: 650;
}

.form-status.is-ok {
  color: #2f6b4f;
}

.form-status.is-err {
  color: #a33b2b;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-card h3 {
  margin: 0 0 8px;
  font-size: 32px;
  letter-spacing: -0.04em;
}

.contact-stock {
  margin: 0 0 12px;
  font-weight: 700;
}

.contact-card p a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-details {
  font-style: normal;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.6;
}

.contact-details p {
  margin: 0 0 12px;
}

.contact-details a {
  color: var(--ink);
  font-family: "Mona Sans", ui-sans-serif, system-ui, sans-serif;
  font-weight: 650;
}

@media (max-width: 920px) {
  .nav {
    display: none;
  }

  .hero,
  .companion-layout,
  .feature-grid,
  .support-grid,
  .pricing-grid,
  .hardware-row,
  .partner-card,
  .contact-layout,
  .benefit-grid,
  .device-stage {
    grid-template-columns: 1fr;
  }

  .hero-collage {
    grid-auto-rows: 72px;
  }

  .companion-detail {
    position: static;
  }

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

@media (max-width: 560px) {
  .topbar,
  .hero,
  .section,
  .lifestyle,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .video-frame {
    border-radius: 20px;
  }

  .hero-collage {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
