:root {
  color-scheme: dark;
  --page: #050608;
  --page-soft: #0a0c10;
  --surface: #101319;
  --surface-strong: #151920;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f7fa;
  --muted: #a4abb6;
  --quiet: #737b87;
  --green: #45e0a8;
  --blue: #4aa9ff;
  --purple: #8f6cff;
  --max: 1180px;
  --radius-large: 34px;
  --radius-medium: 24px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--page);
  scroll-behavior: smooth;
  scroll-padding-top: 74px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--page);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

a:focus-visible {
  outline: 3px solid rgba(74, 169, 255, 0.82);
  outline-offset: 4px;
  border-radius: 10px;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 9px 14px;
  color: #05100c;
  background: var(--green);
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.global-nav {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 54px;
  padding:
    env(safe-area-inset-top)
    max(20px, env(safe-area-inset-right))
    0
    max(20px, env(safe-area-inset-left));
  background: rgba(5, 6, 8, 0.6);
  border-bottom: 1px solid transparent;
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  backdrop-filter: saturate(160%) blur(18px);
  transition: background-color 240ms ease, border-color 240ms ease;
}

.global-nav.is-scrolled {
  background: rgba(5, 6, 8, 0.86);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), 100%);
  height: 54px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.015em;
  text-decoration: none;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  background: rgba(69, 224, 168, 0.1);
  border: 1px solid rgba(69, 224, 168, 0.28);
  border-radius: 9px;
}

.brand-mark i {
  display: block;
  width: 2px;
  background: var(--green);
  border-radius: 10px;
}

.brand-mark i:nth-child(1),
.brand-mark i:nth-child(5) {
  height: 7px;
  opacity: 0.5;
}

.brand-mark i:nth-child(2),
.brand-mark i:nth-child(4) {
  height: 13px;
  opacity: 0.76;
}

.brand-mark i:nth-child(3) {
  height: 19px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: rgba(245, 247, 250, 0.7);
  font-size: 12px;
  font-weight: 520;
  line-height: 1;
  text-decoration: none;
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links .nav-feedback {
  padding: 8px 13px;
  color: #07120f;
  background: var(--green);
  border-radius: 999px;
  font-weight: 650;
}

.nav-links .nav-feedback:hover {
  color: #07120f;
  background: #6aebbd;
}

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

.eyebrow,
.feature-kicker {
  margin: 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.095em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  min-height: 100svh;
  padding: clamp(118px, 12vw, 176px) max(24px, calc((100vw - var(--max)) / 2)) clamp(76px, 9vw, 118px);
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -3;
  right: -20%;
  bottom: -28%;
  left: -20%;
  height: 62%;
  background: radial-gradient(ellipse at center, rgba(31, 49, 65, 0.36), transparent 68%);
  content: "";
}

.hero-glow {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.hero-glow-one {
  top: -16vw;
  right: -8vw;
  width: 58vw;
  height: 58vw;
  background: radial-gradient(circle, rgba(101, 68, 225, 0.22), rgba(51, 130, 255, 0.08) 42%, transparent 70%);
}

.hero-glow-two {
  bottom: -22vw;
  left: -22vw;
  width: 56vw;
  height: 56vw;
  background: radial-gradient(circle, rgba(41, 220, 158, 0.14), transparent 68%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero h1,
.intro h2,
.workflow-heading h2,
.principles h2,
.feedback-section h2 {
  margin: 0;
  text-wrap: balance;
  letter-spacing: -0.062em;
}

.hero h1 {
  margin-top: 21px;
  font-size: clamp(54px, 6.2vw, 92px);
  font-weight: 690;
  line-height: 0.98;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(112deg, #fff 4%, #b3c0cf 43%, #6d7480 95%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 590px;
  margin: 27px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 1.75vw, 22px);
  line-height: 1.5;
  letter-spacing: -0.016em;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #06110e;
  background: var(--green);
}

.button-primary:hover {
  background: #6aebbd;
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.13);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 31px 0 0;
  padding: 0;
  color: var(--quiet);
  font-size: 12px;
  list-style: none;
}

.hero-facts li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-facts span {
  width: 5px;
  height: 5px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(69, 224, 168, 0.08);
}

.hero-stage {
  position: relative;
  min-height: 720px;
  perspective: 1600px;
}

.stage-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.stage-orbit-one {
  top: 10%;
  left: 5%;
  width: 590px;
  height: 590px;
  transform: rotateX(68deg) rotateZ(-16deg);
}

.stage-orbit-two {
  top: 17%;
  left: 14%;
  width: 470px;
  height: 470px;
  border-color: rgba(69, 224, 168, 0.1);
  transform: rotateX(65deg) rotateZ(24deg);
}

.phone {
  position: absolute;
  margin: 0;
  padding: 8px;
  overflow: hidden;
  background: #050607;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 48px;
  box-shadow:
    0 50px 110px rgba(0, 0, 0, 0.62),
    inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}

.phone::before {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 50%;
  width: 29%;
  height: 22px;
  background: #010203;
  border-radius: 999px;
  content: "";
  transform: translateX(-50%);
}

.phone-screen {
  overflow: hidden;
  border-radius: 40px;
}

.phone-screen img {
  width: 100%;
  height: auto;
}

.playback-screen {
  position: relative;
}

.playback-source-label {
  position: absolute;
  z-index: 1;
  top: 25.2%;
  right: 4.9%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 36%;
  height: 3.1%;
  color: #747280;
  background: #121128;
  font-size: clamp(7px, 1.2vw, 9px);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.phone-main {
  z-index: 3;
  top: 0;
  left: 23%;
  width: min(337px, 43vw);
  transform: rotateY(-7deg) rotateZ(1.8deg);
}

.phone-side {
  z-index: 1;
  top: 122px;
  left: 62%;
  width: min(267px, 34vw);
  opacity: 0.78;
  filter: saturate(0.82) brightness(0.75);
  transform: rotateY(-16deg) rotateZ(6deg);
}

.signal-card {
  position: absolute;
  z-index: 5;
  display: flex;
  flex-direction: column;
  min-width: 164px;
  padding: 14px 16px;
  background: rgba(17, 21, 28, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.26);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.signal-card span {
  color: var(--green);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.signal-card strong {
  margin-top: 4px;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.signal-card small {
  margin-top: 2px;
  color: var(--quiet);
  font-size: 10px;
}

.signal-card-left {
  top: 19%;
  left: -1%;
}

.signal-card-right {
  right: -2%;
  bottom: 19%;
}

.intro {
  padding-top: clamp(100px, 13vw, 190px);
  padding-bottom: clamp(58px, 7vw, 94px);
  text-align: center;
}

.intro h2,
.workflow-heading h2,
.principles h2,
.feedback-section h2 {
  margin-top: 18px;
  font-size: clamp(46px, 7vw, 88px);
  font-weight: 660;
  line-height: 1.01;
}

.section-lead {
  max-width: 680px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.55;
  letter-spacing: -0.018em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: clamp(110px, 14vw, 190px);
}

.feature-card,
.workflow-visual {
  --spot-x: 50%;
  --spot-y: 50%;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(480px circle at var(--spot-x) var(--spot-y), rgba(255, 255, 255, 0.07), transparent 42%),
    linear-gradient(145deg, rgba(18, 22, 29, 0.98), rgba(10, 12, 16, 0.98));
  border: 1px solid var(--line);
}

.feature-card {
  min-height: 560px;
  padding: clamp(32px, 4vw, 52px);
  border-radius: var(--radius-large);
}

.feature-card::before,
.workflow-visual::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
  content: "";
  pointer-events: none;
}

.feature-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 680px;
  padding-bottom: 0;
}

.feature-copy {
  position: relative;
  z-index: 2;
}

.feature-card-wide .feature-copy {
  align-self: center;
  padding-bottom: 44px;
}

.feature-copy h3,
.workflow-copy h3,
.principle-grid h3 {
  margin: 15px 0 0;
  color: var(--text);
  letter-spacing: -0.045em;
}

.feature-copy h3 {
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 630;
  line-height: 1.06;
}

.feature-copy > p:not(.feature-kicker),
.workflow-copy > p:not(.feature-kicker):not(.step-number) {
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

.feature-points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  color: #d8dce2;
  font-size: 14px;
  list-style: none;
}

.feature-points li::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  background: var(--green);
  border-radius: 50%;
  content: "";
  vertical-align: 2px;
}

.cropped-device {
  position: absolute;
  top: 18px;
  right: 12%;
  bottom: auto;
  width: min(280px, 27vw);
  padding: 7px;
  overflow: hidden;
  background: #060708;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 48px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.55);
  transform: rotate(2deg);
}

.cropped-device::before {
  position: absolute;
  z-index: 2;
  top: 13px;
  left: 50%;
  width: 29%;
  height: 21px;
  background: #010203;
  border-radius: 999px;
  content: "";
  transform: translateX(-50%);
}

.cropped-device img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 40px;
}

.format-card,
.meters-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.format-visual {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 30px;
  background:
    radial-gradient(circle at 50% 0, rgba(75, 170, 255, 0.16), transparent 55%),
    #090b0f;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.format-label {
  position: absolute;
  color: var(--quiet);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  transform: translateY(-18px);
}

.format-visual strong {
  margin-top: 14px;
  font-size: clamp(42px, 6vw, 76px);
  font-weight: 530;
  letter-spacing: -0.06em;
}

.format-visual small {
  color: var(--quiet);
  font-size: 16px;
  font-weight: 560;
  letter-spacing: 0;
}

.format-rule {
  align-self: center;
  width: 1px;
  height: 54px;
  margin: 10px 1px 0;
  background: var(--line-strong);
}

.meter-visual {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 42px);
  min-height: 265px;
  padding: 28px 20px;
  background: #090b0f;
  border: 1px solid var(--line);
  border-radius: 24px;
}

.meter-visual div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.meter-visual i {
  position: relative;
  width: 9px;
  height: 170px;
  overflow: hidden;
  background: #20252d;
  border-radius: 999px;
}

.meter-visual i::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: var(--level);
  background: linear-gradient(to top, #35d69d 0 60%, #f0c64f 82%, #ff635c 100%);
  border-radius: inherit;
  content: "";
}

.meter-visual div:nth-child(1) i { --level: 68%; }
.meter-visual div:nth-child(2) i { --level: 84%; }
.meter-visual div:nth-child(3) i { --level: 55%; }
.meter-visual div:nth-child(4) i { --level: 74%; }

.meter-visual span {
  color: #7f8792;
  font-size: 11px;
  font-style: normal;
}

.workflow {
  padding-top: clamp(100px, 12vw, 170px);
  padding-bottom: clamp(60px, 8vw, 110px);
}

.workflow-heading {
  max-width: 880px;
  margin: 0 auto clamp(78px, 10vw, 130px);
  text-align: center;
}

.workflow-row {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(480px, 1.24fr);
  align-items: center;
  gap: clamp(44px, 7vw, 104px);
  min-height: 760px;
  margin-bottom: clamp(110px, 15vw, 200px);
}

.workflow-row-reverse {
  grid-template-columns: minmax(480px, 1.24fr) minmax(300px, 0.76fr);
}

.workflow-row-reverse .workflow-copy {
  grid-column: 2;
}

.workflow-row-reverse .workflow-visual {
  grid-row: 1;
  grid-column: 1;
}

.workflow-copy {
  position: relative;
  z-index: 3;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin: 0 0 38px;
  color: #858d99;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 650;
}

.workflow-copy h3 {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 640;
  line-height: 1.02;
}

.mini-specs,
.preset-list,
.export-options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
}

.mini-specs span,
.preset-list span,
.export-options span {
  padding: 8px 11px;
  color: #9ea6b2;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 11px;
  font-weight: 600;
}

.preset-list span.active {
  color: #d9fff1;
  background: rgba(69, 224, 168, 0.09);
  border-color: rgba(69, 224, 168, 0.32);
}

.workflow-visual {
  min-height: 720px;
  border-radius: var(--radius-large);
}

.phone-workflow {
  z-index: 2;
  top: 58px;
  left: 50%;
  width: 325px;
  transform: translateX(-50%);
}

.playback-visual {
  background:
    radial-gradient(430px circle at var(--spot-x) var(--spot-y), rgba(74, 169, 255, 0.12), transparent 48%),
    linear-gradient(145deg, #111621, #080a0e);
}

.fx-visual {
  background:
    radial-gradient(430px circle at var(--spot-x) var(--spot-y), rgba(143, 108, 255, 0.15), transparent 50%),
    linear-gradient(145deg, #14101f, #08090d);
}

.export-visual {
  background:
    radial-gradient(430px circle at var(--spot-x) var(--spot-y), rgba(69, 224, 168, 0.13), transparent 50%),
    linear-gradient(145deg, #0d1717, #080a0d);
}

.wave-lines {
  position: absolute;
  z-index: 1;
  top: 32%;
  right: -2%;
  left: -2%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  opacity: 0.28;
}

.wave-lines i {
  width: 1px;
  height: 36%;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(74, 169, 255, 0.72);
}

.wave-lines i:nth-child(2),
.wave-lines i:nth-child(6) {
  height: 68%;
}

.wave-lines i:nth-child(3),
.wave-lines i:nth-child(5) {
  height: 92%;
}

.wave-lines i:nth-child(4) {
  height: 100%;
}

.fx-dial {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 112px;
  height: 112px;
  place-items: center;
  background: rgba(18, 15, 27, 0.78);
  border: 1px solid rgba(143, 108, 255, 0.32);
  border-radius: 50%;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.38);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.fx-dial::before {
  position: absolute;
  inset: 9px;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-top-color: #8f6cff;
  border-right-color: #8f6cff;
  border-radius: 50%;
  content: "";
  transform: rotate(18deg);
}

.fx-dial span {
  color: #c5b7ff;
  font-size: 9px;
  font-weight: 650;
}

.fx-dial-one {
  top: 24%;
  left: 7%;
}

.fx-dial-two {
  right: 6%;
  bottom: 18%;
}

.export-file {
  position: absolute;
  z-index: 4;
  min-width: 116px;
  padding: 14px 15px;
  color: #e4fff5;
  background: rgba(12, 30, 27, 0.78);
  border: 1px solid rgba(69, 224, 168, 0.3);
  border-radius: 13px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
  font-size: 12px;
  font-weight: 650;
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
}

.export-file span {
  float: right;
  margin-left: 22px;
  color: var(--green);
  font-size: 9px;
}

.export-file-one {
  top: 19%;
  left: 5%;
}

.export-file-two {
  right: 5%;
  bottom: 22%;
}

.principles {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(130px, 16vw, 220px);
}

.principles-heading {
  max-width: 980px;
  margin-bottom: clamp(54px, 7vw, 92px);
}

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

.principle-grid article {
  padding: 34px 4px 10px 0;
  border-top: 1px solid var(--line-strong);
}

.principle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--green);
  background: rgba(69, 224, 168, 0.08);
  border: 1px solid rgba(69, 224, 168, 0.2);
  border-radius: 12px;
  font-size: 18px;
}

.principle-grid h3 {
  margin-top: 28px;
  font-size: 27px;
  font-weight: 620;
}

.principle-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.feedback-section {
  position: relative;
  overflow: hidden;
  background: #f2f3f5;
  isolation: isolate;
}

.feedback-glow {
  position: absolute;
  z-index: -1;
  top: -45%;
  left: 35%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(69, 224, 168, 0.25), rgba(74, 169, 255, 0.11) 42%, transparent 70%);
  border-radius: 50%;
}

.feedback-content {
  padding-top: clamp(110px, 14vw, 190px);
  padding-bottom: clamp(110px, 14vw, 190px);
}

.feedback-section .eyebrow {
  color: #147653;
}

.feedback-section h2 {
  max-width: 890px;
  color: #090b0d;
}

.feedback-section p:not(.eyebrow) {
  max-width: 620px;
  margin: 27px 0 0;
  color: #5d626b;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.email-link {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  max-width: 730px;
  margin-top: 46px;
  padding: 21px 24px;
  color: #111418;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(7, 21, 16, 0.11);
  border-radius: 20px;
  box-shadow: 0 18px 55px rgba(31, 61, 49, 0.08);
  text-decoration: none;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.email-link:hover {
  box-shadow: 0 22px 66px rgba(31, 61, 49, 0.13);
  transform: translateY(-3px);
}

.email-link span {
  grid-column: 1;
  color: #777d85;
  font-size: 12px;
}

.email-link strong {
  grid-row: 2;
  grid-column: 1;
  margin-top: 3px;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 620;
}

.email-link i {
  grid-row: 1 / 3;
  grid-column: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #06130e;
  background: var(--green);
  border-radius: 50%;
  font-style: normal;
}

.site-footer {
  padding:
    50px max(24px, env(safe-area-inset-right))
    max(38px, env(safe-area-inset-bottom))
    max(24px, env(safe-area-inset-left));
  background: #07090b;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 26px;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.footer-brand {
  font-size: 15px;
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a {
  color: #a1a8b2;
  font-size: 12px;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #fff;
}

.footer-inner > p {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 24px;
  color: #656c75;
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms cubic-bezier(0.2, 0.72, 0.2, 1), transform 760ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

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

@media (max-width: 1060px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 138px;
    text-align: center;
  }

  .hero-copy {
    max-width: 780px;
    margin: 0 auto;
  }

  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .hero-facts {
    justify-content: center;
  }

  .hero-stage {
    width: min(720px, 100%);
    min-height: 650px;
    margin: 66px auto 0;
  }

  .phone-main {
    left: 28%;
  }

  .phone-side {
    left: 60%;
  }

  .signal-card-left {
    left: 6%;
  }

  .signal-card-right {
    right: 3%;
  }

  .workflow-row,
  .workflow-row-reverse {
    grid-template-columns: minmax(270px, 0.78fr) minmax(420px, 1.22fr);
    gap: 46px;
  }
}

@media (max-width: 800px) {
  .nav-links {
    gap: 17px;
  }

  .nav-section-link,
  .nav-feedback {
    display: none;
  }

  .hero {
    padding-right: 24px;
    padding-left: 24px;
  }

  .hero-stage {
    min-height: 610px;
  }

  .phone-main {
    left: 26%;
    width: 310px;
  }

  .phone-side {
    top: 115px;
    left: 60%;
    width: 230px;
  }

  .signal-card-left {
    left: 1%;
  }

  .feature-card-wide {
    grid-template-columns: 1fr;
    min-height: 940px;
  }

  .feature-card-wide .feature-copy {
    align-self: start;
  }

  .cropped-device {
    top: auto;
    right: 50%;
    bottom: 22px;
    width: 270px;
    transform: translateX(50%) rotate(2deg);
  }

  .workflow-row,
  .workflow-row-reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .workflow-row-reverse .workflow-copy,
  .workflow-row-reverse .workflow-visual {
    grid-row: auto;
    grid-column: auto;
  }

  .workflow-row-reverse .workflow-copy {
    order: 1;
  }

  .workflow-row-reverse .workflow-visual {
    order: 2;
  }

  .workflow-copy {
    max-width: 610px;
  }

  .workflow-visual {
    min-height: 680px;
  }

  .principle-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .principle-grid article {
    padding-right: 0;
  }
}

@media (max-width: 620px) {
  :root {
    --radius-large: 26px;
  }

  .section-shell {
    width: min(var(--max), calc(100% - 32px));
  }

  .brand-name {
    display: none;
  }

  .nav-links {
    gap: 15px;
  }

  .nav-links a {
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding: 120px 16px 64px;
  }

  .hero h1 {
    font-size: clamp(44px, 13.2vw, 66px);
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions {
    flex-direction: column;
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
  }

  .hero-facts {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .hero-stage {
    min-height: 530px;
    margin-top: 60px;
  }

  .phone {
    border-radius: 36px;
  }

  .phone-screen {
    border-radius: 29px;
  }

  .phone::before {
    top: 12px;
    height: 17px;
  }

  .phone-main {
    left: 50%;
    width: 260px;
    transform: translateX(-50%) rotateZ(1.5deg);
  }

  .phone-side {
    top: 84px;
    left: 73%;
    width: 190px;
    transform: translateX(-50%) rotateZ(7deg);
  }

  .stage-orbit-one {
    top: 10%;
    left: -24%;
    width: 500px;
    height: 500px;
  }

  .stage-orbit-two {
    top: 18%;
    left: -3%;
    width: 390px;
    height: 390px;
  }

  .signal-card {
    min-width: 0;
    padding: 11px 12px;
  }

  .signal-card-left {
    top: 17%;
    left: 0;
  }

  .signal-card-right {
    right: 0;
    bottom: 15%;
  }

  .signal-card strong {
    font-size: 11px;
  }

  .signal-card small {
    display: none;
  }

  .intro {
    padding-top: 92px;
  }

  .intro h2,
  .workflow-heading h2,
  .principles h2,
  .feedback-section h2 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .section-lead {
    font-size: 18px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card,
  .feature-card-wide {
    grid-column: auto;
    min-height: 560px;
    padding: 30px 26px;
  }

  .feature-card-wide {
    min-height: 960px;
    padding-bottom: 0;
  }

  .feature-copy h3 {
    font-size: 36px;
  }

  .cropped-device {
    bottom: 20px;
    width: 240px;
    border-radius: 38px;
  }

  .cropped-device img {
    border-radius: 31px;
  }

  .format-visual {
    gap: 10px;
    padding: 26px 20px;
  }

  .format-visual strong {
    font-size: 51px;
  }

  .meter-visual {
    gap: 25px;
  }

  .workflow {
    padding-top: 92px;
  }

  .workflow-heading {
    margin-bottom: 78px;
  }

  .workflow-row {
    gap: 42px;
    margin-bottom: 120px;
  }

  .workflow-copy h3 {
    font-size: 44px;
  }

  .workflow-visual {
    min-height: 585px;
  }

  .phone-workflow {
    top: 42px;
    width: 270px;
  }

  .fx-dial {
    width: 84px;
    height: 84px;
  }

  .fx-dial-one {
    top: 21%;
    left: 1%;
  }

  .fx-dial-two {
    right: 1%;
    bottom: 16%;
  }

  .export-file {
    min-width: 95px;
    padding: 11px;
  }

  .export-file span {
    margin-left: 12px;
  }

  .principles {
    padding-top: 36px;
  }

  .email-link {
    padding: 18px;
  }

  .email-link i {
    width: 40px;
    height: 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-legal {
    flex-wrap: wrap;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media (prefers-reduced-transparency: reduce) {
  .global-nav {
    background: #050608;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .signal-card,
  .fx-dial,
  .export-file,
  .email-link {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #c8cdd5;
    --quiet: #a8afb9;
    --line: rgba(255, 255, 255, 0.25);
    --line-strong: rgba(255, 255, 255, 0.38);
  }
}
