:root {
  color-scheme: light;
  --ink: #101116;
  --muted: #68707d;
  --paper: #f7f8fb;
  --surface: #ffffff;
  --surface-dark: #15171f;
  --line: #dfe3ea;
  --line-dark: rgba(255, 255, 255, 0.12);
  --night: #07080d;
  --night-2: #11131a;
  --magenta: #ff2aa3;
  --orange: #ff7a1a;
  --purple: #7c3dff;
  --blue: #2278ff;
  --cyan: #24d3ff;
  --shadow: 0 24px 70px rgba(4, 5, 10, 0.22);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

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

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

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  display: flex;
  width: min(calc(100% - 32px), var(--max));
  min-height: 64px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 10px 10px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(13, 14, 20, 0.78);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
  transform: translateX(-50%);
  backdrop-filter: blur(18px);
  transition: top 220ms ease, left 220ms ease, width 220ms ease, padding 220ms ease, border-color 220ms ease, border-radius 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  top: 0;
  left: 0;
  width: 100%;
  min-height: 72px;
  padding: 10px max(24px, calc((100vw - var(--max)) / 2 + 16px));
  border-right: 0;
  border-left: 0;
  border-top: 0;
  border-radius: 0;
  background: rgba(13, 14, 20, 0.9);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.22);
  transform: none;
}

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

.brand img {
  border-radius: 8px;
  box-shadow: 0 6px 16px rgba(21, 24, 29, 0.16);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  min-height: 42px;
  padding: 11px 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-weight: 680;
}

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

.site-nav .nav-cta {
  margin-left: 6px;
  border: 1px solid rgba(255, 122, 26, 0.72);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange), var(--magenta) 52%, var(--purple));
  color: #fff;
}

.nav-toggle {
  position: relative;
  display: none;
  flex-shrink: 0;
  margin-left: auto;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 190ms ease, opacity 170ms ease;
  transform-origin: center;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  align-items: center;
  overflow: hidden;
  padding: 132px 24px 92px;
  border-bottom: 1px solid var(--line-dark);
  background:
    radial-gradient(circle at 15% 28%, rgba(255, 42, 163, 0.24), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(255, 122, 26, 0.2), transparent 24%),
    radial-gradient(circle at 72% 72%, rgba(124, 61, 255, 0.28), transparent 30%),
    linear-gradient(135deg, #07080d 0%, #11131a 54%, #090a12 100%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.045) 0,
      rgba(255, 255, 255, 0.045) 1px,
      transparent 1px,
      transparent 80px
    );
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  justify-items: end;
  padding: 120px max(24px, calc((100vw - var(--max)) / 2)) 70px;
  pointer-events: none;
}

.hero-screen {
  position: relative;
  width: min(720px, 56vw);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.55),
    0 0 70px rgba(255, 42, 163, 0.18);
  transform: rotate(-2deg) translateX(36px);
}

.hero-screen::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  background: linear-gradient(135deg, var(--magenta), var(--orange), var(--purple));
  filter: blur(18px);
  opacity: 0.28;
}

.hero-screen img {
  width: 100%;
  border-radius: 8px;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  width: min(100%, 520px);
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 760;
}

.hero-mark img {
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(21, 24, 29, 0.18);
}

.hero h1 {
  max-width: 940px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.85rem, 4.45vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.46);
}

.workflow-section h2 {
  max-width: 980px;
  text-wrap: balance;
}

.workflow-section .section-heading p:not(.eyebrow) {
  max-width: 780px;
}

.hero-copy {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.22rem, 1.6vw, 1.5rem);
  line-height: 1.46;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 760;
  cursor: pointer;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--orange), var(--magenta) 52%, var(--purple));
  color: #fff;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(7, 8, 13, 0.72);
  color: #fff;
}


.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 680ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line-dark);
  background: var(--night-2);
  color: #fff;
}

.proof-item {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 150px;
  align-content: center;
  justify-items: center;
  gap: 10px;
  overflow: hidden;
  padding: 28px 24px;
  border-right: 1px solid var(--line-dark);
  text-align: center;
}

.proof-item::before,
.proof-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.proof-item::before {
  background: radial-gradient(circle at 0 0, rgba(255, 122, 26, 0.32), rgba(255, 122, 26, 0.14) 18%, transparent 44%);
}

.proof-item::after {
  background: radial-gradient(circle at 100% 100%, rgba(124, 61, 255, 0.3), rgba(124, 61, 255, 0.13) 18%, transparent 44%);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item span {
  color: var(--orange);
  font-weight: 820;
}

.proof-item strong {
  display: block;
  font-size: clamp(1.06rem, 1.7vw, 1.22rem);
  line-height: 1.18;
}

.proof-item p {
  max-width: 250px;
  margin: 8px auto 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.98rem;
  line-height: 1.35;
}

.section {
  scroll-margin-top: 0;
  padding: 84px 24px;
}

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

.section-heading.compact {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--magenta);
  font-size: 0.8rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2rem, 4.1vw, 4.05rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.18;
}

.section-heading p:not(.eyebrow),
.screenshot-section p:not(.eyebrow),
.bridge-copy p:not(.eyebrow),
.cta-section p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.screenshot-section {
  background: #0d0f16;
  color: #fff;
}

.screenshot-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}


.screenshot-tour-section {
  display: grid;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  align-content: center;
  overflow: hidden;
  padding-top: 96px;
  padding-bottom: 48px;
}

.screenshot-tour-section .section-heading {
  margin-bottom: 28px;
}

.screenshot-tour {
  position: relative;
  width: min(100%, 1180px);
  margin: 0 auto;
}

.tour-frame {
  position: relative;
  width: fit-content;
  max-width: min(100%, 1040px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: #11131a;
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.45);
}

.tour-frame img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: clamp(340px, 56svh, 660px);
}

.tour-hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--w);
  height: var(--h);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.tour-hotspot:hover,
.tour-hotspot:focus-visible,
.tour-hotspot.is-active {
  border-color: var(--tour-color, var(--magenta));
  background: var(--tour-color-soft, rgba(255, 42, 163, 0.13));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--tour-color, var(--magenta)) 62%, transparent), 0 0 28px color-mix(in srgb, var(--tour-color, var(--magenta)) 42%, transparent);
  outline: 0;
}

.tour-prompt {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: max-content;
  max-width: calc(100% - 48px);
  margin: 0;
  padding: 12px 18px;
  border: 1px solid rgba(16, 17, 22, 0.1);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 780;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.26);
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.screenshot-section .screenshot-tour .tour-prompt {
  max-width: calc(100% - 48px);
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
}

.screenshot-tour.is-engaged .tour-prompt {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(-50% + 8px));
}

.tour-callout {
  position: absolute;
  left: var(--callout-x, 50%);
  top: var(--callout-y, 50%);
  z-index: 3;
  width: min(360px, calc(100% - 48px));
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(16, 17, 22, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 100% 0, var(--active-color-soft, rgba(255, 42, 163, 0.14)), transparent 42%),
    #fff;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px) scale(0.98);
  transition: opacity 160ms ease, transform 180ms ease, left 120ms ease, top 120ms ease;
}

.tour-callout.is-visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.tour-callout .eyebrow {
  margin-bottom: 10px;
  color: var(--active-color, var(--magenta));
}

.tour-callout h3 {
  margin: 0;
  color: color-mix(in srgb, var(--active-color, var(--ink)) 48%, var(--ink));
  font-size: clamp(1.18rem, 1.8vw, 1.5rem);
  line-height: 1.12;
}

.tour-callout p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
}

.workflow-section {
  background: #f3f5f8;
}

.workflow-grid {
  display: grid;
  margin: 0 auto;
  gap: 16px;
  position: relative;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  width: min(100%, 1080px);
  gap: 24px;
  align-items: center;
}

.workflow-connector {
  display: inline-flex;
  min-width: 58px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--orange), var(--magenta), var(--purple));
  background-clip: text;
  color: transparent;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

.workflow-grid article {
  min-height: 198px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--surface);
  min-height: 230px;
  padding: 36px 30px;
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(21, 24, 29, 0.05);
}

.workflow-grid article {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.step-number {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 100%;
  background: linear-gradient(135deg, var(--magenta), var(--purple));
  color: #fff;
  font-weight: 820;
}

.workflow-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.45;
}

.feature-section {
  background: #fff;
  color: var(--ink);
}

.feature-section .section-heading {
  display: block;
  margin-bottom: 34px;
}

.feature-section h2 {
  max-width: 760px;
  font-size: clamp(2.15rem, 3.45vw, 3.45rem);
  line-height: 1.08;
  text-wrap: balance;
}

.feature-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, var(--max));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: var(--night);
  box-shadow: 0 28px 80px rgba(8, 10, 18, 0.18);
  backdrop-filter: blur(14px);
}

.feature-panel::before {
  content: "";
  position: absolute;
  inset: -35% -20%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 122, 26, 0.24) 43%, rgba(255, 42, 163, 0.34) 50%, rgba(124, 61, 255, 0.26) 57%, transparent 70%);
  opacity: 0.95;
  transform: translateX(-58%);
  animation: featureSweep 4.8s ease-in-out infinite;
}

@keyframes featureSweep {
  0%, 24% {
    transform: translateX(-58%);
  }

  62%, 100% {
    transform: translateX(58%);
  }
}

.feature-item {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 180px;
  padding: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item:nth-child(odd) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item:nth-child(n + 3) {
  border-bottom: 0;
}

.feature-item span {
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 820;
}

.feature-item h3 {
  color: #fff;
  font-size: clamp(1.18rem, 1.8vw, 1.55rem);
}

.feature-item p {
  max-width: 360px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 1.06rem;
  line-height: 1.48;
}

.feature-icon {
  width: 64px;
  height: 64px;
  justify-self: end;
  fill: none;
  stroke: #fff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 14px rgba(255, 42, 163, 0.22));
}

.bridge-section {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.25fr);
  gap: 64px;
  align-items: center;
  width: min(100%, 1380px);
  margin: 0 auto;
}

.bridge-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.bridge-copy h2 {
  max-width: 780px;
}

.bridge-card {
  display: grid;
  min-height: 168px;
  align-content: center;
  justify-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 54px rgba(21, 24, 29, 0.08);
}

.bridge-card img {
  width: 64px;
  height: 64px;
}

.bridge-card.app-card img {
  border-radius: 14px;
}

.bridge-card span {
  font-weight: 780;
}

.bridge-connector {
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bridge-connector img {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 10px 22px rgba(255, 42, 163, 0.28));
}

.bridge-arrow {
  background: linear-gradient(90deg, var(--orange), var(--magenta), var(--purple));
  background-clip: text;
  color: transparent;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
}

.quote-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 122, 26, 0.18), transparent 24%),
    radial-gradient(circle at 78% 76%, rgba(255, 42, 163, 0.2), transparent 24%),
    var(--night);
  color: #fff;
}

.quote-section::before {
  content: "";
  position: absolute;
  inset: -45% -25%;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 28%, rgba(255, 122, 26, 0.28) 42%, rgba(255, 42, 163, 0.42) 50%, rgba(124, 61, 255, 0.32) 58%, transparent 72%);
  opacity: 0.98;
  transform: translateX(-58%);
  animation: quoteSweep 3.8s ease-in-out infinite;
}

@keyframes quoteSweep {
  0%, 18% {
    transform: translateX(-58%);
  }

  58%, 100% {
    transform: translateX(58%);
  }
}

blockquote {
  position: relative;
  z-index: 1;
  width: min(100%, 920px);
  margin: 0 auto;
  font-size: clamp(2rem, 4.7vw, 4.3rem);
  line-height: 1;
  letter-spacing: 0;
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 60px;
  align-items: start;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.signup-form {
  padding: 26px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.signup-form label {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.form-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #fbfaf8;
  color: var(--ink);
}

input:focus {
  outline: 2px solid rgba(45, 111, 123, 0.24);
  outline-offset: 2px;
}

.site-footer {
  display: flex;
  min-height: 96px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 26px max(24px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.site-footer .brand {
  color: var(--ink);
}

@media (min-width: 761px) {
  .hero h1 .title-line {
    display: block;
    white-space: nowrap;
  }
}

@media (max-width: 960px) {
  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 118px;
  }

  .hero-bg {
    opacity: 0.32;
    justify-items: center;
    padding-top: 210px;
  }

  .workflow-connector {
    display: none;
  }

  .proof-band,
  .workflow-grid,
  .feature-panel,
  .bridge-section,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .proof-item {
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading.compact {
    display: block;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 20px), var(--max));
  }

  .site-header.is-scrolled {
    top: 0;
    width: 100%;
    padding: 10px 18px;
  }

  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding: 0 8px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: rgba(13, 14, 20, 0.96);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    visibility: hidden;
    transition: max-height 260ms ease, opacity 180ms ease, padding 260ms ease, transform 260ms ease, border-color 260ms ease, visibility 0s linear 260ms;
  }

  .site-nav.is-open {
    max-height: 340px;
    padding: 8px;
    border-color: var(--line-dark);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .site-nav a,
  .site-nav .nav-cta {
    margin-left: 0;
    padding: 12px;
  }

  .hero {
    padding: 112px 18px 72px;
  }

  .hero-bg {
    inset: auto 0 0;
    height: 46%;
    padding: 0 14px 34px;
    opacity: 0.38;
  }

  .hero-screen {
    width: min(620px, 112vw);
    transform: rotate(-2deg) translateX(38px);
  }

  .hero-content {
    min-height: 560px;
  }

  .hero-mark {
    align-items: flex-start;
    flex-direction: column;
    max-width: 310px;
  }

  .hero h1 {
    max-width: 340px;
    font-size: clamp(2.5rem, 9.4vw, 2.92rem);
    line-height: 0.98;
    overflow-wrap: normal;
  }

  .hero-copy {
    max-width: 340px;
    font-size: 1.08rem;
  }

  .section {
    padding: 64px 18px;
  }
  .screenshot-tour-section {
    min-height: 100vh;
    min-height: 100svh;
    padding-top: 96px;
  }

  .tour-frame {
    border-radius: 10px;
  }

  .tour-prompt {
    position: relative;
    left: auto;
    top: auto;
    display: table;
    width: auto;
    margin: 14px auto 0;
    white-space: normal;
    transform: none;
  }

  .screenshot-section .tour-prompt {
    margin: 14px auto 0;
  }

  .screenshot-tour.is-engaged .tour-prompt {
    transform: translateY(8px);
  }

  .tour-callout {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    margin-top: 14px;
    transform: translateY(12px) scale(0.98);
  }

  .tour-callout.is-visible {
    transform: translateY(0) scale(1);
  }


  .workflow-grid article {
    min-height: auto;
  }

  .feature-section .section-heading {
    display: block;
  }

  .feature-item {
    min-height: auto;
    border-right: 0;
  }

  .feature-item:nth-child(n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .feature-item:last-child {
    border-bottom: 0;
  }

  .bridge-section {
    gap: 36px;
  }

  .bridge-connector img {
    width: 36px;
    height: 36px;
  }

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

  .site-footer {
    display: grid;
    justify-items: start;
    padding: 24px 18px;
  }
}

@media (max-width: 600px) {
  .brand span {
    font-size: 0.98rem;
  }

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

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

  .bridge-connector {
    grid-template-columns: auto auto auto;
    justify-self: center;
  }

  blockquote {
    font-size: clamp(2rem, 12vw, 3.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .quote-section::before,
  .feature-panel::before {
    animation: none;
    opacity: 0.28;
    transform: none;
  }
}
