:root {
  --ink: #121418;
  --paper: #f4f1e9;
  --cream: #e9e3d6;
  --acid: #d8ff45;
  --cyan: #5fd7e6;
  --coral: #ff6e5d;
  --muted: #666b73;
  --line: #d6d0c5;
  --panel: #1a1d23;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic",
    "Meiryo", sans-serif;
  --font-display: "Zen Kaku Gothic New", "Noto Sans JP",
    "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body), sans-serif;
}

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

button,
summary {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  padding: 12px clamp(20px, 4vw, 68px);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(15px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display), sans-serif;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.logo-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 7px;
  background: var(--ink);
  color: var(--acid);
  font-size: 20px;
  transform: rotate(-3deg);
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
  font-weight: 700;
}

.site-header nav > a:not(.button):hover {
  color: #596800;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: white;
  font-weight: 800;
  box-shadow: 4px 4px 0 var(--acid);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--acid);
}

.site-header .button {
  min-height: 40px;
  padding: 0 16px;
  box-shadow: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(30px, 5vw, 90px);
  overflow: hidden;
  padding: 88px clamp(24px, 6vw, 100px) 105px;
}

.hero::before {
  position: absolute;
  top: 0;
  left: 46%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, var(--line), transparent);
  content: "";
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: #ffffff80;
  color: #4b5058;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #66b71c;
  box-shadow: 0 0 0 4px #71c62622;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(47px, 5.4vw, 82px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 1.12;
}

.hero h1 span {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.hero h1 span::after {
  position: absolute;
  right: -4px;
  bottom: 3px;
  left: -4px;
  z-index: -1;
  height: 20%;
  background: var(--acid);
  content: "";
  transform: rotate(-1deg);
}

.hero-lead {
  margin: 30px 0 0;
  color: #565b63;
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 500;
  line-height: 2;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.text-link {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  margin-left: 7px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 28px 0 0;
  padding: 0;
  color: #6b7078;
  font-size: 12px;
  font-weight: 700;
  list-style: none;
}

.trust-list li::before {
  margin-right: 7px;
  color: #679400;
  content: "✓";
}

.product-stage {
  position: relative;
  z-index: 1;
  min-width: 0;
  perspective: 1300px;
}

.app-screenshot {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid #000;
  border-radius: 14px;
  background: #111318;
  box-shadow: 30px 38px 70px #11182732, 11px 12px 0 #111318;
  transform: rotateY(-4deg) rotateZ(1deg);
}

.app-screenshot img {
  display: block;
  width: 100%;
  height: auto;
}

.app-window {
  position: relative;
  overflow: hidden;
  border: 1px solid #000;
  border-radius: 14px;
  background: #111318;
  color: #edf1f7;
  box-shadow: 30px 38px 70px #11182732, 11px 12px 0 #111318;
  transform: rotateY(-4deg) rotateZ(1deg);
}

.app-top {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border-bottom: 1px solid #303541;
  background: #1c2027;
  font-size: 11px;
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #656c78;
}

.window-dots i:first-child {
  background: var(--coral);
}

.window-dots i:nth-child(2) {
  background: #ffc658;
}

.window-dots i:nth-child(3) {
  background: #69ce78;
}

.chrome-pill {
  margin-left: auto;
  padding: 3px 7px;
  border-radius: 99px;
  background: #2b3039;
  color: #bfc6d2;
}

.app-tools,
.app-context {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-bottom: 1px solid #303541;
  background: #1a1d24;
  font-size: 9px;
  white-space: nowrap;
}

.app-tools > span {
  padding: 6px 8px;
  border: 1px solid #303541;
  border-radius: 5px;
  background: #252a34;
}

.app-tools .tool-spacer {
  flex: 1;
  border: 0;
  background: transparent;
}

.app-tools .danger-chip {
  color: #ff9e9e;
}

.app-tools .save-chip {
  background: #2b7650;
}

.app-context {
  justify-content: space-between;
  color: #aeb6c5;
  background: #15181e;
}

.range-fake {
  display: flex;
  align-items: center;
  gap: 5px;
}

.range-fake i {
  position: relative;
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 5px;
  background: #444b58;
}

.range-fake i::after {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  content: "";
  transform: translate(-50%, -50%);
}

.canvas-area {
  display: grid;
  min-height: 380px;
  place-items: center;
  padding: 26px;
  background-color: #0c0e12;
  background-image: linear-gradient(45deg, #151820 25%, transparent 25%),
    linear-gradient(-45deg, #151820 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, #151820 75%),
    linear-gradient(-45deg, transparent 75%, #151820 75%);
  background-position: 0 0, 0 10px, 10px -10px, -10px 0;
  background-size: 20px 20px;
}

.art-card {
  position: relative;
  width: 72%;
  aspect-ratio: 1.28;
  overflow: hidden;
  border-radius: 2px;
  background: linear-gradient(135deg, #f8dcd0, #8bd7e3 58%, #536aa2);
  box-shadow: 0 8px 30px #0008;
}

.art-glow {
  position: absolute;
  top: -25%;
  left: -10%;
  width: 75%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #fff9c7;
  filter: blur(16px);
  opacity: 0.8;
}

.portrait {
  position: absolute;
  right: 9%;
  bottom: -10%;
  width: 56%;
  height: 102%;
}

.hair {
  position: absolute;
  inset: 5% 2% 9%;
  border-radius: 48% 48% 28% 32%;
  background: linear-gradient(145deg, #1b2445, #6a66a6 62%, #22294d);
  transform: rotate(5deg);
}

.face {
  position: absolute;
  top: 20%;
  left: 24%;
  width: 58%;
  height: 51%;
  border-radius: 46% 48% 52% 44%;
  background: #f4c7ad;
  transform: rotate(5deg);
}

.eye {
  position: absolute;
  top: 43%;
  width: 16%;
  height: 7%;
  border-radius: 50%;
  background: #202845;
}

.eye.left {
  left: 19%;
}

.eye.right {
  right: 17%;
}

.speech {
  position: absolute;
  top: 16%;
  left: 7%;
  width: 38%;
  padding: 14px 16px;
  border: 2px solid #20232a;
  border-radius: 50%;
  background: white;
  color: #24262b;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.speech::after {
  position: absolute;
  right: 3px;
  bottom: -10px;
  width: 18px;
  height: 18px;
  border-right: 2px solid #20232a;
  background: white;
  content: "";
  transform: skew(-26deg) rotate(22deg);
}

.selection {
  position: absolute;
  right: 18%;
  bottom: 10%;
  width: 30%;
  height: 17%;
  border: 1px solid var(--cyan);
  background: #5fd7e626;
  transform: rotate(-8deg);
}

.selection > i {
  position: absolute;
  width: 6px;
  height: 6px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  background: white;
}

.selection > i:nth-child(1) {
  top: -3px;
  left: -3px;
}

.selection > i:nth-child(2) {
  top: -3px;
  right: -3px;
}

.selection > i:nth-child(3) {
  right: -3px;
  bottom: -3px;
}

.selection > i:nth-child(4) {
  bottom: -3px;
  left: -3px;
}

.mosaic-blocks {
  position: absolute;
  inset: 7px;
  background: repeating-linear-gradient(
      90deg,
      #28314f 0 8px,
      #bd8c85 8px 16px
    ),
    repeating-linear-gradient(#28314f 0 8px, #bd8c85 8px 16px);
  background-blend-mode: difference;
  image-rendering: pixelated;
  opacity: 0.88;
}

.thumb-strip {
  display: flex;
  height: 78px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-top: 1px solid #303541;
  background: #1a1d24;
}

.thumb {
  width: 54px;
  height: 54px;
  padding: 3px;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #0e1015;
}

.thumb.active {
  border-color: #6ea8fe;
}

.thumb span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #e3c5b9, #70bac7 56%, #3a4976);
}

.floating-note {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border: 1px solid var(--ink);
  border-radius: 7px;
  background: white;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 5px 5px 0 var(--ink);
}

.floating-note span {
  color: #608d00;
}

.note-save {
  right: -16px;
  bottom: 70px;
  transform: rotate(-2deg);
}

.note-local {
  top: 78px;
  left: -26px;
  transform: rotate(2deg);
}

.note-local span {
  color: #168b9b;
}

.pixel {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--acid);
  box-shadow: 18px 0 var(--acid), 36px 0 var(--ink), 0 18px var(--ink);
}

.pixel-one {
  top: -28px;
  right: 8%;
}

.pixel-two {
  bottom: -28px;
  left: 12%;
  background: var(--cyan);
  box-shadow: 18px 0 var(--ink), 18px 18px var(--cyan), 36px 18px var(--ink);
}

.pain-section,
.features-section,
.flow-section,
.faq-section {
  padding: 110px clamp(24px, 7vw, 120px);
}

.pain-section {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: white;
}

.section-kicker {
  margin: 0 0 14px;
  color: #738500;
  font-family: var(--font-display), sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
}

.pain-section .section-kicker,
.privacy-section .section-kicker,
.final-cta .section-kicker {
  color: var(--acid);
}

.pain-section > h2,
.features-section h2,
.flow-section h2,
.faq-section h2 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.3;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 65px;
  border: 1px solid #40444d;
  background: #40444d;
}

.pain-grid article {
  min-height: 230px;
  padding: 30px;
  background: #171a1f;
}

.pain-grid article > span {
  color: var(--acid);
  font-family: var(--font-display), sans-serif;
  font-size: 11px;
  font-weight: 900;
}

.pain-grid h3 {
  margin: 52px 0 13px;
  font-size: 18px;
}

.pain-grid p {
  margin: 0;
  color: #aeb3bd;
  font-size: 13px;
  line-height: 1.8;
}

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

.section-heading > p {
  max-width: 520px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 60px;
}

.feature-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  background: #faf8f3;
  transition: transform 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  z-index: 1;
  border-color: var(--ink);
  transform: translateY(-4px);
}

.feature-card:nth-child(2),
.feature-card:nth-child(5) {
  background: #edf6f4;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--acid);
  font-family: var(--font-display), sans-serif;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 3px 3px 0 var(--ink);
}

.feature-card h3 {
  margin: 58px 0 12px;
  font-size: 19px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.mode-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 8vw, 140px);
  align-items: center;
  padding: 110px clamp(24px, 9vw, 150px);
  background: #e6e0d4;
}

.mode-copy h2,
.environment-section h2 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1.25;
}

.mode-copy > p:not(.section-kicker) {
  max-width: 600px;
  margin: 25px 0 0;
  color: var(--muted);
  line-height: 1.9;
}

.mode-tabs {
  display: grid;
  gap: 10px;
  margin-top: 40px;
}

.mode-tabs article {
  display: flex;
  gap: 17px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f4ec;
}

.mode-tabs article > span {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 6px;
  background: var(--ink);
  color: var(--acid);
  font-weight: 900;
}

.mode-tabs h3,
.mode-tabs p {
  margin: 0;
}

.mode-tabs h3 {
  font-size: 14px;
}

.mode-tabs p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.tool-panel {
  border: 1px solid var(--ink);
  border-radius: 10px;
  background: var(--panel);
  color: white;
  box-shadow: 12px 12px 0 var(--acid);
}

.tool-panel-head,
.tool-row {
  display: grid;
  grid-template-columns: 54px 1fr 30px;
  align-items: center;
  padding: 13px 18px;
  border-bottom: 1px solid #343943;
}

.tool-panel-head {
  display: flex;
  justify-content: space-between;
  color: #98a0ae;
  font-size: 11px;
}

.tool-panel-head i {
  color: var(--acid);
  font-style: normal;
}

.tool-row:last-child {
  border-bottom: 0;
}

.tool-row > span {
  color: #747c89;
  font-family: monospace;
  font-size: 10px;
}

.tool-row strong {
  font-size: 13px;
}

.tool-row i {
  color: var(--acid);
  font-style: normal;
  text-align: right;
}

.compact-heading {
  align-items: center;
}

.flow-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
}

.flow-list li {
  position: relative;
}

.flow-list li > span {
  position: absolute;
  top: -14px;
  left: -10px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
  font-weight: 900;
}

.flow-visual {
  display: grid;
  min-height: 190px;
  place-items: center;
  border: 1px solid var(--line);
  background: #e9e4d9;
}

.flow-visual i {
  font-size: 46px;
  font-style: normal;
}

.flow-visual b {
  margin-top: -42px;
  font-size: 12px;
}

.edit-visual {
  position: relative;
  background: #191c22;
  color: white;
}

.edit-visual i {
  width: 90px;
  height: 65px;
  border: 2px solid var(--cyan);
  background: repeating-linear-gradient(
    45deg,
    #4f6f78 0 10px,
    #d7a192 10px 20px
  );
  transform: rotate(-7deg);
}

.next-visual {
  background: var(--acid);
}

.next-visual i {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: white;
  font-size: 30px;
}

.flow-list h3 {
  margin: 25px 0 8px;
  font-size: 18px;
}

.flow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.privacy-section {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(360px, 0.8fr);
  align-items: center;
  gap: 50px;
  padding: 80px clamp(24px, 7vw, 120px);
  background: var(--ink);
  color: white;
}

.privacy-badge {
  display: grid;
  width: 120px;
  height: 120px;
  place-items: center;
  border: 2px solid var(--acid);
  border-radius: 50%;
  color: var(--acid);
  font-family: var(--font-display), sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  transform: rotate(-8deg);
}

.privacy-section h2 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(30px, 3.2vw, 48px);
  letter-spacing: -0.05em;
}

.privacy-section div > p:last-child {
  max-width: 650px;
  margin: 17px 0 0;
  color: #b5bbc5;
  font-size: 13px;
  line-height: 1.8;
}

.privacy-route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 22px;
  border: 1px solid #3b404a;
  border-radius: 8px;
  background: #191c22;
  font-size: 11px;
}

.privacy-route strong {
  padding: 9px;
  border-radius: 4px;
  background: var(--acid);
  color: var(--ink);
}

.privacy-route i {
  color: #7e8795;
  font-style: normal;
}

.environment-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  padding: 110px clamp(24px, 8vw, 140px);
  border-bottom: 1px solid var(--line);
}

.environment-section > div > p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.9;
}

.environment-section strong {
  color: var(--ink);
}

.environment-section dl {
  margin: 0;
  border-top: 1px solid var(--ink);
}

.environment-section dl > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 25px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
}

.environment-section dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.environment-section dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.environment-note {
  grid-column: 2;
  margin: -45px 0 0;
  color: #7b6958;
  font-size: 11px;
  line-height: 1.8;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  column-gap: 90px;
}

.faq-section > .section-kicker,
.faq-section > h2 {
  grid-column: 1;
}

.faq-section h2 {
  font-size: clamp(34px, 3.7vw, 52px);
}

.faq-list {
  grid-row: 1 / span 2;
  grid-column: 2;
  border-top: 1px solid var(--ink);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 23px 45px 23px 3px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 7px;
  font-size: 20px;
  content: "+";
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: -8px 0 22px;
  padding-right: 45px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 110px 24px;
  background: var(--acid);
  text-align: center;
}

.final-cta .section-kicker {
  color: #566400;
}

.final-cta h2 {
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: clamp(42px, 5.4vw, 76px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.18;
}

.final-cta > p:not(.section-kicker) {
  margin: 25px 0 32px;
  font-weight: 600;
}

.final-cta .button {
  min-width: 300px;
  background: var(--ink);
  box-shadow: 6px 6px 0 white;
}

.final-cta small {
  display: block;
  margin-top: 22px;
  color: #5e670e;
}

.cta-pixels i {
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  background: var(--ink);
}

.cta-pixels i:nth-child(1) {
  top: 12%;
  left: 8%;
}

.cta-pixels i:nth-child(2) {
  top: calc(12% + 24px);
  left: calc(8% + 24px);
}

.cta-pixels i:nth-child(3) {
  right: 9%;
  bottom: 13%;
}

.cta-pixels i:nth-child(4) {
  right: calc(9% + 24px);
  bottom: calc(13% + 24px);
}

.cta-pixels i:nth-child(5) {
  right: calc(9% + 48px);
  bottom: 13%;
  background: white;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 25px;
  padding: 28px clamp(24px, 5vw, 80px);
  background: var(--ink);
  color: white;
  font-size: 11px;
}

.site-footer .logo {
  font-size: 15px;
}

.site-footer .logo-mark {
  width: 32px;
  height: 32px;
  font-size: 17px;
}

.site-footer p {
  color: #9299a5;
  text-align: center;
}

.site-footer > span {
  color: #737b88;
  text-align: right;
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .hero::before {
    display: none;
  }

  .hero-copy {
    max-width: 820px;
  }

  .product-stage {
    width: min(820px, 94%);
    margin: 25px auto 0;
  }

  .privacy-section {
    grid-template-columns: 110px 1fr;
  }

  .privacy-route {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .site-header {
    min-height: 62px;
  }

  .site-header nav > a:not(.button) {
    display: none;
  }

  .site-header .button {
    min-height: 36px;
    font-size: 11px;
  }

  .hero {
    padding: 58px 20px 85px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 65px);
  }

  .hero-lead br {
    display: none;
  }

  .pain-grid,
  .feature-grid,
  .flow-list {
    grid-template-columns: 1fr;
  }

  .pain-grid article {
    min-height: 180px;
  }

  .pain-grid h3 {
    margin-top: 28px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
  }

  .mode-section,
  .environment-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .environment-note {
    grid-column: 1;
    margin: -40px 0 0;
  }

  .faq-section > .section-kicker,
  .faq-section > h2,
  .faq-list {
    grid-column: 1;
    grid-row: auto;
  }

  .faq-list {
    margin-top: 35px;
  }

  .privacy-section {
    grid-template-columns: 1fr;
  }

  .privacy-badge {
    width: 94px;
    height: 94px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer p {
    margin: 0;
  }

  .site-footer > span {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 14px;
  }

  .site-header .logo span:last-child {
    display: none;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .text-link {
    align-self: center;
  }

  .app-tools .folder-chip,
  .app-tools > span:nth-child(3),
  .app-tools > span:nth-child(4),
  .app-tools > span:nth-child(5),
  .danger-chip {
    display: none;
  }

  .canvas-area {
    min-height: 270px;
    padding: 18px;
  }

  .art-card {
    width: 88%;
  }

  .note-local {
    left: -10px;
  }

  .note-save {
    right: -8px;
    bottom: 48px;
  }

  .pain-section,
  .features-section,
  .flow-section,
  .faq-section,
  .mode-section,
  .environment-section {
    padding: 80px 20px;
  }

  .privacy-section {
    padding: 70px 20px;
  }

  .privacy-route {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .privacy-route i {
    transform: rotate(90deg);
  }

  .environment-section dl > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .environment-note {
    margin-top: -20px;
  }

  .final-cta {
    padding: 90px 20px;
  }

  .final-cta .button {
    min-width: 0;
    width: 100%;
  }
}

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

  .button,
  .feature-card {
    transition: none;
  }
}
