:root {
  --night: #070711;
  --carbon: #0d0d1a;
  --carbon-soft: #121221;
  --white: #f7f6fb;
  --muted: #a7a4b7;
  --muted-strong: #cac7d6;
  --accent: #046ef2;
  --accent-mid: #1f73dc;
  --accent-soft: #3a78c5;
  --ice: #d3e5ff;
  --red: #ff5069;
  --line: rgba(255, 255, 255, .1);
  --line-strong: rgba(255, 255, 255, .17);
  --display: "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --body: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --page: min(1180px, calc(100vw - 48px));
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  background: var(--night);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 0%, rgba(4, 110, 242, .13), transparent 25rem),
    var(--night);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
textarea,
a {
  font: inherit;
}

button {
  color: inherit;
}

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

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

::selection {
  color: white;
  background: rgba(4, 110, 242, .78);
}

.page-noise {
  position: fixed;
  z-index: 99;
  inset: 0;
  pointer-events: none;
  opacity: .13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed;
  z-index: 90;
  top: 18px;
  left: 0;
  right: 0;
  pointer-events: none;
  transition: top .35s var(--ease);
}

.nav-shell {
  width: var(--page);
  min-height: 64px;
  margin: 0 auto;
  padding: 8px 10px 8px 13px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 20px;
  pointer-events: auto;
  transition:
    background .35s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    backdrop-filter .35s ease;
}

.site-header.is-scrolled {
  top: 10px;
}

.site-header.is-scrolled .nav-shell {
  border-color: var(--line);
  background: rgba(10, 10, 21, .72);
  box-shadow: 0 15px 50px rgba(0, 0, 0, .28), inset 0 1px rgba(255, 255, 255, .06);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
}

.brand,
.desktop-nav,
.nav-download {
  display: flex;
  align-items: center;
}

.brand {
  width: fit-content;
  gap: 11px;
  font: 600 17px/1 var(--display);
  letter-spacing: -.025em;
}

.brand__icon {
  width: 34px;
  height: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .44);
  border-radius: 10px;
  box-shadow:
    inset 0 1px rgba(255, 255, 255, .65),
    0 8px 18px rgba(22, 75, 170, .25);
}

.brand__icon img {
  width: 100%;
  height: 100%;
}

.desktop-nav {
  justify-content: center;
  gap: 34px;
  color: rgba(247, 246, 251, .62);
  font-size: 14px;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  transition: color .2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 3px;
  height: 1px;
  background: var(--ice);
  transition: left .25s var(--ease), right .25s var(--ease);
}

.desktop-nav a:hover {
  color: white;
}

.desktop-nav a:hover::after {
  left: 0;
  right: 0;
}

.nav-download {
  justify-self: end;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035)),
    rgba(255, 255, 255, .02);
  box-shadow: inset 0 1px rgba(255, 255, 255, .08);
  font-size: 14px;
  font-weight: 500;
  transition: transform .22s var(--ease), border-color .22s ease, background .22s ease;
}

.nav-download:hover {
  transform: translateY(-2px);
  border-color: rgba(147, 198, 255, .42);
  background: rgba(255, 255, 255, .09);
}

.nav-download .download-apple-icon {
  width: 18px;
  height: 18px;
  filter: invert(1);
}

.hero {
  position: relative;
  min-height: 1350px;
  overflow: hidden;
  padding: 180px 0 76px;
  background:
    linear-gradient(180deg, transparent 0 72%, var(--night) 97%),
    radial-gradient(ellipse at 50% 33%, rgba(4, 110, 242, .2), transparent 31%),
    var(--night);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  inset: auto 0 0;
  height: 440px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(7, 7, 17, 0) 0%,
    rgba(7, 7, 17, .12) 24%,
    rgba(7, 7, 17, .7) 62%,
    var(--night) 88%
  );
}

.hero__stars,
.final-card__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .55;
  background-image:
    radial-gradient(circle, rgba(211, 229, 255, .82) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(88, 157, 241, .48) 0 1px, transparent 1.4px);
  background-position: 0 0, 38px 62px;
  background-size: 118px 118px, 173px 173px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000, transparent 68%);
  mask-image: radial-gradient(ellipse at 50% 30%, #000, transparent 68%);
}

.hero__glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(1px);
}

.hero__glow--top {
  top: -390px;
  left: 50%;
  width: 760px;
  height: 600px;
  background: rgba(4, 110, 242, .3);
  box-shadow: 0 0 130px 70px rgba(31, 115, 220, .14);
  transform: translateX(-50%);
}

.hero__content {
  position: relative;
  z-index: 4;
  width: min(940px, calc(100vw - 48px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 5px 13px 5px 7px;
  color: rgba(247, 246, 251, .8);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, .04);
  box-shadow: inset 0 1px rgba(255, 255, 255, .08);
  font-size: 13px;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.eyebrow__mark {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(4, 110, 242, .76), rgba(58, 120, 197, .4));
  box-shadow: inset 0 1px rgba(255, 255, 255, .3);
}

.eyebrow__mark img {
  width: 18px;
}

.hero h1 {
  max-width: 1000px;
  margin: 30px 0 25px;
  font: 500 clamp(66px, 7.1vw, 108px)/.98 var(--display);
  letter-spacing: -.066em;
  text-wrap: balance;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, #f8fbff 8%, #d8e8fb 45%, #82a9d8 94%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__lead {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  text-wrap: balance;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.primary-button {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 12px 22px;
  border: 1px solid rgba(147, 198, 255, .45);
  border-radius: 18px;
  background:
    radial-gradient(circle at 70% 0%, rgba(255, 255, 255, .22), transparent 32%),
    linear-gradient(135deg, #046ef2, #3a78c5);
  box-shadow:
    0 16px 45px rgba(4, 110, 242, .32),
    inset 0 1px rgba(255, 255, 255, .35),
    inset 0 -1px rgba(44, 20, 105, .4);
  transition: transform .24s var(--ease), box-shadow .24s ease;
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow:
    0 22px 55px rgba(4, 110, 242, .42),
    inset 0 1px rgba(255, 255, 255, .4);
}

.primary-button .download-apple-icon {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
  margin-right: 14px;
  filter: invert(1);
}

.primary-button > span:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.primary-button strong {
  font-size: 15px;
  font-weight: 600;
}

.primary-button small {
  margin-top: 2px;
  color: rgba(255, 255, 255, .67);
  font-size: 11px;
}

.text-link {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(247, 246, 251, .7);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s ease;
}

.text-link:hover {
  color: white;
}

.text-link svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .22s var(--ease);
}

.text-link:hover svg {
  transform: translateX(3px);
}

.hero-product {
  position: relative;
  z-index: 2;
  width: min(1100px, calc(100vw - 36px));
  height: 650px;
  margin: 80px auto 0;
  display: grid;
  place-items: center;
  perspective: 1400px;
}

.hero-product::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 5%;
  height: 48%;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 42px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .016)),
    rgba(14, 14, 29, .74);
  box-shadow:
    0 -1px rgba(255, 255, 255, .06),
    0 60px 100px rgba(0, 0, 0, .45);
  transform: perspective(900px) rotateX(62deg) translateY(42%);
}

.hero-product__aurora {
  position: absolute;
  left: 50%;
  bottom: 9%;
  width: min(880px, 86vw);
  height: 350px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse, rgba(50, 128, 223, .38), rgba(31, 115, 220, .14) 42%, transparent 70%);
  filter: blur(25px);
  transform: translateX(-50%);
}

.product-window-wrap {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  z-index: 4;
  width: min(760px, calc(100vw - 64px));
  transform: translateY(63px) rotateX(calc(2deg + var(--tilt-x))) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform .22s ease-out;
}

.window-orbit {
  position: absolute;
  top: 46%;
  display: flex;
  align-items: center;
  width: 170px;
  color: rgba(247, 246, 251, .45);
  font-size: 11px;
  letter-spacing: .02em;
}

.window-orbit::after {
  content: "";
  flex: 1;
  height: 1px;
  margin-left: 11px;
  background: linear-gradient(90deg, rgba(147, 198, 255, .4), transparent);
}

.window-orbit--left {
  right: calc(100% + 25px);
  justify-content: flex-end;
}

.window-orbit--right {
  left: calc(100% + 25px);
  flex-direction: row-reverse;
}

.window-orbit--right::after {
  margin: 0 11px 0 0;
  transform: rotate(180deg);
}

.product-window {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  padding: 25px 25px 30px;
  border: 1px solid rgba(255, 255, 255, .19);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .055) 42%, rgba(255, 255, 255, .09)),
    rgba(30, 29, 43, .86);
  box-shadow:
    0 50px 120px rgba(0, 0, 0, .55),
    0 0 0 1px rgba(3, 3, 12, .36),
    inset 0 1px rgba(255, 255, 255, .28);
  -webkit-backdrop-filter: blur(34px) saturate(140%);
  backdrop-filter: blur(34px) saturate(140%);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.product-window.is-pinned {
  border-color: rgba(255, 80, 105, .72);
  box-shadow:
    0 50px 120px rgba(0, 0, 0, .55),
    0 20px 75px rgba(255, 55, 92, .18),
    inset 0 1px rgba(255, 255, 255, .28);
}

.product-window__shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--shine-x, 70%) var(--shine-y, 0%), rgba(255, 255, 255, .18), transparent 26%);
}

.product-window__header,
.product-window__footer,
.product-window__identity,
.product-window__actions,
.product-window__footer > div {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.product-window__header,
.product-window__footer {
  justify-content: space-between;
}

.product-window__header {
  margin-bottom: 19px;
}

.product-window__identity {
  gap: 11px;
}

.product-window__identity img {
  width: 39px;
}

.product-window__identity strong {
  font: 600 24px/1 var(--display);
  letter-spacing: -.035em;
}

.product-window__actions {
  gap: 8px;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  color: white;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  cursor: pointer;
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 1px rgba(255, 255, 255, .09);
  transition: transform .2s var(--ease), background .2s ease, box-shadow .2s ease;
}

.icon-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .13);
}

.icon-button.is-active {
  background: var(--red);
  box-shadow: 0 10px 28px rgba(255, 51, 88, .34), inset 0 1px rgba(255, 255, 255, .3);
}

.icon-button--decorative {
  cursor: default;
}

.icon-button--decorative:hover {
  transform: none;
}

.icon-button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-editor {
  position: relative;
  z-index: 2;
  height: 270px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 26px;
  background: rgba(5, 5, 14, .48);
  box-shadow: inset 0 1px rgba(255, 255, 255, .045);
  transition: height .08s linear;
}

.product-editor textarea {
  width: 100%;
  height: 100%;
  resize: none;
  padding: 23px 25px;
  color: rgba(255, 255, 255, .87);
  caret-color: var(--accent);
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 18px;
  line-height: 1.55;
}

.product-window__footer {
  margin-top: 16px;
}

.intelligence-label {
  color: rgba(247, 246, 251, .55);
  font-size: 13px;
}

.intelligence-spark {
  color: var(--ice);
  margin-right: 5px;
}

.product-window__footer > div {
  gap: 8px;
}

.writing-button {
  min-width: 116px;
  height: 41px;
  padding: 0 15px;
  color: rgba(255, 255, 255, .74);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, .065);
  transition: color .2s ease, background .2s ease, transform .2s var(--ease);
}

.writing-button:hover {
  color: white;
  background: rgba(255, 255, 255, .12);
  transform: translateY(-1px);
}

.writing-button span {
  margin-right: 5px;
  color: var(--ice);
}

.demo-resizer {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  height: 25px;
  display: grid;
  place-items: center;
  cursor: ns-resize;
  touch-action: none;
}

.demo-resizer span {
  width: 76px;
  height: 5px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .34);
}

.trust-row {
  position: relative;
  z-index: 5;
  width: min(730px, calc(100vw - 48px));
  margin: 10px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  color: rgba(247, 246, 251, .52);
  font-size: 12px;
}

.trust-row span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.trust-row i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 11px rgba(4, 110, 242, .75);
}

.flow-section,
.feature-section,
.final-section {
  position: relative;
  padding: 135px 0;
}

.flow-section {
  margin-top: -2px;
  overflow: hidden;
  background: var(--night);
}

.flow-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
  height: 520px;
  pointer-events: none;
  background: radial-gradient(circle at 50% 40%, rgba(31, 115, 220, .1), transparent 25rem);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 72%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 72%, transparent 100%);
}

.flow-section > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  width: min(740px, calc(100vw - 48px));
  margin: 0 auto 62px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow--quiet {
  min-height: 32px;
  padding: 5px 12px;
  color: rgba(247, 246, 251, .6);
  background: rgba(255, 255, 255, .025);
  font-size: 12px;
}

.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(4, 110, 242, .75);
}

.section-heading h2 {
  margin: 24px 0 20px;
  font: 500 clamp(48px, 5.2vw, 76px)/1.04 var(--display);
  letter-spacing: -.056em;
  text-wrap: balance;
}

.section-heading > p {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  text-wrap: balance;
}

.flow-grid {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.flow-card {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .04), transparent 48%),
    var(--carbon);
  box-shadow: inset 0 1px rgba(255, 255, 255, .045);
}

.flow-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 100%, rgba(4, 110, 242, .11), transparent 46%);
}

.flow-card__copy {
  position: relative;
  z-index: 2;
}

.step-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--ice);
  border: 1px solid rgba(147, 198, 255, .18);
  border-radius: 99px;
  background: rgba(147, 198, 255, .055);
  font-size: 11px;
  letter-spacing: .02em;
}

.flow-card h3,
.feature-panel h3 {
  margin: 19px 0 12px;
  font: 500 26px/1.15 var(--display);
  letter-spacing: -.04em;
}

.flow-card p,
.feature-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.menu-demo,
.paste-demo,
.continue-demo {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 242px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: rgba(5, 5, 14, .55);
}

.menu-demo__bar {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 0 13px;
  color: rgba(255, 255, 255, .6);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .035);
  font-size: 10px;
}

.menu-demo__status {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .09);
}

.menu-demo__status img {
  width: 20px;
}

.menu-demo__panel {
  position: absolute;
  top: 55px;
  right: 11px;
  width: 215px;
  height: 166px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .035)),
    rgba(26, 25, 38, .94);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .45), inset 0 1px rgba(255, 255, 255, .12);
}

.menu-demo__panel > div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font: 600 13px/1 var(--display);
}

.menu-demo__panel img {
  width: 24px;
}

.menu-demo__panel > span {
  display: block;
  height: 7px;
  margin: 9px 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, .08);
}

.menu-demo__panel > span:nth-of-type(2) {
  width: 82%;
}

.menu-demo__panel > span:nth-of-type(3) {
  width: 58%;
}

.paste-demo {
  padding: 35px 28px;
}

.paste-demo__line {
  position: relative;
  height: 10px;
  margin: 0 0 18px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .075);
}

.paste-demo__line span {
  display: block;
  width: 68%;
  height: 100%;
  border-radius: inherit;
  background: rgba(255, 255, 255, .13);
}

.paste-demo__line i {
  position: absolute;
  top: -4px;
  left: 69%;
  width: 1px;
  height: 18px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(4, 110, 242, .7);
}

.paste-demo__selection {
  width: fit-content;
  margin: 13px 0 18px;
  padding: 7px 9px;
  color: rgba(255, 255, 255, .82);
  border-radius: 6px;
  background: rgba(4, 110, 242, .32);
  font-size: 13px;
}

.paste-demo__line--short {
  width: 58%;
}

.paste-demo__status {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  color: rgba(247, 246, 251, .5);
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.paste-demo__status b {
  padding: 5px 8px;
  color: white;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: rgba(255, 255, 255, .06);
  font-size: 10px;
}

.continue-demo {
  display: grid;
  place-items: center;
}

.continue-demo__ring {
  position: absolute;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(4, 110, 242, .18);
  border-radius: 50%;
  box-shadow:
    0 0 0 28px rgba(4, 110, 242, .04),
    0 0 70px rgba(4, 110, 242, .09);
}

.continue-demo__icon {
  z-index: 2;
  width: 83px;
  height: 83px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .48);
  border-radius: 24%;
  box-shadow:
    0 22px 45px rgba(20, 71, 150, .32),
    inset 0 1px rgba(255, 255, 255, .7);
}

.continue-demo > span {
  position: absolute;
  bottom: 25px;
  color: rgba(247, 246, 251, .48);
  font-size: 11px;
}

.feature-section {
  background:
    radial-gradient(circle at 78% 30%, rgba(31, 115, 220, .1), transparent 28rem),
    var(--night);
}

.section-heading--compact {
  width: var(--page);
  align-items: flex-start;
  text-align: left;
}

.section-heading--compact h2 {
  margin-bottom: 0;
}

.feature-layout {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 16px;
}

.feature-panel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .045), transparent 45%),
    var(--carbon);
  box-shadow: inset 0 1px rgba(255, 255, 255, .05);
}

.feature-panel__copy {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.feature-panel__copy > div {
  max-width: 430px;
}

.feature-panel h3 {
  margin-top: 2px;
}

.feature-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  color: var(--ice);
  border: 1px solid rgba(147, 198, 255, .19);
  border-radius: 15px;
  background: rgba(4, 110, 242, .1);
}

.feature-icon--red {
  color: #ff8a9e;
  border-color: rgba(255, 80, 105, .2);
  background: rgba(255, 80, 105, .1);
}

.feature-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.pin-visual,
.writing-visual {
  position: absolute;
  left: 25px;
  right: 25px;
  bottom: 25px;
  height: 385px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
    rgba(5, 5, 14, .6);
  background-size: 34px 34px;
}

.ghost-app {
  position: absolute;
  width: 390px;
  height: 220px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 22px;
  background: rgba(255, 255, 255, .025);
}

.ghost-app--one {
  top: 75px;
  left: -80px;
  transform: rotate(4deg);
}

.ghost-app--two {
  top: 30px;
  right: -120px;
  transform: rotate(-5deg);
}

.ghost-app span {
  display: block;
  width: 80%;
  height: 7px;
  margin: 13px 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, .05);
}

.mini-textbox {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 30px;
  width: 470px;
  max-width: calc(100% - 50px);
  min-height: 230px;
  padding: 20px;
  border: 1px solid rgba(255, 80, 105, .6);
  border-radius: 29px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .13), rgba(255, 255, 255, .045)),
    rgba(31, 29, 42, .94);
  box-shadow:
    0 35px 80px rgba(0, 0, 0, .48),
    0 18px 60px rgba(255, 54, 91, .11),
    inset 0 1px rgba(255, 255, 255, .18);
  transform: translateX(-50%);
}

.mini-textbox header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mini-textbox header > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mini-textbox header img {
  width: 31px;
}

.mini-textbox header b {
  font: 600 16px/1 var(--display);
}

.mini-textbox header > span {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  color: white;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 8px 22px rgba(255, 55, 91, .32);
}

.mini-textbox svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-textbox p {
  min-height: 105px;
  margin: 16px 0 0;
  padding: 18px;
  color: rgba(255, 255, 255, .7);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(5, 5, 14, .43);
  font-size: 13px;
}

.writing-visual {
  padding: 50px 31px;
}

.writing-visual__text {
  position: relative;
  color: rgba(255, 255, 255, .75);
  font-size: 16px;
  line-height: 1.6;
}

.writing-visual__highlight {
  padding: 4px 2px;
  background: rgba(4, 110, 242, .33);
  box-shadow: 0 0 26px rgba(4, 110, 242, .08);
}

.writing-visual__text i {
  display: block;
  width: 72%;
  height: 8px;
  margin-top: 18px;
  border-radius: 4px;
  background: rgba(255, 255, 255, .07);
}

.writing-visual__tools {
  display: flex;
  gap: 8px;
  margin-top: 35px;
}

.writing-visual__tools span {
  padding: 9px 13px;
  color: rgba(255, 255, 255, .65);
  border: 1px solid var(--line);
  border-radius: 99px;
  background: rgba(255, 255, 255, .045);
  font-size: 11px;
}

.writing-visual__result {
  margin-top: 24px;
  padding: 17px;
  color: rgba(255, 255, 255, .8);
  border: 1px solid rgba(147, 198, 255, .15);
  border-radius: 15px;
  background: linear-gradient(120deg, rgba(4, 110, 242, .1), rgba(211, 229, 255, .035));
  font-size: 13px;
}

.final-section {
  padding-bottom: 54px;
}

.final-card {
  position: relative;
  width: var(--page);
  min-height: 710px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 42px;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(4, 110, 242, .24), transparent 48%),
    linear-gradient(150deg, rgba(255, 255, 255, .045), transparent 35%),
    var(--carbon);
  box-shadow: inset 0 1px rgba(255, 255, 255, .07);
}

.final-card__stars {
  opacity: .42;
}

.final-card__glow {
  position: absolute;
  left: 50%;
  bottom: -300px;
  width: 720px;
  height: 520px;
  border-radius: 50%;
  background: rgba(4, 110, 242, .4);
  box-shadow: 0 0 120px 75px rgba(31, 115, 220, .12);
  transform: translateX(-50%);
}

.final-card__content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 70px 24px;
  text-align: center;
}

.app-icon-premium {
  width: 94px;
  height: 94px;
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 23%;
  background: rgba(255, 255, 255, .23);
  box-shadow:
    inset 0 2px 1px rgba(255, 255, 255, .75),
    inset 0 -16px 26px rgba(0, 48, 118, .22),
    0 25px 45px rgba(17, 62, 140, .28);
}

.final-card__kicker {
  color: var(--ice);
  font-size: 12px;
  letter-spacing: .06em;
}

.final-card h2 {
  margin: 19px 0 20px;
  font: 500 clamp(52px, 5.6vw, 82px)/1.03 var(--display);
  letter-spacing: -.058em;
}

.final-card__content > p {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 17px;
}

.primary-button--light {
  color: var(--night);
  border-color: rgba(255, 255, 255, .7);
  background: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .28), inset 0 1px white;
}

.primary-button--light:hover {
  box-shadow: 0 24px 70px rgba(0, 0, 0, .38), inset 0 1px white;
}

.primary-button--light .download-apple-icon {
  filter: none;
}

.primary-button--light small {
  color: rgba(7, 7, 17, .52);
}

.rights-section {
  width: var(--page);
  margin: 0 auto;
  padding: 0 0 96px;
}

.rights-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 42px 48px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 34px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background:
    radial-gradient(circle at 14% 20%, rgba(4, 110, 242, .14), transparent 19rem),
    linear-gradient(135deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .018));
  box-shadow:
    inset 0 1px rgba(255, 255, 255, .08),
    0 32px 90px rgba(0, 0, 0, .22);
}

.rights-card::after {
  content: "©";
  position: absolute;
  right: 28px;
  top: 50%;
  color: rgba(255, 255, 255, .022);
  font: 600 240px/1 var(--display);
  transform: translateY(-51%);
  pointer-events: none;
}

.rights-card__seal {
  position: relative;
  z-index: 1;
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(122, 184, 255, .32);
  border-radius: 23px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .025)),
    rgba(4, 110, 242, .08);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, .18),
    0 18px 45px rgba(4, 69, 161, .2);
}

.rights-card__seal svg {
  width: 34px;
  fill: none;
  stroke: var(--ice);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.rights-card__copy {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.rights-card__copy > span {
  color: #78b5ff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rights-card h2 {
  margin: 9px 0 12px;
  font: 500 clamp(28px, 3vw, 42px)/1.05 var(--display);
  letter-spacing: -.045em;
}

.rights-card p {
  max-width: 770px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  width: var(--page);
  min-height: 120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: rgba(247, 246, 251, .4);
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.brand--footer {
  color: rgba(247, 246, 251, .75);
  font-size: 14px;
}

.brand--footer .brand__icon {
  width: 29px;
  height: 29px;
  border-radius: 9px;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.footer-links {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-links a {
  transition: color .2s ease;
}

.footer-links a:hover,
.footer-links a[aria-current="page"] {
  color: white;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% -7%, rgba(4, 110, 242, .19), transparent 34rem),
    var(--night);
}

.site-header--legal {
  top: 14px;
}

.site-header--legal .nav-shell {
  border-color: var(--line);
  background: rgba(10, 10, 21, .74);
  box-shadow: 0 15px 50px rgba(0, 0, 0, .28), inset 0 1px rgba(255, 255, 255, .06);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  backdrop-filter: blur(24px) saturate(140%);
}

.legal-nav-title {
  justify-self: center;
  color: rgba(247, 246, 251, .46);
  font-size: 12px;
  letter-spacing: .04em;
}

.legal-back {
  padding-inline: 14px 16px;
}

.legal-back svg {
  order: -1;
}

.legal-main {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 120px);
  padding: 190px 0 120px;
}

.legal-main::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .34;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(211, 229, 255, .75) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(88, 157, 241, .38) 0 1px, transparent 1.4px);
  background-position: 0 0, 38px 62px;
  background-size: 144px 144px, 211px 211px;
  -webkit-mask-image: linear-gradient(#000, transparent 43rem);
  mask-image: linear-gradient(#000, transparent 43rem);
}

.legal-hero,
.legal-shell,
.imprint-grid,
.imprint-stamp {
  position: relative;
  z-index: 1;
}

.legal-hero {
  width: min(900px, calc(100vw - 48px));
  margin: 0 auto 112px;
  text-align: center;
}

.legal-hero__glow {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: -270px;
  width: 720px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(4, 110, 242, .24), transparent 67%);
  transform: translateX(-50%);
  filter: blur(14px);
  pointer-events: none;
}

.legal-kicker {
  width: fit-content;
  min-height: 34px;
  margin: 0 auto;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted-strong);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 1px rgba(255, 255, 255, .06);
  font-size: 11px;
}

.legal-kicker span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(4, 110, 242, .9);
}

.legal-hero h1 {
  margin: 30px 0 24px;
  font: 500 clamp(58px, 7.8vw, 104px)/.98 var(--display);
  letter-spacing: -.068em;
}

.legal-hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, #f7f6fb, #76b3ff 64%, #3a78c5);
  -webkit-background-clip: text;
  background-clip: text;
}

.legal-hero > p {
  max-width: 610px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

.legal-summary {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-summary span {
  min-height: 35px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(247, 246, 251, .62);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
  font-size: 11px;
}

.legal-summary i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #53a0ff;
  box-shadow: 0 0 10px rgba(4, 110, 242, .78);
}

.legal-shell {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  align-items: start;
  gap: clamp(46px, 7vw, 98px);
}

.legal-index {
  position: sticky;
  top: 108px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.legal-index > span {
  margin-bottom: 14px;
  color: rgba(247, 246, 251, .35);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-index a {
  padding: 8px 0;
  color: rgba(247, 246, 251, .45);
  font-size: 12px;
  transition: color .2s ease, transform .2s var(--ease);
}

.legal-index a:hover {
  color: white;
  transform: translateX(3px);
}

.legal-document {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .016)),
    rgba(10, 10, 20, .64);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, .07),
    0 36px 110px rgba(0, 0, 0, .28);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.legal-document__intro {
  padding: 42px 46px 38px;
  background: radial-gradient(circle at 0 0, rgba(4, 110, 242, .13), transparent 26rem);
}

.legal-document__intro > span {
  color: #76b3ff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-document__intro p {
  max-width: 750px;
  margin: 12px 0 0;
  color: var(--muted-strong);
  font-size: 16px;
}

.legal-document > section,
.imprint-details > section {
  padding: 42px 46px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 22px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 110px;
}

.legal-number {
  color: rgba(118, 179, 255, .64);
  font: 500 10px/1.5 var(--display);
  letter-spacing: .08em;
}

.legal-document h2,
.imprint-details h2 {
  margin: -5px 0 16px;
  font: 500 clamp(24px, 2.7vw, 34px)/1.1 var(--display);
  letter-spacing: -.045em;
}

.legal-document p,
.imprint-details p {
  margin: 0 0 15px;
  color: var(--muted);
  font-size: 14px;
}

.legal-document p:last-child,
.imprint-details p:last-child {
  margin-bottom: 0;
}

.legal-document a {
  color: #76b3ff;
  text-decoration: underline;
  text-decoration-color: rgba(118, 179, 255, .38);
  text-underline-offset: 3px;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.legal-document a:hover {
  color: white;
  text-decoration-color: rgba(255, 255, 255, .7);
}

.legal-address {
  width: fit-content;
  margin: 20px 0;
  padding: 20px 24px;
  color: var(--muted-strong);
  border: 1px solid var(--line);
  border-radius: 19px;
  background: rgba(255, 255, 255, .03);
  font-style: normal;
}

.legal-address strong {
  display: block;
  margin-bottom: 7px;
  color: white;
}

.legal-main--imprint {
  padding-bottom: 80px;
}

.legal-hero--compact {
  margin-bottom: 86px;
}

.legal-hero--compact > p {
  max-width: 530px;
}

.imprint-grid {
  width: var(--page);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 24px;
}

.imprint-owner,
.imprint-details {
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .015)),
    rgba(10, 10, 20, .64);
  box-shadow: inset 0 1px rgba(255, 255, 255, .07), 0 30px 90px rgba(0, 0, 0, .23);
  -webkit-backdrop-filter: blur(22px);
  backdrop-filter: blur(22px);
}

.imprint-owner {
  position: sticky;
  top: 108px;
  overflow: hidden;
  min-height: 510px;
  padding: 46px;
}

.imprint-owner::after {
  content: "©";
  position: absolute;
  right: -22px;
  bottom: -55px;
  color: rgba(255, 255, 255, .025);
  font: 600 230px/1 var(--display);
}

.imprint-label {
  color: #76b3ff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.imprint-owner h2 {
  margin: 22px 0 8px;
  font: 500 clamp(34px, 4vw, 56px)/1.02 var(--display);
  letter-spacing: -.055em;
}

.imprint-brand-origin {
  max-width: 280px;
  margin: 0 0 34px;
  color: rgba(247, 246, 251, .62);
  font-size: 13px;
  font-style: italic;
  line-height: 1.45;
}

.imprint-owner address {
  color: var(--muted-strong);
  font-style: normal;
  font-size: 15px;
}

.imprint-contact {
  position: relative;
  z-index: 1;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.imprint-contact span {
  color: rgba(247, 246, 251, .4);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.imprint-contact p {
  margin: 7px 0 0;
  color: var(--muted-strong);
  font-size: 13px;
}

.imprint-contact a {
  color: #8cc0ff;
  text-decoration: underline;
  text-decoration-color: rgba(140, 192, 255, .34);
  text-underline-offset: 3px;
  transition: color .2s ease, text-decoration-color .2s ease;
}

.imprint-contact a:hover {
  color: white;
  text-decoration-color: rgba(255, 255, 255, .72);
}

.imprint-details {
  overflow: hidden;
}

.imprint-details > section:first-child {
  border-top: 0;
}

.imprint-stamp {
  width: var(--page);
  margin: 22px auto 0;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  color: rgba(247, 246, 251, .42);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 11px;
}

.imprint-stamp strong {
  color: rgba(247, 246, 251, .7);
  font-weight: 500;
}

.site-footer--legal {
  position: relative;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity .8s var(--ease),
    transform .8s var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.flow-card[data-reveal]:nth-child(2),
.feature-panel[data-reveal]:nth-child(2) {
  transition-delay: .08s;
}

.flow-card[data-reveal]:nth-child(3) {
  transition-delay: .16s;
}

button:focus-visible,
a:focus-visible,
[role="separator"]:focus-visible {
  outline: 2px solid var(--ice);
  outline-offset: 4px;
}

@media (max-width: 1080px) {
  .window-orbit {
    display: none;
  }

  .flow-card {
    padding: 25px;
  }

  .menu-demo,
  .paste-demo,
  .continue-demo {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}

@media (max-width: 900px) {
  :root {
    --page: min(720px, calc(100vw - 36px));
  }

  .desktop-nav {
    display: none;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .hero {
    min-height: 1260px;
  }

  .product-window-wrap {
    width: min(700px, calc(100vw - 48px));
  }

  .trust-row {
    gap: 24px;
  }

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

  .flow-card {
    min-height: 445px;
  }

  .flow-card__copy {
    max-width: 58%;
  }

  .menu-demo,
  .paste-demo,
  .continue-demo {
    top: 24px;
    bottom: 24px;
    left: auto;
    width: 38%;
    height: auto;
  }

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

  .feature-panel {
    min-height: 600px;
  }

  .legal-shell {
    grid-template-columns: 1fr;
  }

  .legal-index {
    position: static;
    padding: 15px;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 16px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, .025);
  }

  .legal-index > span {
    width: 100%;
    margin-bottom: 4px;
  }

  .legal-index a {
    padding: 4px 0;
  }

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

  .imprint-owner {
    position: relative;
    top: auto;
    min-height: 410px;
  }
}

@media (max-width: 620px) {
  :root {
    --page: calc(100vw - 28px);
  }

  .page-noise {
    opacity: .08;
  }

  .site-header {
    top: 9px;
  }

  .nav-shell {
    min-height: 56px;
    padding: 6px 7px 6px 10px;
    border-color: var(--line);
    border-radius: 17px;
    background: rgba(10, 10, 21, .68);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
  }

  .brand {
    gap: 8px;
    font-size: 15px;
  }

  .brand__icon {
    width: 31px;
    height: 31px;
    border-radius: 9px;
  }

  .nav-download {
    min-height: 40px;
    padding-inline: 13px;
    border-radius: 12px;
    font-size: 12px;
  }

  .nav-download .download-apple-icon {
    width: 16px;
    height: 16px;
  }

  .hero {
    min-height: 1160px;
    padding: 132px 0 55px;
    background:
      linear-gradient(180deg, transparent 0 76%, var(--night) 96%),
      radial-gradient(ellipse at 50% 27%, rgba(4, 110, 242, .23), transparent 33%),
      var(--night);
  }

  .hero__content {
    width: calc(100vw - 34px);
  }

  .hero__stars {
    opacity: .38;
    background-size: 105px 105px, 151px 151px;
  }

  .hero__glow--top {
    top: -300px;
    width: 410px;
  }

  .hero__eyebrow {
    font-size: 11px;
  }

  .hero h1 {
    margin: 25px 0 21px;
    font-size: clamp(48px, 15vw, 66px);
    line-height: 1.02;
    letter-spacing: -.061em;
  }

  .hero__lead {
    max-width: 350px;
    font-size: 15px;
  }

  .hero__actions {
    width: 100%;
    margin-top: 28px;
    flex-direction: column;
    gap: 19px;
  }

  .primary-button {
    min-height: 60px;
  }

  .hero-product {
    width: 100vw;
    height: 535px;
    margin-top: 35px;
  }

  .hero-product::before {
    left: 5%;
    right: 5%;
    bottom: 4%;
    height: 42%;
    border-radius: 28px;
  }

  .hero-product__aurora {
    bottom: 12%;
    width: 420px;
    height: 230px;
  }

  .product-window-wrap {
    width: calc(100vw - 24px);
    transform: translateY(78px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  }

  .product-window {
    min-height: 372px;
    padding: 16px 15px 24px;
    border-radius: 28px;
  }

  .product-window__header {
    margin-bottom: 13px;
  }

  .product-window__identity {
    gap: 7px;
  }

  .product-window__identity img {
    width: 31px;
  }

  .product-window__identity strong {
    font-size: 18px;
  }

  .product-window__actions {
    gap: 5px;
  }

  .icon-button {
    width: 38px;
    height: 38px;
  }

  .icon-button svg {
    width: 18px;
  }

  .product-editor {
    height: 205px;
    border-radius: 20px;
  }

  .product-editor textarea {
    padding: 17px;
    font-size: 14px;
  }

  .product-window__footer {
    margin-top: 12px;
  }

  .intelligence-label {
    display: none;
  }

  .product-window__footer > div {
    width: 100%;
  }

  .writing-button {
    flex: 1;
    min-width: 0;
    height: 38px;
    padding: 0 8px;
    font-size: 11px;
  }

  .demo-resizer span {
    width: 58px;
    height: 4px;
  }

  .trust-row {
    width: calc(100vw - 44px);
    margin-top: -7px;
    gap: 8px;
    justify-content: space-between;
    font-size: 9px;
  }

  .trust-row span {
    gap: 5px;
  }

  .flow-section,
  .feature-section,
  .final-section {
    padding: 90px 0;
  }

  .section-heading {
    width: calc(100vw - 34px);
    margin-bottom: 38px;
  }

  .section-heading h2 {
    margin: 19px 0 15px;
    font-size: 45px;
    letter-spacing: -.055em;
  }

  .section-heading > p {
    font-size: 14px;
  }

  .flow-grid {
    gap: 12px;
  }

  .flow-card {
    min-height: 520px;
    padding: 23px;
    border-radius: 24px;
  }

  .flow-card__copy {
    max-width: none;
  }

  .flow-card h3,
  .feature-panel h3 {
    font-size: 24px;
  }

  .menu-demo,
  .paste-demo,
  .continue-demo {
    top: auto;
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    height: 250px;
  }

  .section-heading--compact {
    width: calc(100vw - 34px);
  }

  .feature-panel {
    min-height: 610px;
    padding: 23px;
    border-radius: 25px;
  }

  .feature-panel__copy {
    gap: 13px;
  }

  .feature-icon {
    width: 43px;
    height: 43px;
    border-radius: 13px;
  }

  .feature-panel__copy > div {
    flex: 1;
  }

  .pin-visual,
  .writing-visual {
    left: 15px;
    right: 15px;
    bottom: 15px;
    height: 390px;
    border-radius: 20px;
  }

  .mini-textbox {
    width: calc(100% - 24px);
    max-width: none;
    bottom: 20px;
    padding: 15px;
    border-radius: 23px;
  }

  .writing-visual {
    padding: 45px 20px;
  }

  .final-section {
    padding-bottom: 35px;
  }

  .final-card {
    min-height: 680px;
    border-radius: 28px;
  }

  .final-card__content {
    padding-inline: 18px;
  }

  .final-card h2 {
    font-size: 45px;
  }

  .final-card__content > p {
    font-size: 14px;
  }

  .rights-section {
    padding-bottom: 60px;
  }

  .rights-card {
    min-height: 0;
    padding: 30px 24px;
    grid-template-columns: 1fr;
    gap: 22px;
    border-radius: 25px;
  }

  .rights-card__seal {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }

  .rights-card__seal svg {
    width: 27px;
  }

  .rights-card::after {
    right: -8px;
    top: auto;
    bottom: -33px;
    font-size: 160px;
    transform: none;
  }

  .rights-card h2 {
    font-size: 30px;
  }

  .rights-card p {
    font-size: 12px;
  }

  .site-footer {
    min-height: 180px;
    padding: 28px 0;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 15px;
  }

  .site-footer p {
    text-align: left;
  }

  .footer-links {
    justify-self: start;
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .site-header--legal .legal-nav-title {
    display: none;
  }

  .legal-main {
    padding: 140px 0 74px;
  }

  .legal-hero {
    width: calc(100vw - 30px);
    margin-bottom: 64px;
  }

  .legal-hero__glow {
    top: -220px;
    width: 430px;
    height: 390px;
  }

  .legal-hero h1 {
    margin-top: 25px;
    font-size: clamp(46px, 13vw, 62px);
    letter-spacing: -.062em;
  }

  .legal-hero > p {
    font-size: 14px;
  }

  .legal-summary {
    margin-top: 25px;
    gap: 7px;
  }

  .legal-shell {
    gap: 20px;
  }

  .legal-index {
    display: none;
  }

  .legal-document {
    border-radius: 25px;
  }

  .legal-document__intro {
    padding: 28px 24px;
  }

  .legal-document__intro p {
    font-size: 14px;
  }

  .legal-document > section,
  .imprint-details > section {
    padding: 30px 24px;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .legal-document h2,
  .imprint-details h2 {
    margin-top: 0;
    font-size: 26px;
  }

  .legal-address {
    width: 100%;
    padding: 18px;
  }

  .legal-hero--compact {
    margin-bottom: 54px;
  }

  .imprint-grid {
    gap: 14px;
  }

  .imprint-owner,
  .imprint-details {
    border-radius: 25px;
  }

  .imprint-owner {
    min-height: 390px;
    padding: 30px 24px;
  }

  .imprint-owner h2 {
    font-size: 39px;
  }

  .imprint-stamp {
    margin-top: 14px;
    padding: 18px 20px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .product-window-wrap {
    transform: none !important;
  }
}
