:root {
  color-scheme: light;
  --ink: #16161d;
  --body: #505158;
  --muted: #8a8b91;
  --surface: #f7f8fa;
  --line: #dedfe3;
  --cyan: #24dce1;
  --content: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  letter-spacing: 0;
}

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

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

figure,
h1,
h2,
h3,
p {
  margin: 0;
}

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

.hero {
  min-height: 514px;
  padding: 57px 0 66px;
  background: linear-gradient(108deg, #fff7df 0%, #fff2d3 38%, #f8b6c9 72%, #ef7bd2 100%);
  overflow: hidden;
}

.breadcrumb {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
  margin-bottom: 48px;
  color: #8a8a8e;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  white-space: nowrap;
  overflow: hidden;
}

.breadcrumb strong {
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  padding-bottom: 4px;
}

.hero h1 {
  max-width: 570px;
  margin-bottom: 8px;
  color: #090c14;
  font-size: 38px;
  font-weight: 800;
  line-height: 46px;
}

.hero-copy p {
  max-width: 570px;
  margin-bottom: 18px;
  color: #4f5056;
  font-size: 18px;
  line-height: 1.35;
}

.hero-copy small {
  display: block;
  margin-top: 12px;
  color: #74757b;
  font-size: 14px;
}

.hero-media {
  width: 100%;
}

.hero-media img,
.feature-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.download-button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 8px;
  color: #050506;
  background: linear-gradient(90deg, #57d5ff, #34dbf8 25%, #00e1ec 50%, #00e5db 75%, #18e9c7);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.download-button:hover,
.download-button:focus-visible {
  filter: brightness(.96);
}

.section-band {
  padding: 120px 0;
}

.features,
.install,
.faq {
  background: var(--surface);
}

.section-heading {
  margin-bottom: 78px;
  text-align: center;
}

.section-heading h2,
.install > .container > h2,
.ideas h2,
.faq h2 {
  color: #16161d;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.12;
}

.section-heading p {
  margin-top: 30px;
  color: #4f5056;
  font-size: 20px;
  line-height: 1.45;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.feature-row + .feature-row {
  margin-top: 122px;
}

.feature-copy h3 {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
}

.feature-copy p {
  margin-bottom: 28px;
  color: #55565c;
  font-size: 20px;
  line-height: 1.25;
}

.feature-copy p a,
.install-tab .inline-link {
  color: #77a8c5;
}

.feature-media {
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
}

.install {
  padding-top: 118px;
}

.install > .container > h2 {
  margin-bottom: 82px;
  text-align: center;
}

.install-layout {
  display: grid;
  grid-template-columns: 470px minmax(0, 1fr);
  gap: 88px;
  align-items: center;
}

.install-tabs {
  display: grid;
  gap: 27px;
}

.install-tab {
  position: relative;
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 0 0 0 22px;
  border: 0;
  color: #8a8b91;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.install-tab::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  border-radius: 4px;
  background: transparent;
}

.install-tab strong {
  font-size: 24px;
  line-height: 1.2;
}

.install-tab span {
  font-size: 18px;
  line-height: 1.35;
}

.install-tab.is-active {
  color: #191a20;
}

.install-tab.is-active::before {
  background: #3bcde8;
}

.install-panels,
.install-panels figure {
  min-width: 0;
}

.install-panels figure[hidden] {
  display: none;
}

.install-panels img {
  width: 100%;
  border-radius: 12px;
}

.install-download {
  display: flex;
  width: max-content;
  margin: 54px auto 0;
}

.ideas {
  padding: 98px 0 110px;
}

.ideas h2 {
  margin-bottom: 38px;
}

.idea-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 980px;
  margin: 0 auto 34px;
}

.idea-links a {
  padding: 10px 16px;
  border: 0;
  border-radius: 32px;
  color: #5b8fff;
  background: #f5f8fc;
  font-size: 16px;
  font-weight: 400;
}

.try-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 8px;
  color: #fff;
  background: #050506;
  font-weight: 700;
}

.faq {
  padding: 110px 0 114px;
}

.faq-shell {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  column-gap: 90px;
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
}

.faq h2 {
  grid-row: 1 / span 4;
  margin-bottom: 0;
  color: #090c14;
  text-align: left;
}

.faq .accordion {
  grid-column: 2;
}

.accordion {
  border-bottom: 1px solid #d9dade;
}

.accordion:first-of-type {
  border-top: 1px solid #d9dade;
}

.accordion h3 {
  font-size: inherit;
}

.accordion-trigger {
  display: flex;
  width: 100%;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0;
  border: 0;
  color: #16161d;
  background: transparent;
  font: inherit;
  font-size: 22px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.accordion-trigger i {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.accordion-trigger i::before,
.accordion-trigger i::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 0;
  left: 0;
  height: 2px;
  background: #16161d;
}

.accordion-trigger i::after {
  transform: rotate(90deg);
}

.accordion-trigger[aria-expanded="true"] i::after {
  transform: rotate(0deg);
}

.accordion-panel {
  max-width: 900px;
  padding: 0 46px 28px 0;
}

.accordion-panel[hidden] {
  display: none;
}

.accordion-panel p {
  color: #5a5b61;
  font-size: 18px;
  line-height: 1.5;
}

.final-cta {
  padding: 88px 0 94px;
  color: #fff;
  background: #111217;
  text-align: center;
}

.final-cta .container {
  max-width: 820px;
}

.final-cta h2 {
  margin-bottom: 18px;
  font-size: 46px;
  font-weight: 800;
  line-height: 1.08;
}

.final-cta p {
  margin-bottom: 30px;
  color: #c9c9cd;
  font-size: 20px;
  line-height: 1.45;
}

footer {
  padding: 72px 0 30px;
  color: #fff;
  background: #050506;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

footer h3 {
  margin-bottom: 22px;
  font-size: 16px;
}

footer a {
  display: block;
  margin-bottom: 13px;
  color: #9b9ca2;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid #2a2b30;
  color: #85868c;
}

.footer-bottom span {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.floating-promo {
  position: fixed;
  z-index: 10;
  right: 50%;
  bottom: 42px;
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 28px;
  padding: 8px 10px 8px 28px;
  border: 5px solid #43daf0;
  border-radius: 38px;
  background: linear-gradient(90deg, #fff, #57e5ef);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
  transform: translateX(50%);
}

.floating-promo[hidden] {
  display: none;
}

.floating-promo strong {
  white-space: nowrap;
  font-size: 20px;
}

.floating-promo a {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  padding: 0 26px;
  border-radius: 28px;
  color: #fff;
  background: #050506;
  white-space: nowrap;
  font-weight: 800;
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 48px, 680px);
  }

  .hero {
    min-height: 638px;
    padding: 57px 0 56px;
  }

  .breadcrumb {
    margin-bottom: 18px;
    font-size: 12px;
  }

  .hero-grid,
  .feature-row,
  .install-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 14px;
  }

  .hero h1 {
    margin-bottom: 4px;
    font-size: 25px;
    line-height: 33px;
  }

  .hero-copy p {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 21px;
  }

  .download-button {
    min-height: 41px;
    padding: 0 24px;
    font-size: 16px;
  }

  .hero-copy small {
    margin-top: 8px;
    font-size: 13px;
  }

  .hero-media {
    margin-top: 2px;
  }

  .section-band {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 50px;
    text-align: left;
  }

  .section-heading h2,
  .install > .container > h2,
  .ideas h2,
  .faq h2 {
    font-size: 28px;
    line-height: 1.28;
  }

  .section-heading p {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.45;
  }

  .feature-row {
    gap: 30px;
  }

  .feature-row + .feature-row {
    margin-top: 66px;
  }

  .feature-ai .feature-media {
    order: -1;
  }

  .feature-copy h3 {
    margin-bottom: 12px;
    font-size: 26px;
  }

  .feature-copy p {
    margin-bottom: 22px;
    font-size: 16px;
    line-height: 1.42;
  }

  .install > .container > h2 {
    margin-bottom: 34px;
    text-align: left;
  }

  .install-layout {
    gap: 30px;
  }

  .install-tabs {
    gap: 20px;
  }

  .install-tab {
    gap: 5px;
    padding-left: 16px;
  }

  .install-tab strong {
    font-size: 20px;
  }

  .install-tab span {
    font-size: 15px;
  }

  .install-download {
    margin-top: 34px;
  }

  .ideas {
    text-align: left;
  }

  .idea-links {
    justify-content: center;
  }

  .faq-shell {
    display: block;
    width: calc(100% - 32px);
  }

  .faq h2 {
    margin-bottom: 28px;
    text-align: left;
  }

  .accordion-trigger {
    min-height: 70px;
    font-size: 18px;
  }

  .accordion-panel p {
    font-size: 15px;
  }

  .final-cta h2 {
    font-size: 28px;
  }

  .final-cta p {
    font-size: 16px;
  }

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

  .floating-promo {
    bottom: 16px;
    width: calc(100% - 32px);
    min-height: 58px;
    gap: 12px;
    justify-content: space-between;
    padding: 5px 5px 5px 14px;
    border-width: 3px;
  }

  .floating-promo strong {
    overflow: hidden;
    font-size: 14px;
    text-overflow: ellipsis;
  }

  .floating-promo a {
    min-height: 44px;
    padding: 0 16px;
    font-size: 13px;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 48px);
  }

  .hero-media img,
  .feature-media img {
    width: 100%;
  }

  .idea-links a {
    font-size: 14px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    gap: 18px;
    flex-direction: column;
  }
}
