:root {
  color-scheme: light;
  --ink: #102033;
  --muted: #56677b;
  --soft: #758599;
  --blue: #2266d8;
  --blue-deep: #17448f;
  --cyan: #6bc7ef;
  --lavender: #a7b7ff;
  --page: #f7fbff;
  --line: rgba(255, 255, 255, 0.68);
  --glass: rgba(255, 255, 255, 0.58);
  --glass-bright: rgba(255, 255, 255, 0.78);
  --shadow: 0 28px 90px rgba(23, 64, 123, 0.18), 0 10px 28px rgba(28, 80, 150, 0.12);
  --max: 1200px;
  font-family: -apple-system, "SF Pro Display", "SF Pro Text", BlinkMacSystemFont, "Inter", sans-serif;
  background: #eef7ff;
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(78, 151, 255, 0.34), transparent 38rem),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.78), transparent 42rem),
    linear-gradient(180deg, #eaf6ff 0%, #f7fbff 38%, #f3f8ff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(42, 102, 175, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 102, 175, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(34, 102, 216, 0.34);
  outline-offset: 4px;
}

.ambient {
  position: fixed;
  z-index: -2;
  border-radius: 999px;
  filter: blur(72px);
  opacity: 0.5;
  transform: translate3d(0, 0, 0);
  animation: drift 30s ease-in-out infinite alternate;
}

.ambient-a {
  width: 44vw;
  height: 44vw;
  min-width: 340px;
  min-height: 340px;
  left: -12vw;
  top: 6vh;
  background: #8fc8ff;
}

.ambient-b {
  width: 38vw;
  height: 38vw;
  min-width: 300px;
  min-height: 300px;
  right: -9vw;
  top: 22vh;
  background: #b9c6ff;
  animation-delay: -8s;
}

.ambient-c {
  width: 34vw;
  height: 34vw;
  min-width: 280px;
  min-height: 280px;
  left: 38vw;
  bottom: -14vh;
  background: #bceeff;
  animation-delay: -16s;
}

.liquid {
  position: relative;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)),
    radial-gradient(circle at 18% 0%, rgba(141, 202, 255, 0.34), transparent 44%),
    rgba(255, 255, 255, 0.56);
  border: 1px solid var(--line);
  box-shadow: var(--shadow), inset 0 1px rgba(255, 255, 255, 0.95), inset 0 -24px 52px rgba(75, 148, 225, 0.08);
  -webkit-backdrop-filter: blur(34px) saturate(165%);
  backdrop-filter: blur(34px) saturate(165%);
}

.liquid::before {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.62), transparent 28%, transparent 62%, rgba(255, 255, 255, 0.32));
  opacity: 0.72;
}

.liquid::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.62), transparent 22%),
    radial-gradient(circle at 78% 88%, rgba(69, 147, 234, 0.12), transparent 34%);
  opacity: 0.56;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 16px clamp(14px, 4vw, 38px);
  transition: padding 220ms ease;
}

.nav.is-condensed {
  padding-top: 8px;
  padding-bottom: 8px;
}

.nav-shell {
  max-width: var(--max);
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 0 auto;
  padding: 8px 10px 8px 18px;
  border-radius: 999px;
}

.brand,
.nav-links,
.nav-cta {
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 790;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(34, 102, 216, 0.26);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 3vw, 32px);
  color: #304761;
  font-size: 14px;
  font-weight: 560;
}

.nav-cta {
  justify-self: end;
}

.button {
  position: relative;
  z-index: 1;
  isolation: isolate;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  overflow: hidden;
  cursor: pointer;
  color: #123761;
  font-size: 14px;
  font-weight: 780;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(215, 236, 255, 0.54)),
    rgba(255, 255, 255, 0.62);
  box-shadow:
    0 16px 36px rgba(33, 99, 184, 0.18),
    inset 0 1px rgba(255, 255, 255, 0.98),
    inset 0 -18px 30px rgba(56, 135, 224, 0.1);
  -webkit-backdrop-filter: blur(26px) saturate(165%);
  backdrop-filter: blur(26px) saturate(165%);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button.primary {
  border-color: rgba(126, 196, 255, 0.58);
  background: transparent;
}

.button.primary::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -2;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    rgba(255, 255, 255, 0.2),
    rgba(65, 158, 255, 0.22),
    rgba(27, 113, 255, 0.95),
    rgba(116, 213, 255, 0.9),
    rgba(255, 255, 255, 0.24),
    rgba(65, 158, 255, 0.22),
    rgba(27, 113, 255, 0.95),
    rgba(255, 255, 255, 0.2)
  );
  animation: border-orbit 4.8s linear infinite;
  filter: saturate(135%);
}

.button.primary::after {
  content: "";
  position: absolute;
  inset: 2px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(211, 235, 255, 0.58)),
    rgba(255, 255, 255, 0.68);
  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.98),
    inset 0 -18px 30px rgba(56, 135, 224, 0.12);
  -webkit-backdrop-filter: blur(26px) saturate(170%);
  backdrop-filter: blur(26px) saturate(170%);
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 22px 48px rgba(33, 99, 184, 0.22),
    inset 0 1px rgba(255, 255, 255, 1),
    inset 0 -18px 30px rgba(56, 135, 224, 0.12);
}

.button.primary:hover {
  box-shadow:
    0 24px 58px rgba(20, 113, 255, 0.26),
    0 0 34px rgba(53, 164, 255, 0.24),
    inset 0 1px rgba(255, 255, 255, 1);
}

.button.ghost {
  color: #253b52;
  background: rgba(255, 255, 255, 0.34);
}

.icon {
  width: 18px;
  height: 18px;
}

main {
  overflow: hidden;
}

section {
  padding: clamp(64px, 8vw, 104px) clamp(18px, 4vw, 40px);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.hero {
  padding-top: clamp(30px, 4vw, 58px);
  padding-bottom: clamp(28px, 4vw, 48px);
}

#features {
  padding-top: clamp(34px, 5vw, 62px);
}

.hero-center {
  text-align: center;
}

.hero-logo {
  display: block;
  width: clamp(64px, 7vw, 88px);
  height: clamp(64px, 7vw, 88px);
  margin: 0 auto 18px;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(34, 102, 216, 0.18));
}

.eyebrow {
  margin: 0 0 14px;
  color: #27618e;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin: 0 auto 18px;
  font-size: clamp(42px, 5.15vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4.9vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  letter-spacing: 0;
}

.lead {
  max-width: 710px;
  margin: 0 auto 24px;
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.52;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 0;
}

.hero-stage {
  margin-top: clamp(28px, 4.2vw, 48px);
}

.hero-shot,
.screenshot-frame {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 10px;
  border-radius: 30px;
  overflow: hidden;
}

.screenshot-frame {
  transform: perspective(1600px) rotateX(1.5deg);
}

.hero-shot img,
.screenshot-frame img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(28, 65, 112, 0.16);
}

.hero-shot img {
  height: clamp(360px, 46vw, 650px);
  object-fit: cover;
  object-position: center top;
}

.hero-carousel {
  height: clamp(360px, 46vw, 650px);
}

.hero-carousel img {
  position: absolute;
  inset: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  z-index: 1;
  object-fit: cover;
  object-position: center top;
  transition: opacity 1200ms ease;
}

.hero-frame-dark {
  animation: hero-crossfade 8s ease-in-out infinite;
}

.hero-frame-light {
  opacity: 1;
}

.screenshot-frame {
  max-width: none;
  margin: 0;
  width: 100%;
  padding: 8px;
}

.showcase-row .screenshot-frame {
  width: 90%;
  justify-self: center;
}

.screenshot-frame img {
  height: auto;
  object-fit: contain;
  object-position: center center;
  background: rgba(255, 255, 255, 0.72);
}

.hero-shot::after,
.screenshot-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  pointer-events: none;
  border-radius: 22px;
  background: linear-gradient(104deg, transparent 0 32%, rgba(255, 255, 255, 0.36) 45%, transparent 60%);
  opacity: 0;
  animation: sheen 9s ease-in-out infinite;
}

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

.section-head.centered {
  margin-inline: auto;
  text-align: center;
}

.section-head p,
.feature-card p,
.workflow-step p,
.price-card p,
.faq-panel p,
.footer-cta p {
  color: var(--muted);
  line-height: 1.58;
}

.section-head p {
  font-size: 18px;
}

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

.feature-card {
  min-height: 220px;
  padding: 24px;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 34px 90px rgba(23, 64, 123, 0.2), 0 14px 34px rgba(28, 80, 150, 0.14);
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 14px;
  color: #1d5da7;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.74);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  overflow: visible;
}

.feature-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.private-ai {
  padding-top: 0;
}

.private-ai-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  align-items: center;
  gap: clamp(28px, 5vw, 58px);
  padding: clamp(24px, 4vw, 44px);
  border-radius: 34px;
  overflow: hidden;
}

.private-ai-panel > * {
  position: relative;
  z-index: 1;
}

.private-ai-copy {
  max-width: 500px;
}

.private-ai-copy h2 {
  max-width: 500px;
  font-size: clamp(34px, 4.2vw, 56px);
}

.private-ai-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.ai-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.ai-points span {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 14px;
  color: #294e77;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.5), rgba(246, 251, 255, 0.24)),
    rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 760;
  box-shadow:
    0 10px 28px rgba(32, 82, 140, 0.06),
    inset 0 1px rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
  backdrop-filter: blur(18px) saturate(145%);
}

.private-ai-shot {
  max-width: none;
  margin: 0;
}

.product-showcase {
  padding-top: 0;
}

.showcase-stack {
  display: grid;
  gap: clamp(38px, 6vw, 72px);
}

.showcase-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(26px, 4.4vw, 58px);
}

.showcase-row.reverse .showcase-copy {
  order: 2;
}

.showcase-row.reverse {
  grid-template-columns: minmax(0, 1.38fr) minmax(260px, 0.62fr);
}

.showcase-copy {
  max-width: 430px;
}

.showcase-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(30px, 3.7vw, 44px);
  line-height: 1.04;
}

.showcase-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.blue-band {
  background:
    radial-gradient(circle at 12% 0%, rgba(91, 169, 255, 0.2), transparent 30rem),
    radial-gradient(circle at 85% 20%, rgba(142, 171, 255, 0.22), transparent 34rem);
}

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

.workflow-step {
  padding: 24px;
  border-radius: 24px;
}

.workflow-step > * {
  position: relative;
  z-index: 1;
}

.workflow-step span {
  display: inline-flex;
  margin-bottom: 36px;
  color: #1d5da7;
  font-size: 13px;
  font-weight: 860;
}

.pricing-section {
  background:
    radial-gradient(circle at 82% 42%, rgba(77, 153, 255, 0.12), transparent 30rem),
    radial-gradient(circle at 12% 76%, rgba(124, 218, 255, 0.14), transparent 28rem);
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: clamp(34px, 6vw, 78px);
}

.pricing-copy {
  max-width: 760px;
}

.pricing-copy h2 {
  max-width: 760px;
}

.pricing-copy > p {
  max-width: 700px;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.6;
}

.value-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
  margin-top: 34px;
}

.value-item {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.value-item > span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  color: #1f72c8;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(237, 248, 255, 0.28)),
    rgba(255, 255, 255, 0.24);
  box-shadow:
    0 10px 24px rgba(32, 82, 140, 0.07),
    inset 0 1px rgba(255, 255, 255, 0.82);
  font-weight: 900;
}

.value-item strong {
  display: block;
  margin-bottom: 5px;
  color: #173250;
  font-size: 16px;
}

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

.price-card {
  padding: clamp(28px, 4vw, 42px);
  border-radius: 34px;
}

.price-card > * {
  position: relative;
  z-index: 1;
}

.price-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.price-topline .eyebrow {
  margin: 0;
}

.price-topline span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  color: #23517f;
  background: rgba(255, 255, 255, 0.38);
  font-size: 12px;
  font-weight: 820;
}

.price {
  margin: 0 0 16px;
  font-size: clamp(58px, 7.8vw, 96px);
  line-height: 1;
  font-weight: 880;
  letter-spacing: 0;
}

.price-note {
  max-width: 440px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.price-divider {
  height: 1px;
  margin: 0 0 22px;
  background: linear-gradient(90deg, rgba(42, 102, 175, 0.18), rgba(255, 255, 255, 0.72), rgba(42, 102, 175, 0.08));
}

.price-label {
  margin: 0 0 12px;
  color: #173250;
  font-size: 14px;
  font-weight: 840;
}

.checks {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  color: #33485f;
}

.checks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 650;
  line-height: 1.35;
}

.checks span {
  flex: 0 0 auto;
  color: #1f72c8;
  font-weight: 900;
}

.price-cta {
  width: 100%;
}

.price-fineprint {
  margin: 16px 0 0;
  color: #64768a;
  font-size: 13px;
  line-height: 1.45;
  text-align: center;
}

.faq {
  max-width: 920px;
  display: grid;
  gap: 12px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 20px;
  overflow: hidden;
}

.faq-button {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-weight: 780;
}

.faq-button span:last-child {
  width: 30px;
  height: 30px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: #4b647f;
}

.faq-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-panel > div {
  overflow: hidden;
}

.faq-panel p {
  margin: 0;
  padding: 0 20px 22px;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.footer-cta {
  text-align: center;
}

.footer-cta p {
  max-width: 650px;
  margin: 0 auto 26px;
  font-size: 18px;
}

footer {
  padding: 28px clamp(18px, 4vw, 40px) 44px;
}

.footer-inner {
  max-width: var(--max);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  color: #657b92;
  font-size: 13px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1.45;
}

.footer-brand img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(34, 102, 216, 0.16);
}

.footer-brand a,
.footer-links a {
  color: #284f7a;
  font-weight: 720;
}

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

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .liquid,
  .button {
    background: rgba(255, 255, 255, 0.92);
  }
}

@media (max-width: 1080px) {
  .feature-grid,
  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .private-ai-panel {
    grid-template-columns: 1fr;
  }

  .private-ai-copy {
    max-width: 720px;
  }

  .showcase-row,
  .price-layout {
    grid-template-columns: 1fr;
  }

  .showcase-row.reverse .showcase-copy {
    order: 0;
  }

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

  .pricing-copy {
    max-width: none;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero-shot {
    margin-inline: -10px;
    padding: 7px;
    border-radius: 24px;
    transform: none;
  }

  .hero-shot img {
    height: clamp(260px, 64vw, 420px);
    border-radius: 18px;
  }

  .hero-carousel {
    height: clamp(260px, 64vw, 420px);
  }

  .hero-carousel img {
    inset: 7px;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    border-radius: 18px;
  }

  .screenshot-frame {
    padding: 7px;
    border-radius: 24px;
    transform: none;
  }

  .screenshot-frame img {
    border-radius: 18px;
  }

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

  .private-ai-panel {
    padding: 24px;
  }

  .ai-points {
    grid-template-columns: 1fr;
  }

  .value-list {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 520px) {
  section {
    padding-inline: 14px;
  }

  .nav {
    padding-inline: 10px;
  }

  .brand span:last-child {
    display: none;
  }

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

  h1 {
    font-size: 45px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .feature-card,
  .workflow-step,
  .price-card {
    padding: 21px;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .button.primary::before {
    animation: none !important;
    background: linear-gradient(90deg, rgba(90, 181, 255, 0.78), rgba(23, 113, 255, 0.9), rgba(90, 181, 255, 0.78));
  }

  .hero-frame-dark {
    animation: none !important;
    opacity: 0;
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(7vw, 5vh, 0) scale(1.08);
  }
}

@keyframes sheen {
  0%, 42% {
    transform: translateX(-65%);
    opacity: 0;
  }
  56% {
    opacity: 0.75;
  }
  82%, 100% {
    transform: translateX(65%);
    opacity: 0;
  }
}

@keyframes hero-crossfade {
  0%, 38% {
    opacity: 0;
  }
  50%, 88% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes border-orbit {
  to {
    transform: rotate(1turn);
  }
}
