:root {
  --cyan: #00bde2;
  --pink: #fb5ca9;
  --purple: #9564ff;
  --ink: #101222;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: #fff;
  color: #08090b;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #9462ff;
  outline-offset: 5px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
main {
  max-width: 1280px;
  margin: auto;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h2 span,
h1 span {
  color: var(--cyan);
}
.skip-link {
  position: absolute;
  left: 10px;
  top: -60px;
  background: #fff;
  padding: 12px;
  z-index: 10;
}
.skip-link:focus {
  top: 10px;
}
.header {
  max-width: 1242px;
  min-height: 65px;
  margin: 7px auto 0;
  border: 1px solid #e2e3e7;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px 10px 25px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 22px;
  font-weight: 750;
  white-space: nowrap;
}
.brand img {
  width: 43px;
  height: 44px;
}
.header nav {
  display: flex;
  gap: 49px;
  align-items: center;
  margin-right: auto;
  margin-left: 105px;
  font-size: 13px;
  font-weight: 600;
}
.header nav a {
  position: relative;
  padding: 15px 0;
}
.header nav .active {
  color: var(--cyan);
}
.header nav .active:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 7px;
  right: 7px;
  height: 2px;
  background: var(--cyan);
}
.header-actions {
  display: flex;
  gap: 15px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid #d7d8de;
  border-radius: 9px;
  min-height: 50px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 0.18s,
    box-shadow 0.18s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 18px #09bed222;
}
.button.primary {
  background: #00b7d8;
  color: #fff;
  border-color: #00b7d8;
}
.header .button {
  min-height: 42px;
  padding: 0 19px;
}
.header .support {
  font-size: 13px;
}
.support span {
  font-size: 23px;
}
.download-icon {
  font-size: 26px;
  line-height: 1;
}
.hero {
  height: 644px;
  position: relative;
  isolation: isolate;
  padding: 46px 0 0 61px;
  overflow: hidden;
}
.hero-copy {
  width: 496px;
  position: relative;
  z-index: 1;
}
.hero-art {
  position: absolute;
  width: 700px;
  max-width: none;
  right: 25px;
  top: 8px;
  z-index: -1;
}
.eyebrow-line {
  display: flex;
  align-items: center;
  width: 552px;
  max-width: 112%;
  margin-bottom: 19px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 12px;
  border: 1px solid #cfeaf0;
  border-radius: 12px;
  font-size: 11px;
  white-space: nowrap;
  background: #ffffffbf;
}
.eyebrow i {
  width: 9px;
  height: 9px;
  background: var(--cyan);
  border-radius: 50%;
}
.line-arrow {
  display: block;
  position: relative;
  height: 4px;
  background: linear-gradient(90deg, #d8f8fe, var(--cyan), #ccf4ff);
  flex: 1;
  margin-right: 37px;
}
.line-arrow:after {
  content: "❯❯❯";
  position: absolute;
  right: -38px;
  top: -12px;
  color: var(--cyan);
  font-size: 25px;
  letter-spacing: -5px;
}
.line-arrow:before {
  content: "";
  position: absolute;
  right: 26px;
  top: -7px;
  width: 13px;
  height: 13px;
  background: white;
  border: 5px solid var(--cyan);
  box-shadow: 0 0 0 4px #b6f0ff;
  border-radius: 50%;
}
.hero h1 {
  font-size: 60px;
  line-height: 1;
  letter-spacing: -1.8px;
  font-weight: 800;
  margin-bottom: 9px;
}
.hero p {
  font-size: 13.5px;
  line-height: 1.47;
  color: #353943;
  margin-bottom: 17px;
  max-width: 444px;
}
.hero-actions {
  display: flex;
  gap: 15px;
  margin-top: 21px;
}
.hero-actions .primary {
  min-width: 195px;
}
.hero-actions .button:last-child {
  min-width: 159px;
}
.hero-actions .button:last-child span {
  font-size: 26px;
}
.hero-badges {
  display: flex;
  gap: 14px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}
.hero-badges li {
  height: 59px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid #e1e3e8;
  border-radius: 10px;
  font-size: 11px;
  white-space: nowrap;
}
.hero-badges b {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: #e3f9ff;
  color: var(--cyan);
  border-radius: 50%;
  font-size: 25px;
}
.hero-badges li:nth-child(2) b {
  background: #f6eaff;
  color: var(--purple);
}
.hero-badges li:nth-child(3) b {
  background: #ffedf4;
  color: #fa579b;
  font-size: 16px;
}
.about {
  padding: 52px 71px 54px;
  background:
    radial-gradient(ellipse at 7% 90%, #b4efff77, transparent 36%),
    radial-gradient(ellipse at 87% 87%, #fbd8f177, transparent 40%), #fafbfe;
  min-height: 722px;
}
.about-card {
  position: relative;
  border: 1px solid #dbe3f0;
  border-bottom: 9px solid #ffffffa6;
  border-radius: 40px;
  padding: 79px 72px 29px;
  box-shadow: 0 18px 28px #7d9cc31c;
  background: linear-gradient(115deg, #ffffffb8, #ffffff60);
  min-height: 615px;
}
.about h2 {
  font-size: 70px;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 28px;
}
.about-line {
  width: 494px;
  max-width: 90%;
  margin-bottom: 38px;
}
.about p {
  font-size: 17px;
  line-height: 1.8;
  color: #203456;
  margin-bottom: 15px;
}
.about p:last-child {
  margin-bottom: 0;
}
.dots {
  position: absolute;
  right: 30px;
  top: 35px;
  width: 167px;
  height: 80px;
  background-image: radial-gradient(#9ae7fc 1.5px, transparent 1.5px);
  background-size: 15px 15px;
  opacity: 0.55;
}
.features {
  padding: 29px 64px 50px;
}
.features-heading {
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
.features-heading .eyebrow {
  font-size: 14px;
  border-radius: 30px;
  padding: 7px 15px;
}
.eyebrow strong {
  color: var(--cyan);
  font-size: 22px;
  line-height: 18px;
}
.features h2 {
  font-size: 60px;
  letter-spacing: -1.7px;
  line-height: 1.13;
  margin: 17px 0 16px;
}
.features-heading p {
  font-size: 19px;
  line-height: 1.55;
  color: #464956;
}
.rings {
  position: absolute;
  right: 32px;
  top: 43px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    transparent 0 13px,
    #e8d9ff 14px 16px
  );
  opacity: 0.7;
  z-index: -1;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 14px;
}
.feature-card {
  border: 1px solid #e6e9ee;
  border-radius: 17px;
  overflow: hidden;
  position: relative;
  display: flex;
  background: linear-gradient(110deg, #fff, #f5fbfe);
  min-width: 0;
}
.feature-copy {
  z-index: 1;
  position: relative;
  padding: 31px 0 24px 28px;
  flex-shrink: 0;
  width: 42%;
}
.feature-number {
  display: inline-block;
  font-size: 27px;
  color: #00aff1;
  background: #e7f9ff;
  padding: 3px 10px;
  border-radius: 9px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 19px;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.77;
  color: #454b58;
}
.feature-card img {
  align-self: center;
  object-fit: contain;
  min-width: 0;
}
.feature-card.interface {
  grid-column: 1/-1;
  height: 495px;
  margin-bottom: 12px;
}
.interface .feature-copy {
  width: 34%;
  padding: 34px 45px 24px 39px;
}
.interface h3 {
  font-size: 30px;
  margin-bottom: 17px;
}
.interface p {
  font-size: 16px;
  line-height: 1.62;
}
.interface img {
  position: absolute;
  width: 755px;
  height: 478px;
  right: 10px;
  bottom: 0;
  max-width: 68%;
}
.wave {
  color: #00bded;
  font-size: 70px;
  line-height: 40px;
  display: block;
  margin-top: 15px;
  transform: scaleX(1.6);
  transform-origin: left;
}
.feature-card.ai,
.feature-card.timeline {
  height: 420px;
}
.ai {
  background: linear-gradient(130deg, #fff, #fff6fb);
  border-color: #f8e8f1;
}
.ai .feature-number,
.templates .feature-number {
  color: #e13bb4;
  background: #fcebf7;
}
.ai img {
  width: 54%;
  margin-left: 3%;
}
.timeline .feature-copy {
  width: 40%;
  padding-left: 25px;
  padding-right: 12px;
}
.timeline img {
  width: 57%;
  border-radius: 12px;
}
.filters {
  grid-column: 1/-1;
  height: 349px;
}
.filters .feature-copy {
  width: 21.5%;
  padding: 26px 27px 20px 28px;
}
.filters h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.filters p {
  font-size: 13px;
  line-height: 1.62;
}
.filters img {
  width: 73.4%;
  border-radius: 11px;
}
.templates,
.music {
  height: 350px;
}
.templates {
  background: linear-gradient(115deg, #fff, #fff9fd);
  border-color: #f8e8f1;
}
.templates .feature-copy {
  width: 41%;
  padding-top: 25px;
  padding-right: 9px;
}
.templates h3,
.music h3 {
  font-size: 22px;
  margin-bottom: 23px;
}
.templates p,
.music p {
  font-size: 12px;
  line-height: 1.8;
}
.templates img {
  width: 59%;
}
.music .feature-copy {
  width: 48%;
  padding: 25px 12px 20px 25px;
}
.music img {
  width: 46%;
  border-radius: 13px;
}
.export {
  grid-column: 1/-1;
  height: 299px;
}
.export .feature-copy {
  width: 27%;
  padding: 23px 30px 20px 28px;
}
.export h3 {
  font-size: 23px;
  margin-bottom: 11px;
}
.export p {
  font-size: 13px;
  line-height: 1.72;
}
.export img {
  width: 71.5%;
}
@media (min-width: 1000px) and (max-width: 1230px) {
  .header {
    margin-inline: 18px;
  }
  .header nav {
    margin-left: 30px;
    gap: 30px;
  }
  .hero-art {
    right: -40px;
  }
  .hero-copy {
    width: 45%;
  }
  .hero h1 {
    font-size: 54px;
  }
  .hero-badges {
    gap: 5px;
  }
  .hero-badges li {
    padding: 7px;
    font-size: 10px;
  }
  .about h2 {
    font-size: 62px;
  }
  .about-card {
    padding-inline: 50px;
  }
  .features h2 {
    font-size: 52px;
  }
  .feature-card p {
    font-size: 12px;
  }
  .interface p {
    font-size: 14px;
  }
  .features {
    padding-inline: 40px;
  }
}
@media (max-width: 999px) {
  .header {
    margin: 10px 16px;
    padding: 10px 16px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .header nav {
    order: 3;
    width: 100%;
    margin: 0;
    justify-content: center;
    gap: 45px;
  }
  .header-actions .support {
    display: none;
  }
  .hero {
    height: auto;
    min-height: 600px;
    padding: 30px 30px 0;
  }
  .hero-copy {
    width: 52%;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-art {
    width: 58%;
    right: -20px;
    top: 60px;
  }
  .hero-badges {
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
  .eyebrow-line {
    max-width: 100%;
  }
  .hero p {
    font-size: 13px;
  }
  .about {
    padding: 40px 30px;
    min-height: 0;
  }
  .about-card {
    padding: 45px 35px;
    min-height: 0;
  }
  .about h2 {
    font-size: 54px;
  }
  .about p {
    font-size: 16px;
  }
  .features {
    padding: 35px 25px;
  }
  .features h2 {
    font-size: 43px;
  }
  .features-heading p {
    font-size: 16px;
  }
  .desktop-break {
    display: none;
  }
  .feature-card .feature-copy {
    padding: 22px;
    width: 45%;
  }
  .feature-card h3 {
    font-size: 22px;
  }
  .feature-card p {
    font-size: 13px;
    line-height: 1.6;
  }
  .feature-card.interface {
    height: 460px;
  }
  .interface .feature-copy {
    width: 42%;
  }
  .interface img {
    max-width: 60%;
    height: auto;
  }
  .feature-card.ai,
  .feature-card.timeline,
  .feature-card.templates,
  .feature-card.music {
    grid-column: 1/-1;
    height: 350px;
  }
  .feature-card.ai img,
  .feature-card.timeline img,
  .feature-card.templates img,
  .feature-card.music img {
    max-height: 95%;
    width: 50%;
    object-fit: contain;
  }
  .feature-card.filters,
  .feature-card.export {
    height: auto;
    min-height: 300px;
  }
  .filters .feature-copy,
  .export .feature-copy {
    width: 35%;
  }
  .filters img,
  .export img {
    width: 63%;
  }
  .hero-actions {
    gap: 8px;
  }
  .hero-actions .button {
    padding: 0 13px;
    min-width: 0;
  }
  .hero-actions .primary {
    min-width: 0;
  }
  .hero-actions .button:last-child {
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .header {
    margin: 8px;
    border-radius: 12px;
    padding: 9px 12px;
  }
  .brand {
    font-size: 18px;
    gap: 7px;
  }
  .brand img {
    width: 33px;
    height: 34px;
  }
  .header .button {
    font-size: 11px;
    min-height: 37px;
    padding: 0 10px;
    gap: 6px;
  }
  .header nav {
    gap: 30px;
    font-size: 12px;
  }
  .header nav a {
    padding: 9px 0;
  }
  .hero {
    padding: 23px 22px 0;
    display: flex;
    flex-direction: column;
  }
  .hero-copy {
    width: 100%;
  }
  .hero h1 {
    font-size: 49px;
    line-height: 1.03;
    margin: 22px 0 16px;
  }
  .hero p {
    font-size: 14px;
    max-width: none;
    line-height: 1.6;
  }
  .hero-art {
    position: static;
    width: 100%;
    max-width: 100%;
    margin-top: 0;
  }
  .hero-badges {
    gap: 7px;
    justify-content: space-between;
    margin-top: 22px;
    margin-bottom: 10px;
  }
  .hero-badges li {
    flex: 1;
    font-size: 9px;
    gap: 5px;
    padding: 6px;
    height: 49px;
  }
  .hero-badges b {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    font-size: 20px;
  }
  .hero-badges li:nth-child(3) b {
    font-size: 12px;
  }
  .hero-actions .button {
    padding: 0 20px;
  }
  .eyebrow-line {
    width: 100%;
  }
  .eyebrow {
    font-size: 10px;
  }
  .line-arrow {
    margin-right: 28px;
  }
  .about {
    padding: 30px 16px;
  }
  .about-card {
    padding: 32px 23px;
    border-radius: 26px;
  }
  .about h2 {
    font-size: 39px;
    letter-spacing: -1.5px;
  }
  .about-line {
    width: 80%;
    margin-bottom: 28px;
  }
  .about p {
    font-size: 14px;
    line-height: 1.8;
  }
  .dots {
    width: 60px;
    right: 15px;
    top: 15px;
    opacity: 0.3;
  }
  .features {
    padding: 30px 16px;
  }
  .features h2 {
    font-size: 36px;
  }
  .features-heading p {
    font-size: 14px;
  }
  .features-heading .eyebrow {
    font-size: 12px;
  }
  .feature-grid {
    gap: 15px;
  }
  .feature-card {
    flex-direction: column !important;
    height: auto !important;
    min-height: 0 !important;
  }
  .feature-card .feature-copy {
    width: 100% !important;
    padding: 23px !important;
  }
  .feature-card h3 {
    font-size: 25px;
    margin-bottom: 12px;
  }
  .feature-card h3 br {
    display: none;
  }
  .feature-card p {
    font-size: 14px;
  }
  .feature-number {
    margin-bottom: 12px;
    font-size: 23px;
  }
  .feature-card img {
    position: static;
    width: calc(100% - 30px) !important;
    max-width: 100% !important;
    max-height: none !important;
    height: auto !important;
    margin: 0 15px 15px !important;
  }
  .interface img {
    margin-bottom: 0 !important;
  }
  .wave {
    display: none;
  }
  .feature-card.interface {
    margin-bottom: 0;
  }
  .rings {
    right: 0;
    opacity: 0.35;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
@media (max-width: 360px) {
  .header nav {
    gap: 24px;
  }
  .hero-actions .button {
    padding-inline: 13px;
    font-size: 12px;
    gap: 8px;
  }
}

/* Shared navigation to platform guides. */
.header nav { margin-left: 38px; gap: 27px; }
.platform-menu { position: relative; }
.platform-menu summary { cursor: pointer; list-style: none; display: flex; align-items: center; gap: 6px; padding: 15px 0; }
.platform-menu summary::-webkit-details-marker { display: none; }
.platform-menu[open] summary { color: var(--cyan); }
.platform-menu > div { position: absolute; top: calc(100% + 8px); left: -20px; min-width: 215px; padding: 9px; border: 1px solid #e3eaf2; border-radius: 13px; background: #fff; box-shadow: 0 14px 35px #15253c20; z-index: 20; }
.header nav .platform-menu a { display: block; padding: 12px; border-radius: 7px; white-space: nowrap; }
.header nav .platform-menu a:hover { background: #eefbfe; color: #008fa9; }
@media (max-width: 999px) { .header nav { margin-left: 0; gap: 32px; } }
@media (max-width: 600px) { .header nav { gap: 17px; font-size: 11px; } .platform-menu summary { padding: 9px 0; } .platform-menu > div { left: auto; right: -20px; } }
@media (max-width: 360px) { .header nav { gap: 10px; font-size: 10px; } }