:root {
  color-scheme: dark light;
  --ink: #0d0c0a;
  --ink-deep: #090908;
  --ink-soft: #171512;
  --panel: #1c1a17;
  --panel-2: #23201b;
  --paper: #f7f5f0;
  --paper-soft: #eeebe4;
  --white: #fffdf8;
  --text: #f7f5ed;
  --muted: #c7bdad;
  --paper-ink: #11100e;
  --paper-muted: #5f5a53;
  --line: rgba(247, 245, 237, 0.18);
  --line-strong: rgba(247, 245, 237, 0.3);
  --paper-line: rgba(17, 16, 14, 0.16);
  --coral: #f1645d;
  --coral-strong: #ff5f55;
  --amber: #f59e0a;
  --red: #f04545;
  --blue: #0da6e8;
  --green: #21c45e;
  --violet: #8c5cf5;
  --markup-ink: #121726;
  --brand-blue: #0b75ff;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --max: 1480px;
  --gutter: clamp(24px, 4vw, 64px);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 32px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

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

h1,
h2,
h3,
strong {
  font-weight: 760;
}

h1,
h2 {
  letter-spacing: -0.045em;
}

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

::selection {
  color: var(--ink);
  background: var(--amber);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--paper);
  font-weight: 750;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.section-shell,
.footer-shell {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  min-height: 88px;
  padding: 14px var(--gutter);
  border-bottom: 1px solid transparent;
  background: rgba(13, 12, 10, 0.02);
  transition: min-height 180ms ease, background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  border-color: var(--line);
  background: rgba(13, 12, 10, 0.9);
  backdrop-filter: blur(18px) saturate(1.2);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 13px;
  width: max-content;
  font-size: 24px;
  font-weight: 780;
  letter-spacing: -0.035em;
}

.site-brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 9px 24px rgba(0, 0, 0, 0.28);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 64px);
  font-size: 16px;
  font-weight: 640;
}

.site-nav a,
.footer-nav a {
  position: relative;
  color: rgba(247, 245, 237, 0.92);
}

.site-nav a::after,
.footer-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  transform: scaleX(1);
}

.store-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: #fff;
  background: var(--coral);
  box-shadow: 0 14px 32px rgba(241, 100, 93, 0.18);
  font-weight: 720;
  line-height: 1;
  cursor: default;
  user-select: none;
}

.store-status svg {
  flex: 0 0 auto;
  fill: currentColor;
}

.store-status-small {
  justify-self: end;
  gap: 9px;
  min-height: 48px;
  padding: 0 20px;
  font-size: 15px;
}

.store-status-small svg {
  width: 20px;
  height: 20px;
}

.status-compact {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 840px;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 86% 40%, rgba(247, 245, 237, 0.035), transparent 36%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16), transparent 46%);
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(520px, 550px) minmax(0, 1fr);
  align-items: center;
  gap: 50px;
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  min-height: 840px;
  margin-inline: auto;
  padding: 126px 0 48px;
}

.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  padding-bottom: 28px;
}

.hero h1 {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: clamp(58px, 4.5vw, 72px);
  line-height: 0.98;
}

.hero-promise {
  margin-bottom: 26px;
  color: var(--text);
  font-size: clamp(30px, 2.4vw, 42px);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.hero-description {
  max-width: 560px;
  margin-bottom: 36px;
  color: rgba(247, 245, 237, 0.68);
  font-size: clamp(19px, 1.5vw, 25px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

.store-status-large {
  gap: 14px;
  min-height: 62px;
  padding: 0 28px;
  font-size: 18px;
}

.store-status-large svg {
  width: 25px;
  height: 25px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  color: var(--coral);
  font-size: 18px;
  font-weight: 730;
}

.text-link svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 180ms ease;
}

.text-link:hover svg,
.text-link:focus-visible svg {
  transform: translateX(5px);
}

.platform-line {
  margin: 24px 0 0;
  color: rgba(247, 245, 237, 0.58);
  font-size: 15px;
}

.platform-line strong {
  color: rgba(247, 245, 237, 0.86);
  font-weight: 650;
}

.product-demo {
  position: relative;
  z-index: 2;
  --active-color: var(--amber);
  overflow: hidden;
  width: 100%;
  min-width: 0;
  border: 2px solid rgba(247, 245, 237, 0.24);
  border-radius: 34px;
  background: var(--ink-soft);
  box-shadow: var(--shadow);
}

.demo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 12px 16px 12px 20px;
  border-bottom: 1px solid var(--line);
  background: #171512;
}

.demo-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.demo-brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.demo-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.demo-icon,
.demo-icon-button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--text);
  background: rgba(247, 245, 237, 0.025);
}

.demo-icon-button {
  cursor: pointer;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.demo-icon-button:hover {
  border-color: var(--line-strong);
  background: rgba(247, 245, 237, 0.08);
}

.demo-icon svg,
.demo-icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.demo-icon-button svg circle {
  fill: currentColor;
  stroke: none;
}

.demo-canvas-shell {
  position: relative;
  display: grid;
  min-height: 390px;
  place-items: center;
  padding: 52px 44px 28px;
  border-bottom: 1px solid var(--line);
  background: #12110f;
}

.zoom-control {
  position: absolute;
  top: 16px;
  right: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 15px;
  color: var(--text);
  background: rgba(23, 21, 18, 0.94);
  font-size: 13px;
}

.zoom-control svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.8;
}

.demo-canvas {
  position: relative;
  overflow: hidden;
  width: min(82%, 540px);
  aspect-ratio: 1.5;
  border: 1px solid rgba(17, 16, 14, 0.15);
  border-radius: 24px;
  background: #d8d4ca;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.34);
  transition: background 220ms ease, transform 220ms ease;
}

.demo-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.05);
}

.demo-arrow-annotation {
  position: absolute;
  inset: 11% 11% auto auto;
  width: 44%;
  height: 48%;
  fill: none;
  stroke: var(--active-color);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6;
  transition: opacity 180ms ease, stroke 180ms ease, transform 180ms ease;
}

.demo-area-annotation {
  position: absolute;
  top: 13%;
  left: 14%;
  width: 30%;
  height: 70%;
  border: 5px solid var(--active-color);
  border-radius: 12px;
  background: color-mix(in srgb, var(--active-color) 16%, transparent);
  opacity: 0.28;
  transition: opacity 180ms ease, border-color 180ms ease, background 180ms ease;
}

.demo-label {
  position: absolute;
  z-index: 2;
  display: block;
  max-width: 62%;
  padding: 8px 13px;
  overflow: hidden;
  border: 2px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  color: #fff;
  background: var(--active-color);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.34);
  font-size: clamp(10px, 1vw, 14px);
  font-weight: 760;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: background 180ms ease, transform 180ms ease;
}

.demo-label-primary {
  top: 44%;
  right: 6%;
}

.demo-label-secondary {
  bottom: 12%;
  left: 10%;
  color: #fff;
  border-color: rgba(0, 0, 0, 0.18);
  background: var(--blue);
}

.selection-handle {
  position: absolute;
  z-index: 3;
  width: 11px;
  height: 11px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: opacity 180ms ease;
}

.selection-handle-one {
  top: 42%;
  right: 5%;
}

.selection-handle-two {
  top: 58%;
  right: 6%;
}

.product-demo[data-active-tool="direction"] .demo-arrow-annotation {
  opacity: 1;
  transform: scale(1.02);
}

.product-demo[data-active-tool="direction"] .demo-area-annotation {
  opacity: 0.58;
}

.product-demo[data-active-tool="area"] .demo-area-annotation {
  opacity: 1;
}

.product-demo[data-active-tool="area"] .demo-arrow-annotation {
  opacity: 0.58;
}

.product-demo[data-active-tool="label"] .demo-label-primary {
  opacity: 1;
  transform: scale(1.035);
}

.product-demo[data-active-tool="label"] .demo-arrow-annotation,
.product-demo[data-active-tool="label"] .demo-area-annotation {
  opacity: 0.58;
}

.product-demo[data-active-tool="select"] .selection-handle {
  opacity: 1;
}

.product-demo[data-active-tool="select"] .demo-label-primary {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.65), 0 8px 16px rgba(0, 0, 0, 0.25);
  transform: scale(1.025);
}

.product-demo.is-bright .demo-header,
.product-demo.is-bright .demo-controls {
  color: var(--paper-ink);
  background: #f2efe8;
}

.product-demo.is-bright .demo-header {
  border-bottom-color: rgba(17, 16, 14, 0.15);
}

.product-demo.is-bright .demo-icon,
.product-demo.is-bright .demo-icon-button {
  border-color: rgba(17, 16, 14, 0.16);
  color: var(--paper-ink);
  background: rgba(17, 16, 14, 0.025);
}

.product-demo.is-bright .tool-choice,
.product-demo.is-bright .demo-control-row {
  border-color: rgba(17, 16, 14, 0.15);
}

.product-demo.is-bright .tool-choice {
  color: var(--paper-muted);
}

.product-demo.is-bright .tool-choice strong {
  color: var(--paper-ink);
}

.product-demo.is-bright .demo-canvas-shell {
  border-bottom-color: rgba(17, 16, 14, 0.15);
  background: #e9e6de;
}

.product-demo.is-bright .no-watermark {
  border-color: rgba(17, 16, 14, 0.15);
  color: var(--paper-ink);
}

.demo-controls {
  color: var(--text);
  background: #171512;
  transition: color 220ms ease, background 220ms ease;
}

.tool-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.tool-choice {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  margin: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  text-align: center;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.tool-choice + .tool-choice {
  border-left: 1px solid var(--line);
}

.tool-choice svg {
  width: 24px;
  height: 24px;
  margin-bottom: 3px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.tool-choice strong {
  color: var(--text);
  font-size: 13px;
  line-height: 1.1;
}

.tool-choice span {
  font-size: 10px;
  line-height: 1.1;
}

.tool-choice:hover {
  background: rgba(247, 245, 237, 0.045);
}

.tool-choice.is-selected {
  z-index: 1;
  color: var(--text);
  background: rgba(241, 100, 93, 0.1);
  box-shadow: inset 0 0 0 2px var(--coral);
}

.tool-rail-demo {
  min-height: 82px;
  border-bottom: 1px solid var(--line);
}

.demo-control-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 12px 18px;
  transition: border-color 220ms ease;
}

.color-rail {
  display: flex;
  align-items: center;
  gap: 12px;
}

.color-choice,
.color-dot {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: currentColor;
}

.color-choice {
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.color-choice:hover {
  transform: scale(1.12);
}

.color-choice.is-selected,
.color-dot.is-selected {
  box-shadow: 0 0 0 3px var(--text);
}

.amber {
  color: var(--amber);
}

.red {
  color: var(--red);
}

.blue {
  color: var(--blue);
}

.green {
  color: var(--green);
}

.violet {
  color: var(--violet);
}

.ink {
  color: var(--markup-ink);
}

.demo-send-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.no-watermark,
.send-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 730;
}

.no-watermark {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(247, 245, 237, 0.035);
}

.send-button {
  color: var(--ink);
  background: var(--paper);
}

.no-watermark svg,
.send-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-mark {
  position: absolute;
  bottom: -96px;
  left: 22%;
  z-index: 1;
  width: 290px;
  height: 280px;
  fill: none;
  stroke: #ffb52a;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 10;
  filter: drop-shadow(0 4px 12px rgba(245, 158, 10, 0.12));
  pointer-events: none;
}

.workflow-section {
  position: relative;
  z-index: 3;
  padding: 64px 0 104px;
  color: var(--paper-ink);
  background: var(--paper);
}

.section-heading {
  max-width: 980px;
}

.section-heading h2,
.tools-section h2,
.launch-layout h2 {
  margin-bottom: 18px;
  font-size: clamp(42px, 4.2vw, 68px);
  line-height: 1.03;
}

.section-heading p {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--paper-muted);
  font-size: clamp(18px, 1.5vw, 24px);
}

.workflow-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(38px, 5vw, 82px);
  margin-top: 66px;
}

.workflow-line {
  position: absolute;
  top: 116px;
  left: 11%;
  z-index: 0;
  width: 78%;
  height: 86px;
  fill: none;
  stroke: var(--amber);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.workflow-step {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.step-heading {
  min-height: 132px;
}

.step-heading h3 {
  margin-bottom: 8px;
  font-size: clamp(21px, 1.8vw, 29px);
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.step-heading p {
  margin: 0;
  color: var(--paper-muted);
  font-size: 16px;
  line-height: 1.45;
}

.import-stack {
  display: grid;
  gap: 11px;
  width: min(100%, 330px);
  margin: 58px auto 0;
}

.import-stack span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 54px;
  padding: 10px 18px;
  border-radius: 14px;
  color: var(--paper-ink);
  background: rgba(17, 16, 14, 0.055);
  font-size: 16px;
  font-weight: 680;
}

.import-stack .import-primary {
  color: #fff;
  background: var(--coral);
  box-shadow: 0 10px 24px rgba(241, 100, 93, 0.18);
}

.import-stack svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.workflow-markup {
  position: relative;
  overflow: hidden;
  width: min(100%, 350px);
  aspect-ratio: 1.45;
  margin: 58px auto 0;
  border-radius: 14px;
  background: #d8d4ca;
  box-shadow: 0 14px 34px rgba(17, 16, 14, 0.14);
}

.workflow-markup > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.workflow-markup svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--amber);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.workflow-markup > span:last-child {
  position: absolute;
  right: 4%;
  bottom: 12%;
  max-width: 66%;
  padding: 9px 13px;
  border: 2px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  color: #fff;
  background: var(--coral);
  box-shadow: 0 7px 18px rgba(17, 16, 14, 0.22);
  font-size: 12px;
  font-weight: 750;
}

.workflow-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-width: 210px;
  min-height: 72px;
  margin: 78px auto 0;
  padding: 0 28px;
  border: 1px solid var(--paper-line);
  border-radius: 18px;
  color: var(--paper-ink);
  background: #fff;
  box-shadow: 0 12px 30px rgba(17, 16, 14, 0.13);
  font-size: 23px;
  font-weight: 760;
}

.workflow-send svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.tools-section {
  padding: 78px 0 82px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink);
}

.tools-section h2 {
  margin-bottom: 42px;
}

.tool-rail-large {
  overflow: hidden;
  min-height: 140px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: rgba(247, 245, 237, 0.018);
}

.tool-rail-large .tool-choice {
  min-height: 140px;
  padding: 24px 18px;
}

.tool-rail-large .tool-choice svg {
  width: 34px;
  height: 34px;
  margin-bottom: 7px;
}

.tool-rail-large .tool-choice strong {
  font-size: 19px;
}

.tool-rail-large .tool-choice span {
  font-size: 14px;
}

.color-rail-large {
  justify-content: center;
  gap: 28px;
  margin-top: 32px;
}

.color-rail-large .color-dot {
  width: 38px;
  height: 38px;
  border-color: rgba(255, 255, 255, 0.12);
}

.privacy-section {
  padding: clamp(86px, 9vw, 138px) 0;
  background: var(--ink-deep);
}

.privacy-layout {
  display: block;
}

.privacy-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.72fr);
  align-items: end;
  gap: clamp(60px, 8vw, 140px);
}

.privacy-intro h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(52px, 6.4vw, 104px);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.privacy-intro p {
  max-width: 610px;
  margin-bottom: 28px;
  color: rgba(247, 245, 237, 0.78);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.55;
}

.text-link-light {
  color: var(--text);
  font-size: 16px;
}

.privacy-principles {
  margin: clamp(74px, 8vw, 124px) 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-strong);
}

.privacy-principles li {
  display: grid;
  grid-template-columns: minmax(300px, 1.45fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
  min-height: 152px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-strong);
}

.privacy-principles strong {
  color: var(--text);
  font-size: clamp(35px, 4.6vw, 76px);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.privacy-principles p {
  max-width: 520px;
  margin: 0;
  color: rgba(247, 245, 237, 0.64);
  font-size: clamp(17px, 1.25vw, 20px);
  line-height: 1.5;
}

.launch-section {
  padding: 68px 0 72px;
  color: var(--paper-ink);
  background: var(--paper);
}

.launch-layout {
  display: grid;
  grid-template-columns: 228px minmax(0, 690px);
  align-items: center;
  justify-content: center;
  gap: 56px;
}

.launch-layout > img {
  width: 228px;
  height: 228px;
  border-radius: 50px;
  box-shadow: 0 18px 44px rgba(17, 16, 14, 0.16);
}

.launch-layout h2 {
  max-width: 760px;
  margin-bottom: 12px;
}

.launch-platform {
  margin-bottom: 24px;
  color: var(--paper-muted);
  font-size: 24px;
}

.store-status-dark {
  box-shadow: 0 12px 28px rgba(241, 100, 93, 0.2);
}

.launch-note {
  margin: 18px 0 0;
  color: var(--paper-muted);
  font-size: 15px;
}

.site-footer {
  padding: 46px 0 24px;
  border-top: 1px solid var(--line);
  background: var(--ink-deep);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 44px;
}

.footer-product .site-brand {
  font-size: 20px;
}

.footer-product .site-brand img {
  width: 44px;
  height: 44px;
}

.footer-product p {
  margin: 8px 0 0 57px;
  color: rgba(247, 245, 237, 0.62);
  font-size: 13px;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 44px);
  font-size: 14px;
}

.parent-brand {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  justify-self: end;
  column-gap: 8px;
  color: rgba(247, 245, 237, 0.72);
}

.parent-brand > span {
  font-size: 13px;
}

.parent-brand strong {
  color: var(--text);
  font-size: 23px;
  letter-spacing: -0.04em;
}

.parent-brand strong span {
  color: var(--brand-blue);
}

.parent-brand small {
  grid-column: 1 / -1;
  justify-self: end;
  font-size: 13px;
}

.legal {
  margin: 34px 0 0;
  color: rgba(247, 245, 237, 0.48);
  font-size: 12px;
  text-align: center;
}

html.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

@media (min-width: 1261px) {
  .hero h1 {
    white-space: nowrap;
  }
}

/* Policy page */
.policy-main {
  min-height: 100vh;
  padding: 150px 0 96px;
  color: var(--paper-ink);
  background: var(--paper);
}

.policy-shell {
  width: min(900px, calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.policy-header {
  display: grid;
  grid-template-columns: 94px 1fr;
  align-items: center;
  gap: 30px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--paper-line);
}

.policy-header img {
  width: 94px;
  height: 94px;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(17, 16, 14, 0.14);
}

.policy-header h1 {
  margin-bottom: 8px;
  font-size: clamp(48px, 7vw, 76px);
  line-height: 0.98;
}

.policy-header p {
  margin: 0;
  color: var(--paper-muted);
  font-size: 18px;
}

.policy-content {
  display: grid;
  gap: 40px;
  padding-top: 52px;
}

.policy-content section {
  padding-bottom: 40px;
  border-bottom: 1px solid var(--paper-line);
}

.policy-content h2 {
  margin-bottom: 14px;
  font-size: 28px;
  letter-spacing: -0.03em;
}

.policy-content p,
.policy-content li {
  color: #49453f;
  font-size: 17px;
  line-height: 1.72;
}

.policy-content ul {
  margin: 0;
  padding-left: 22px;
}

.policy-content a {
  color: #b53631;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 42px;
  color: #b53631;
  font-weight: 720;
}

.policy-back svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  padding: 48px 24px;
  color: var(--text);
  background: var(--ink);
  text-align: center;
}

.not-found > img {
  width: 94px;
  height: 94px;
  margin-bottom: 32px;
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
}

.not-found > p {
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 16px;
  font-weight: 780;
  letter-spacing: 0.12em;
}

.not-found h1 {
  max-width: 740px;
  margin-bottom: 34px;
  font-size: clamp(48px, 8vw, 84px);
  line-height: 0.98;
}

@media (max-width: 1260px) {
  .hero-shell {
    grid-template-columns: minmax(390px, 0.75fr) minmax(590px, 1.25fr);
    gap: 42px;
  }

  .demo-canvas-shell {
    min-height: 360px;
  }

  .privacy-intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 42px;
  }

  .privacy-intro > div {
    max-width: 680px;
  }

  .privacy-principles li {
    grid-template-columns: minmax(280px, 1fr) minmax(260px, 0.75fr);
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-nav {
    display: none;
  }

  .hero,
  .hero-shell {
    min-height: auto;
  }

  .hero-shell {
    display: block;
    padding: 132px 0 82px;
  }

  .hero-copy {
    max-width: 760px;
    margin-bottom: 60px;
  }

  .hero-description {
    max-width: 620px;
  }

  .product-demo {
    max-width: 920px;
    margin-inline: auto;
  }

  .hero-mark {
    bottom: -104px;
    left: 34%;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .workflow-line {
    display: none;
  }

  .workflow-step {
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1fr);
    align-items: center;
    gap: 48px;
  }

  .step-heading {
    min-height: 0;
  }

  .import-stack,
  .workflow-markup,
  .workflow-send {
    margin-top: 0;
  }

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

  .footer-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    padding-top: 26px;
    border-top: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: 22px;
  }

  html {
    scroll-padding-top: 78px;
  }

  .site-header,
  .site-header.is-scrolled {
    min-height: 70px;
    gap: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .site-brand {
    gap: 9px;
    font-size: 19px;
  }

  .site-brand img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
  }

  .store-status-small {
    gap: 7px;
    min-height: 40px;
    padding: 0 13px;
    font-size: 13px;
  }

  .status-wide {
    display: none;
  }

  .status-compact {
    display: inline;
  }

  .hero-shell {
    padding: 116px 0 62px;
  }

  .hero-copy {
    margin-bottom: 48px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: clamp(50px, 15vw, 68px);
  }

  .hero-promise {
    margin-bottom: 20px;
    font-size: clamp(27px, 8vw, 38px);
  }

  .hero-description {
    margin-bottom: 28px;
    font-size: 18px;
  }

  .store-status-large {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
    font-size: 16px;
  }

  .hero-mark {
    display: none;
  }

  .product-demo {
    border-radius: 24px;
  }

  .demo-header {
    min-height: 64px;
    padding: 10px 12px 10px 14px;
  }

  .demo-brand {
    gap: 9px;
    font-size: 16px;
  }

  .demo-brand img {
    width: 38px;
    height: 38px;
  }

  .demo-icon,
  .demo-icon-button {
    width: 34px;
    height: 34px;
  }

  .demo-icon:nth-last-child(-n + 2) {
    display: none;
  }

  .demo-canvas-shell {
    min-height: 330px;
    padding: 60px 18px 24px;
  }

  .demo-canvas {
    width: min(100%, 420px);
  }

  .zoom-control {
    top: 12px;
    right: 12px;
  }

  .demo-label {
    max-width: 66%;
    font-size: 10px;
  }

  .tool-rail-demo {
    grid-template-columns: repeat(2, 1fr);
    min-height: 166px;
  }

  .tool-rail-demo .tool-choice {
    min-height: 83px;
    border-bottom: 1px solid var(--line);
  }

  .tool-rail-demo .tool-choice:nth-child(odd) {
    border-left: 0;
  }

  .tool-rail-demo .tool-choice:nth-child(n + 3) {
    border-bottom: 0;
  }

  .demo-control-row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px;
  }

  .color-rail {
    justify-content: center;
  }

  .demo-send-row {
    justify-content: center;
  }

  .workflow-section {
    padding: 72px 0 78px;
  }

  .section-heading h2,
  .tools-section h2,
  .launch-layout h2 {
    font-size: clamp(39px, 11vw, 54px);
  }

  .privacy-intro h2 {
    font-size: clamp(43px, 11.5vw, 49px);
    line-height: 0.94;
  }

  .workflow-grid {
    margin-top: 58px;
  }

  .workflow-step {
    display: block;
  }

  .import-stack,
  .workflow-markup,
  .workflow-send {
    margin-top: 36px;
  }

  .tools-section {
    padding: 68px 0 72px;
  }

  .tool-rail-large {
    grid-template-columns: repeat(2, 1fr);
  }

  .tool-rail-large .tool-choice {
    min-height: 128px;
    border-bottom: 1px solid var(--line);
  }

  .tool-rail-large .tool-choice:nth-child(odd) {
    border-left: 0;
  }

  .tool-rail-large .tool-choice:nth-child(n + 3) {
    border-bottom: 0;
  }

  .color-rail-large {
    gap: 18px;
  }

  .color-rail-large .color-dot {
    width: 30px;
    height: 30px;
  }

  .privacy-section {
    padding: 72px 0;
  }

  .privacy-principles li {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 34px 0;
  }

  .privacy-principles p {
    grid-column: auto;
  }

  .launch-section {
    padding: 62px 0 66px;
  }

  .launch-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .launch-layout > img {
    width: 138px;
    height: 138px;
    margin-inline: auto;
    border-radius: 31px;
  }

  .launch-layout .store-status {
    margin-inline: auto;
  }

  .launch-platform {
    font-size: 20px;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-product,
  .parent-brand {
    justify-self: start;
  }

  .footer-nav {
    grid-column: auto;
    grid-row: auto;
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 20px 34px;
    justify-content: start;
  }

  .parent-brand small {
    justify-self: start;
  }

  .legal {
    text-align: left;
    width: min(var(--max), calc(100% - (var(--gutter) * 2)));
    margin: 30px auto 0;
  }

  .policy-main {
    padding-top: 118px;
  }

  .policy-header {
    grid-template-columns: 72px 1fr;
    gap: 20px;
  }

  .policy-header img {
    width: 72px;
    height: 72px;
    border-radius: 17px;
  }
}

@media (max-width: 420px) {
  .site-brand span {
    font-size: 17px;
  }

  .store-status-small {
    padding: 0 11px;
  }

  .demo-header-actions {
    gap: 5px;
  }

  .demo-canvas-shell {
    min-height: 290px;
  }

  .no-watermark {
    display: none;
  }

  .color-rail-large {
    gap: 14px;
  }

  .color-rail-large .color-dot {
    width: 27px;
    height: 27px;
  }

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

  .policy-header {
    display: block;
  }

  .policy-header img {
    margin-bottom: 24px;
  }
}

@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;
  }

  html.has-js .reveal {
    opacity: 1;
    transform: none;
  }
}
