
:root {
  --ink: #0b1020;
  --ink-soft: #22293d;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: #e6e4de;
  --muted: #697085;
  --violet: #6257f6;
  --violet-dark: #4036d8;
  --violet-soft: #eeecff;
  --lime: #c9ff63;
  --cyan: #7ee8ff;
  --coral: #ff897a;
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
a,
input {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

main {
  overflow: hidden;
}

.nav-shell {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 14px 24px;
  pointer-events: none;
}

.nav-inner {
  width: min(1180px, 100%);
  min-height: 64px;
  margin: 0 auto;
  padding: 8px 10px 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(11, 16, 32, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 50px rgba(35, 31, 78, 0.08);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 30px;
  height: 30px;
  display: grid;
  place-content: center;
  grid-template-columns: repeat(2, 5px);
  gap: 3px;
  background: var(--ink);
  border-radius: 9px;
  transform: rotate(-4deg);
}

.brand-mark i {
  width: 5px;
  height: 5px;
  display: block;
  background: var(--lime);
  border-radius: 2px;
}

.brand-mark i:nth-child(3) {
  grid-column: 2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: 84px;
}

.nav-links a,
.sign-in {
  font-size: 13px;
  font-weight: 700;
  color: #4e5568;
  transition: color 180ms ease;
}

.nav-links a:hover,
.sign-in:hover {
  color: var(--violet);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 0;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 0 17px;
  gap: 14px;
  color: white;
  background: var(--ink);
}

.button-small:hover {
  box-shadow: 0 10px 22px rgba(11, 16, 32, 0.2);
}

.menu-button {
  width: 42px;
  height: 42px;
  padding: 0;
  display: none;
  place-content: center;
  gap: 5px;
  background: var(--ink);
  border: 0;
  border-radius: 10px;
}

.menu-button span {
  width: 18px;
  height: 2px;
  display: block;
  background: white;
  border-radius: 2px;
}

.hero {
  position: relative;
  padding: 176px 24px 40px;
  background:
    radial-gradient(circle at 73% 8%, rgba(98, 87, 246, 0.16), transparent 25%),
    radial-gradient(circle at 20% 75%, rgba(126, 232, 255, 0.16), transparent 26%),
    linear-gradient(#fbfaf7 0%, #fff 86%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.3;
  background-image: radial-gradient(#c9c5bc 0.7px, transparent 0.7px);
  background-size: 15px 15px;
  mask-image: linear-gradient(to bottom, black 0, transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  min-height: 600px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.hero-copy {
  padding-bottom: 30px;
}

.eyebrow,
.section-kicker {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--violet-dark);
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 7px 10px 7px 7px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid #dfdcf9;
  border-radius: 99px;
  box-shadow: 0 8px 30px rgba(43, 34, 118, 0.06);
}

.eyebrow span {
  padding: 6px 8px;
  color: white;
  background: var(--violet);
  border-radius: 99px;
  font-size: 9px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 650px;
  margin: 24px 0 22px;
  font-size: clamp(52px, 5.7vw, 82px);
  line-height: 0.96;
  letter-spacing: -0.075em;
  font-weight: 850;
}

.hero h1 em {
  position: relative;
  color: var(--violet);
  font-style: normal;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  left: 2px;
  right: -10px;
  bottom: -8px;
  height: 11px;
  background: var(--lime);
  border-radius: 100%;
  transform: rotate(-1deg);
  opacity: 0.75;
  z-index: -1;
}

.hero-lede {
  max-width: 540px;
  margin-bottom: 30px;
  color: #596074;
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: -0.015em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.button-primary {
  color: white;
  background: var(--violet);
  box-shadow: 0 12px 28px rgba(98, 87, 246, 0.25);
}

.button-primary:hover {
  background: var(--violet-dark);
  box-shadow: 0 16px 34px rgba(98, 87, 246, 0.32);
}

.text-link {
  padding: 10px 0;
  display: inline-flex;
  gap: 10px;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.hero-proof {
  margin-top: 22px;
  display: flex;
  gap: 18px;
  color: #777d8c;
  font-size: 11px;
  font-weight: 700;
}

.hero-proof span::first-letter {
  color: var(--violet);
}

.product-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.product-stage::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 6%;
  bottom: 2%;
  height: 60px;
  background: rgba(52, 44, 141, 0.22);
  filter: blur(38px);
  border-radius: 50%;
  z-index: -2;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(4px);
  z-index: -1;
}

.glow-one {
  width: 290px;
  height: 290px;
  right: -10px;
  top: 24px;
  background: radial-gradient(circle at 30% 30%, #bbb7ff, rgba(98, 87, 246, 0.07) 70%);
}

.glow-two {
  width: 200px;
  height: 200px;
  left: 30px;
  bottom: 26px;
  background: radial-gradient(circle at 30% 30%, #d9ff9e, rgba(201, 255, 99, 0.03) 70%);
}

.browser-card {
  width: min(560px, 100%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(61, 52, 134, 0.12);
  border-radius: 24px;
  box-shadow: 0 35px 80px rgba(29, 24, 81, 0.17), 0 4px 12px rgba(29, 24, 81, 0.06);
  transform: rotate(1.2deg);
  overflow: hidden;
}

.browser-top {
  height: 48px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #9296a3;
  border-bottom: 1px solid #ecebf1;
  font-size: 10px;
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots i {
  width: 7px;
  height: 7px;
  background: #ff7e70;
  border-radius: 50%;
}

.browser-dots i:nth-child(2) { background: #ffcb59; }
.browser-dots i:nth-child(3) { background: #74dc86; }

.browser-top b {
  justify-self: end;
  letter-spacing: 2px;
}

.mode-tabs {
  padding: 16px 20px 0;
  display: flex;
  gap: 6px;
}

.mode-tabs button {
  padding: 9px 13px;
  color: #7c8291;
  background: transparent;
  border: 0;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.mode-tabs button.active {
  color: var(--violet-dark);
  background: var(--violet-soft);
}

.create-panel {
  padding: 22px 20px 24px;
}

.create-panel label {
  display: block;
  margin: 0 0 8px 2px;
  color: #73798b;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.url-row {
  height: 58px;
  padding: 7px 7px 7px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f6f6f8;
  border: 1px solid #e4e3e9;
  border-radius: 13px;
}

.url-row span {
  min-width: 0;
  flex: 1;
  color: #636a7c;
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.url-row button {
  height: 42px;
  padding: 0 17px;
  color: white;
  background: var(--violet);
  border: 0;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.result-card {
  margin-top: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--ink);
  color: white;
  border-radius: 16px;
}

.result-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  background: white;
  color: var(--ink);
  border-radius: 12px;
  font-size: 23px;
}

.result-icon .qr-art {
  width: 42px;
  height: 42px;
  border-radius: 6px;
}

.result-copy {
  min-width: 0;
  flex: 1;
}

.result-copy small {
  display: block;
  margin-bottom: 4px;
  color: #969db1;
  font-size: 9px;
}

.result-copy strong {
  display: block;
  font-size: 13px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.result-stats {
  margin-top: 10px;
  display: flex;
  gap: 12px;
  color: #9da4b6;
  font-size: 9px;
}

.result-stats b { color: white; }
.result-stats .trend { color: var(--lime); }

.copy-button {
  padding: 8px 10px;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 9px;
  font-weight: 800;
}

.browser-footer {
  padding: 13px 20px 16px;
  display: flex;
  gap: 8px;
  border-top: 1px solid #ecebf1;
}

.browser-footer span {
  padding: 6px 9px;
  color: #7e8494;
  background: #f5f4f8;
  border-radius: 99px;
  font-size: 8px;
  font-weight: 700;
}

.floating-card {
  position: absolute;
  background: white;
  border: 1px solid #e6e3ef;
  border-radius: 14px;
  box-shadow: 0 18px 42px rgba(31, 26, 83, 0.16);
  z-index: 3;
}

.mini-chart {
  width: 164px;
  left: -12px;
  top: 33px;
  padding: 14px;
  transform: rotate(-4deg);
}

.mini-chart > div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #777e90;
  font-size: 8px;
}

.mini-chart > div:first-child b {
  padding: 4px 6px;
  color: #177040;
  background: #dcfae9;
  border-radius: 99px;
  font-size: 7px;
}

.mini-chart > strong {
  display: block;
  margin: 8px 0 10px;
  font-size: 22px;
  letter-spacing: -0.05em;
}

.chart-bars {
  height: 34px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
}

.chart-bars i {
  width: 100%;
  background: var(--violet);
  border-radius: 3px 3px 1px 1px;
}

.chart-bars i:nth-child(1) { height: 34%; opacity: 0.35; }
.chart-bars i:nth-child(2) { height: 48%; opacity: 0.45; }
.chart-bars i:nth-child(3) { height: 40%; opacity: 0.55; }
.chart-bars i:nth-child(4) { height: 68%; opacity: 0.65; }
.chart-bars i:nth-child(5) { height: 57%; opacity: 0.75; }
.chart-bars i:nth-child(6) { height: 88%; opacity: 0.9; }
.chart-bars i:nth-child(7) { height: 100%; }

.scan-card {
  right: -24px;
  bottom: 50px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: rotate(4deg);
}

.scan-card .qr-art {
  width: 52px;
  height: 52px;
  border-radius: 8px;
}

.scan-card b,
.scan-card span {
  display: block;
}

.scan-card b {
  font-size: 10px;
  margin-bottom: 4px;
}

.scan-card span {
  color: #8a90a0;
  font-size: 8px;
}

.qr-art {
  position: relative;
  display: block;
  background-color: #f4f1ff;
  background-image:
    linear-gradient(90deg, currentColor 4px, transparent 4px),
    linear-gradient(currentColor 4px, transparent 4px),
    repeating-conic-gradient(currentColor 0 25%, transparent 0 50%);
  background-position: 50% 50%, 50% 50%, center;
  background-size: 13px 13px, 13px 13px, 12px 12px;
  color: var(--violet);
  border: 7px solid white;
  border-radius: 10px;
  box-shadow: 0 5px 16px rgba(33, 28, 86, 0.08);
}

.qr-eye {
  position: absolute;
  width: 18px;
  height: 18px;
  background: white;
  border: 5px solid currentColor;
  box-shadow: inset 0 0 0 2px white;
}

.eye-one { top: 3px; left: 3px; }
.eye-two { top: 3px; right: 3px; }
.eye-three { left: 3px; bottom: 3px; }

.qr-ink { color: #111524; background-color: #f4f4f4; }
.qr-cyan { color: #006bb4; background-color: #dff9ff; }
.qr-coral { color: #ff5c52; background-color: #fff0ed; }
.qr-lime { color: #2b873b; background-color: #ebffd2; }
.qr-night { color: var(--lime); background-color: #090e1c; border-color: #090e1c; }
.qr-night .qr-eye { background: #090e1c; box-shadow: inset 0 0 0 2px #090e1c; }

.audience-strip {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 24px auto 0;
  padding: 24px 0 8px;
  display: flex;
  align-items: center;
  gap: 38px;
  border-top: 1px solid #e7e4de;
}

.audience-strip > span {
  color: #9094a0;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.audience-strip div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.audience-strip b {
  color: #596074;
  font-size: 12px;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.outcomes {
  padding: 130px 0 140px;
}

.section-heading h2 {
  max-width: 760px;
  margin: 14px 0 0;
  font-size: clamp(40px, 4.7vw, 66px);
  line-height: 1.01;
  letter-spacing: -0.06em;
}

.section-heading > p,
.split-heading > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 80px;
  align-items: end;
}

.split-heading > p {
  margin: 0 0 6px;
}

.feature-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: 400px 345px;
  gap: 16px;
}

.feature-card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-link {
  grid-row: 1 / span 2;
  background: var(--ink);
  color: white;
}

.feature-data {
  grid-column: 2 / span 2;
}

.feature-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--violet-dark);
  background: var(--violet-soft);
  border-radius: 12px;
  font-size: 19px;
  font-weight: 900;
}

.feature-link .feature-icon {
  color: var(--ink);
  background: var(--lime);
}

.feature-top small {
  color: #a3a7b2;
  font-size: 10px;
  font-weight: 800;
}

.feature-card h3 {
  max-width: 360px;
  margin: 28px 0 10px;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.feature-card p {
  max-width: 390px;
  color: #717789;
  font-size: 13px;
  line-height: 1.65;
}

.feature-link p {
  color: #abb0bf;
}

.link-stack {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 36px;
  display: grid;
  gap: 10px;
}

.link-stack span {
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #d9dce4;
  font-size: 12px;
  transform: translateX(20px);
}

.link-stack span:nth-child(2) { transform: translateX(0); color: var(--lime); }
.link-stack span:nth-child(3) { transform: translateX(36px); }

.qr-pair {
  position: absolute;
  right: 26px;
  bottom: 28px;
  display: flex;
}

.qr-pair .qr-art {
  width: 96px;
  height: 96px;
}

.qr-pair .qr-art + .qr-art {
  margin: 20px 0 0 -22px;
  transform: rotate(7deg);
}

.page-fan {
  position: absolute;
  right: 34px;
  bottom: 30px;
  width: 130px;
  height: 105px;
}

.page-fan i {
  position: absolute;
  inset: 0;
  background: #f1efff;
  border: 1px solid #d9d4ff;
  border-radius: 8px;
  transform: rotate(-8deg);
  box-shadow: 0 8px 20px rgba(49, 39, 135, 0.08);
}

.page-fan i:nth-child(2) { transform: rotate(3deg) translate(12px, -7px); background: #e4faff; }
.page-fan i:nth-child(3) { transform: rotate(13deg) translate(24px, -14px); background: var(--lime); }

.data-spark {
  position: absolute;
  right: 32px;
  bottom: 28px;
  width: 48%;
  height: 150px;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
  background: #f7f6fa;
  border-radius: 16px;
}

.data-spark span {
  width: 100%;
  background: var(--violet);
  border-radius: 5px 5px 2px 2px;
  opacity: 0.78;
}

.control-list {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  display: grid;
  gap: 8px;
}

.control-list span {
  padding: 11px 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #f7f6f9;
  border-radius: 9px;
  color: #656b7d;
  font-size: 10px;
  font-weight: 700;
}

.control-list i {
  width: 15px;
  height: 15px;
  background: var(--lime);
  border: 4px solid white;
  box-shadow: 0 0 0 1px #b6dc6d;
  border-radius: 50%;
}

.workflow-section {
  padding: 24px;
  background: var(--paper);
}

.workflow-wrap {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 110px 70px 0;
  color: white;
  background:
    radial-gradient(circle at 50% 0, rgba(98, 87, 246, 0.35), transparent 33%),
    #0b1020;
  border-radius: 36px;
  overflow: hidden;
}

.centered {
  text-align: center;
}

.centered .section-kicker,
.centered h2,
.centered p {
  margin-left: auto;
  margin-right: auto;
}

.inverse .section-kicker { color: var(--lime); }
.inverse h2 { color: white; }
.inverse p { color: #aab0c0; }

.steps-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.steps-grid article {
  position: relative;
  padding: 22px 22px 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.step-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: #7c8295;
  font-size: 11px;
  font-weight: 800;
}

.step-visual {
  height: 150px;
  margin-bottom: 26px;
  display: grid;
  place-content: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  overflow: hidden;
}

.paste-visual {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px;
}

.paste-visual i {
  min-width: 0;
  flex: 1;
  padding: 13px;
  color: #9da3b5;
  background: #171d2d;
  border: 1px solid #30384b;
  border-radius: 9px;
  font-size: 9px;
  font-style: normal;
  overflow: hidden;
  text-overflow: ellipsis;
}

.paste-visual b {
  padding: 13px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 9px;
  font-size: 9px;
}

.style-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.style-visual i {
  width: 40px;
  height: 56px;
  background: var(--violet);
  border: 4px solid rgba(255, 255, 255, 0.13);
  border-radius: 11px;
}

.style-visual i:nth-child(2) { background: var(--lime); transform: translateY(-12px); }
.style-visual i:nth-child(3) { background: var(--cyan); }
.style-visual i:nth-child(4) { background: var(--coral); transform: translateY(10px); }

.share-visual {
  position: relative;
}

.share-visual b {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 18px;
  font-size: 24px;
}

.share-visual i {
  position: absolute;
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  opacity: 0.5;
}

.share-visual i:nth-of-type(1) { top: 24px; left: 28%; }
.share-visual i:nth-of-type(2) { top: 48px; right: 26%; }
.share-visual i:nth-of-type(3) { bottom: 27px; left: 33%; }

.steps-grid h3 {
  margin: 0 0 9px;
  font-size: 18px;
  letter-spacing: -0.03em;
}

.steps-grid p {
  margin: 0;
  color: #a5abba;
  font-size: 12px;
  line-height: 1.6;
}

.metric-rail {
  margin-top: 76px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.metric-rail div {
  padding: 32px 20px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.metric-rail div:last-child { border: 0; }

.metric-rail strong {
  display: block;
  margin-bottom: 7px;
  color: var(--lime);
  font-size: 26px;
  letter-spacing: -0.04em;
}

.metric-rail span {
  color: #8e95a7;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.qr-section {
  padding: 140px 0;
}

.qr-section .section-heading p {
  max-width: 600px;
  margin-top: 16px;
}

.theme-gallery {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.theme-gallery article {
  padding: 12px 12px 15px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.theme-gallery article:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 0 18px 34px rgba(28, 25, 68, 0.1);
}

.theme-gallery .qr-art {
  width: 100%;
  aspect-ratio: 1;
}

.theme-gallery article > div {
  padding: 13px 4px 0;
  display: flex;
  justify-content: space-between;
}

.theme-gallery strong { font-size: 11px; }
.theme-gallery span { color: #a0a5b0; font-size: 9px; }

.use-case-row {
  margin-top: 62px;
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #6f7585;
  font-size: 11px;
}

.use-case-row > span {
  color: #a0a4ae;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 9px;
}

.use-case-row i {
  width: 3px;
  height: 3px;
  background: var(--violet);
  border-radius: 50%;
}

.proof-section {
  padding: 130px 0 140px;
  background: #efeee9;
}

.testimonial-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.testimonial-grid article {
  padding: 28px;
  background: white;
  border: 1px solid #e2e0db;
  border-radius: 20px;
  box-shadow: 0 14px 35px rgba(24, 22, 55, 0.05);
}

.stars {
  color: var(--violet);
  font-size: 12px;
  letter-spacing: 3px;
}

.testimonial-grid blockquote {
  min-height: 128px;
  margin: 22px 0 28px;
  color: #242a3c;
  font-size: 17px;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.person {
  padding-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #eceae5;
}

.person > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--ink);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
}

.person strong,
.person small {
  display: block;
}

.person strong { margin-bottom: 4px; font-size: 11px; }
.person small { color: #8c919e; font-size: 9px; }

.pricing-section {
  padding: 140px 0;
}

.pricing-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.billing-toggle {
  padding: 5px;
  display: flex;
  background: #ebe9e4;
  border-radius: 12px;
}

.billing-toggle button {
  min-height: 42px;
  padding: 0 14px;
  color: #717685;
  background: transparent;
  border: 0;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.billing-toggle button.active {
  color: var(--ink);
  background: white;
  box-shadow: 0 4px 15px rgba(20, 18, 50, 0.08);
}

.billing-toggle span {
  margin-left: 6px;
  color: #27713d;
  font-size: 8px;
}

.pricing-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr 0.72fr;
  gap: 16px;
  align-items: stretch;
}

.price-card,
.pricing-note {
  position: relative;
  padding: 30px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.featured-price {
  border: 2px solid var(--violet);
  box-shadow: 0 22px 48px rgba(98, 87, 246, 0.14);
}

.popular-pill {
  position: absolute;
  top: -13px;
  right: 22px;
  padding: 7px 11px;
  color: white;
  background: var(--violet);
  border-radius: 99px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.plan-name span,
.plan-name small {
  display: block;
}

.plan-name span {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.plan-name small {
  color: #9195a1;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.price {
  margin: 28px 0 14px;
  display: flex;
  align-items: flex-end;
  gap: 7px;
}

.price strong {
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.06em;
}

.price span {
  padding-bottom: 4px;
  color: #868b98;
  font-size: 10px;
}

.price-card > p {
  min-height: 42px;
  color: #73798a;
  font-size: 12px;
  line-height: 1.55;
}

.price-card .button {
  width: 100%;
  margin: 10px 0 24px;
}

.button-outline {
  color: var(--ink);
  background: white;
  border: 1px solid #d9d7d1;
}

.button-outline:hover {
  border-color: var(--ink);
}

.price-card ul {
  margin: 0;
  padding: 22px 0 0;
  display: grid;
  gap: 13px;
  border-top: 1px solid #eceae6;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 21px;
  color: #535a6c;
  font-size: 11px;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--violet);
  font-weight: 900;
}

.pricing-note {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  background: var(--ink);
  border-color: var(--ink);
}

.pricing-note > span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-note h3 {
  margin: 18px 0 12px;
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.pricing-note p {
  color: #a8aebe;
  font-size: 12px;
  line-height: 1.6;
}

.pricing-note a {
  margin-top: 24px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.pricing-note a b { color: var(--lime); }

.faq-section {
  padding: 130px 0;
  background: white;
  border-top: 1px solid var(--line);
}

.faq-wrap {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-intro h2 {
  margin: 18px 0;
  font-size: 46px;
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.faq-intro p {
  color: #747a8b;
  font-size: 12px;
}

.faq-intro a {
  color: var(--violet);
  font-weight: 800;
}

.faq-list {
  border-top: 1px solid #dfddd7;
}

.faq-list details {
  border-bottom: 1px solid #dfddd7;
}

.faq-list summary {
  padding: 24px 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary span {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--violet);
  background: var(--violet-soft);
  border-radius: 50%;
  font-size: 18px;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span { transform: rotate(45deg); }

.faq-list details p {
  max-width: 650px;
  padding: 0 54px 24px 2px;
  color: #707687;
  font-size: 13px;
  line-height: 1.7;
}

.final-cta {
  position: relative;
  width: min(1320px, calc(100% - 48px));
  margin: 24px auto;
  padding: 112px 24px;
  color: white;
  background: var(--violet);
  border-radius: 36px;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(white 0.7px, transparent 0.7px);
  background-size: 13px 13px;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.cta-orb-one {
  width: 380px;
  height: 380px;
  left: -150px;
  bottom: -190px;
  background: rgba(201, 255, 99, 0.35);
}

.cta-orb-two {
  width: 300px;
  height: 300px;
  right: -90px;
  top: -150px;
  background: rgba(126, 232, 255, 0.3);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.cta-content > span {
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cta-content h2 {
  margin: 18px 0;
  font-size: clamp(44px, 5vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.cta-content p {
  color: #dcd9ff;
  font-size: 15px;
}

.cta-content > div {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.button-light {
  color: var(--ink);
  background: white;
  box-shadow: 0 14px 28px rgba(24, 15, 94, 0.2);
}

.cta-signin {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 800;
}

footer {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.brand-footer { font-size: 18px; }

.footer-top > div:first-child p {
  max-width: 360px;
  margin: 18px 0 0;
  color: #747a8a;
  font-size: 13px;
  line-height: 1.65;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links strong {
  margin-bottom: 5px;
  font-size: 11px;
}

.footer-links a {
  color: #7d8291;
  font-size: 11px;
}

.footer-links a:hover { color: var(--violet); }

.footer-bottom {
  margin-top: 70px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: #969aa5;
  border-top: 1px solid var(--line);
  font-size: 9px;
}

@media (max-width: 1050px) {
  .nav-links { margin-left: 20px; gap: 20px; }
  .hero-grid { gap: 36px; }
  .hero h1 { font-size: 62px; }
  .mini-chart { left: -4px; }
  .scan-card { right: -2px; }
  .feature-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 420px 340px 340px; }
  .feature-link { grid-row: 1 / span 2; }
  .feature-data { grid-column: 1 / span 2; }
  .workflow-wrap { padding-left: 38px; padding-right: 38px; }
  .theme-gallery { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .pricing-note { grid-column: 1 / span 2; min-height: 280px; }
}

@media (max-width: 800px) {
  .nav-shell { padding: 10px 14px; }
  .nav-inner { min-height: 58px; padding-left: 14px; }
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    margin: 0;
    padding: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: 0 16px 45px rgba(20, 18, 54, 0.12);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 13px; border-radius: 8px; }
  .nav-links a:hover { background: #f4f3ef; }
  .sign-in, .nav-actions .button-small { display: none; }
  .menu-button { display: grid; }
  .hero { padding: 140px 18px 34px; }
  .hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .hero-copy { text-align: center; padding: 0; }
  .hero-copy .eyebrow, .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-proof { justify-content: center; }
  .product-stage { min-height: 500px; }
  .audience-strip { display: block; text-align: center; }
  .audience-strip div { margin-top: 20px; flex-wrap: wrap; justify-content: center; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .section { width: min(100% - 36px, 1180px); }
  .outcomes { padding: 100px 0; }
  .feature-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 380px 330px 330px; }
  .feature-card { padding: 22px; }
  .feature-card h3 { font-size: 19px; }
  .workflow-section { padding: 12px; }
  .workflow-wrap { padding: 90px 20px 0; border-radius: 28px; }
  .steps-grid { grid-template-columns: 1fr; }
  .metric-rail { grid-template-columns: 1fr 1fr; }
  .metric-rail div:nth-child(2) { border-right: 0; }
  .metric-rail div:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .qr-section { padding: 100px 0; }
  .use-case-row { flex-wrap: wrap; }
  .proof-section { padding: 100px 0; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .testimonial-grid blockquote { min-height: 0; }
  .pricing-section { padding: 100px 0; }
  .pricing-header { align-items: flex-start; flex-direction: column; }
  .faq-section { padding: 100px 0; }
  .faq-wrap { grid-template-columns: 1fr; gap: 60px; }
  .faq-intro { position: static; }
  .final-cta { width: calc(100% - 24px); padding: 90px 20px; border-radius: 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 560px) {
  .brand { font-size: 14px; }
  .brand-mark { width: 28px; height: 28px; }
  .hero { padding-top: 122px; }
  .eyebrow { font-size: 9px; }
  .hero h1 { font-size: clamp(43px, 13vw, 60px); }
  .hero-lede { font-size: 16px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .hero-actions .button { width: 100%; }
  .hero-proof { flex-wrap: wrap; gap: 8px 14px; }
  .product-stage { min-height: 445px; }
  .browser-card { transform: none; }
  .browser-top span { display: none; }
  .browser-top { grid-template-columns: 1fr 1fr; }
  .mode-tabs { padding-left: 12px; padding-right: 12px; }
  .mode-tabs button { flex: 1; padding-left: 4px; padding-right: 4px; }
  .create-panel { padding: 18px 12px 16px; }
  .result-card { align-items: flex-start; }
  .result-icon { width: 44px; height: 44px; }
  .result-stats { flex-wrap: wrap; gap: 5px 10px; }
  .copy-button { display: none; }
  .browser-footer { padding-left: 12px; padding-right: 12px; flex-wrap: wrap; }
  .mini-chart { width: 138px; top: -26px; left: -8px; }
  .scan-card { right: -7px; bottom: -15px; }
  .section-heading h2 { font-size: 40px; }
  .feature-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: none; }
  .feature-card, .feature-link, .feature-data { grid-column: auto; grid-row: auto; min-height: 330px; }
  .feature-link { min-height: 560px; }
  .data-spark { width: calc(100% - 44px); }
  .theme-gallery { grid-template-columns: repeat(2, 1fr); }
  .use-case-row i { display: none; }
  .use-case-row b { width: calc(50% - 10px); text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-note { grid-column: auto; min-height: 300px; }
  .price-card, .pricing-note { padding: 24px; }
  .billing-toggle { width: 100%; }
  .billing-toggle button { flex: 1; }
  .faq-intro h2 { font-size: 40px; }
  .cta-content > div { flex-direction: column; }
  .footer-links { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .footer-bottom { gap: 20px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}

/* --- Bio pages section (added) --- */
.bio-section { background: var(--white); }
.bio-grid { display:grid; grid-template-columns: 1.05fr .95fr; gap:56px; align-items:center; }
.bio-points { display:flex; flex-direction:column; gap:18px; margin-top:26px; }
.bio-points > div { display:flex; gap:14px; align-items:flex-start; }
.bio-points b { display:flex; align-items:center; justify-content:center; flex:0 0 34px; height:34px; border-radius:11px;
  background:var(--violet-soft); color:var(--violet-dark); font-size:15px; }
.bio-points strong { display:block; font-size:16px; margin-bottom:2px; }
.bio-points span { color:var(--muted); font-size:15px; line-height:1.5; }
.bio-phone { justify-self:center; width:300px; border-radius:34px; padding:18px 16px 22px;
  background:#06070f; border:1px solid rgba(255,255,255,.10); box-shadow:0 30px 70px rgba(12,10,40,.32); color:#eef1ff; }
.bio-url { display:flex; justify-content:center; margin-bottom:14px; font-size:12px; letter-spacing:.4px; color:#8f9ac6; }
.bio-avatar { width:82px; height:82px; border-radius:50%; margin:6px auto 12px;
  background:linear-gradient(135deg,#38e1ff,#7b5cff 55%,#f472d0); box-shadow:0 0 26px rgba(120,90,255,.5); }
.bio-name { text-align:center; font-size:22px; font-weight:800; }
.bio-role { text-align:center; font-size:13px; color:#9aa4cc; margin-top:4px; }
.bio-btn { margin-top:14px; height:44px; border-radius:13px; display:flex; align-items:center; justify-content:center;
  font-size:14px; font-weight:600; background:linear-gradient(90deg,#2f6bff,#7a37ff 55%,#c23df0); color:#fff; }
.bio-row { margin-top:10px; height:44px; border-radius:13px; display:flex; align-items:center; gap:10px; padding:0 14px;
  font-size:13px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.10); }
.bio-row i { width:20px; height:20px; border-radius:6px; background:rgba(120,150,255,.3); flex:0 0 20px; }
.bio-socials { display:flex; justify-content:center; gap:10px; margin-top:16px; }
.bio-socials i { width:30px; height:30px; border-radius:50%; border:1px solid rgba(255,255,255,.14); background:rgba(255,255,255,.05); }
@media (max-width: 900px){ .bio-grid { grid-template-columns:1fr; gap:34px; } }

/* --- real themed QR images (added) --- */
.qr-img { display:block; border-radius:10px; }
.theme-gallery .qr-img { width:100%; height:auto; aspect-ratio:1; border-radius:12px; }
.qr-pair .qr-img { width:96px; height:96px; }
.qr-pair .qr-img + .qr-img { margin:20px 0 0 -22px; transform:rotate(7deg); }
.scan-card .qr-img { width:52px; height:52px; border-radius:8px; }

/* editorial bio mockup */
.bio-phone{ background:#f6efe1; border:1px solid rgba(43,29,22,.14); color:#2b1d16; box-shadow:0 24px 60px rgba(80,55,35,.16); }
.bio-url{ color:#7c7160; }
.bio-ed{ display:grid; grid-template-columns:1.05fr .95fr; gap:12px; align-items:center; margin-bottom:14px; }
.bio-name{ font-family:Georgia,'Times New Roman',serif; font-weight:600; font-size:26px; text-align:left; color:#2b1d16; line-height:1.05; }
.bio-role{ font-size:12px; color:#7c7160; text-align:left; margin-top:4px; }
.bio-rule{ width:34px; height:2px; background:#c0532a; margin:9px 0 12px; }
.bio-portrait{ width:100%; aspect-ratio:3/4; border-radius:10px; border:3px solid #c0532a;
  background:linear-gradient(160deg,#c0532a 0%,#8d3f22 45%,#6b7444 100%); }
.bio-phone .bio-btn{ background:linear-gradient(90deg,#c0532a,#b1481f); color:#fff; height:38px; border-radius:9px; font-size:13px; margin-top:0; }
.bio-phone .bio-row{ background:#fdf9f1; border:1px solid rgba(43,29,22,.12); color:#2b1d16; }
.bio-phone .bio-row i{ background:rgba(192,83,42,.18); }
.bio-phone .bio-socials i{ border:1px solid rgba(43,29,22,.14); background:#fdf9f1; }
