:root {
  --paper: #f1f0ee;
  --paper-deep: #e7e5e2;
  --white: #ffffff;
  --ink: #1f1e1d;
  --muted: #6d6a66;
  --line: rgba(31, 30, 29, 0.16);
  --blue: #3267d5;
  --blue-dark: #244fa8;
  --green: #46ad63;
  --red: #d75145;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(28, 30, 35, 0.13);
  --font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

.heading-line {
  display: block;
}

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

button,
input {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(241, 240, 238, 0.93);
  box-shadow: 0 8px 30px rgba(31, 30, 29, 0.05);
  backdrop-filter: blur(16px);
}

.header-inner {
  width: min(1320px, calc(100% - 64px));
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto;
}

.header-logo {
  width: auto;
  flex: 0 0 auto;
}

.header-logo img {
  width: auto;
  height: 56px;
  max-height: none;
  object-fit: contain;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.global-nav > a:not(.nav-cta) {
  position: relative;
  padding: 8px 0;
}

.global-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease;
}

.global-nav > a:not(.nav-cta):hover::after,
.global-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 22px;
  color: #fff;
  background: var(--ink);
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--blue);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 76px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 13%;
  left: -4vw;
  width: 24vw;
  aspect-ratio: 1;
  border: 1px solid rgba(31, 30, 29, 0.08);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100% - 80px));
  display: grid;
  grid-template-columns: minmax(480px, 0.94fr) minmax(540px, 1.06fr);
  gap: clamp(42px, 4vw, 64px);
  align-items: center;
  margin: 0 auto;
}

.eyebrow,
.section-kicker {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

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

.eyebrow span {
  width: 30px;
  height: 1px;
  background: var(--ink);
}

.hero h1 {
  margin: 25px 0 26px;
  font-size: clamp(58px, 5.2vw, 76px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1.18;
}

.hero h1 .heading-line {
  white-space: nowrap;
}

.hero h1 em {
  position: relative;
  display: inline-block;
  color: var(--ink);
  font-style: normal;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  z-index: -1;
  height: 19%;
  background: rgba(70, 173, 99, 0.5);
}

.hero-lead {
  margin: 0;
  color: #4f4c49;
  font-size: clamp(16px, 1.25vw, 18px);
  font-weight: 600;
  line-height: 2;
}

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

.button {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 0;
  border-radius: 999px;
  padding: 0 30px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  color: #fff;
  background: var(--ink);
  box-shadow: 0 16px 30px rgba(31, 30, 29, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue);
  box-shadow: 0 18px 35px rgba(50, 103, 213, 0.25);
}

.button-light {
  color: var(--ink);
  background: #fff;
}

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

.hero-facts {
  display: flex;
  gap: 0;
  margin: 45px 0 0;
  padding: 0;
  list-style: none;
}

.hero-facts li {
  min-width: 124px;
  display: grid;
  gap: 0;
  padding: 0 22px;
  border-left: 1px solid var(--line);
}

.hero-facts li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-facts strong {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
}

.hero-facts span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 570px;
}

.map-grid {
  position: absolute;
  inset: 4% -12% 5% -2%;
  opacity: 0.45;
  background-image:
    linear-gradient(28deg, transparent 0 48%, rgba(31, 30, 29, 0.09) 49% 50%, transparent 51%),
    linear-gradient(96deg, transparent 0 48%, rgba(31, 30, 29, 0.07) 49% 50%, transparent 51%);
  background-size: 160px 130px, 110px 170px;
  transform: rotate(-4deg);
}

.desktop-device {
  position: absolute;
  top: 14%;
  right: 0;
  width: 93%;
  overflow: hidden;
  border: 10px solid #2a2b2f;
  border-radius: 24px 24px 16px 16px;
  background: #2a2b2f;
  box-shadow: 0 35px 90px rgba(26, 27, 31, 0.22);
  transform: perspective(1200px) rotateY(-6deg) rotateZ(1deg);
}

.device-topbar {
  height: 25px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  background: #2a2b2f;
}

.device-topbar i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #77797e;
}

.desktop-device img {
  width: 100%;
  background: #fff;
}

.phone-device {
  position: absolute;
  right: 6%;
  bottom: 2%;
  z-index: 3;
  width: 29%;
  overflow: hidden;
  border: 10px solid #1e2024;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 30px 60px rgba(21, 23, 28, 0.26);
  transform: rotate(2.5deg);
}

.phone-device::after,
.feature-phone-frame::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 32%;
  height: 4px;
  border-radius: 99px;
  background: #1e2024;
  transform: translateX(-50%);
}

.phone-speaker {
  position: absolute;
  top: 6px;
  left: 50%;
  z-index: 2;
  width: 34%;
  height: 13px;
  border-radius: 99px;
  background: #1e2024;
  transform: translateX(-50%);
}

.phone-device img {
  width: 100%;
}

.floating-status {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(31, 30, 29, 0.1);
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 28px rgba(31, 30, 29, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.floating-status span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.status-blue {
  top: 7%;
  left: -3%;
}

.status-blue span {
  background: var(--blue);
}

.status-red {
  right: 33%;
  bottom: 9%;
}

.status-red span {
  background: var(--red);
}

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
  transform: translateX(-50%) rotate(90deg);
  transform-origin: center;
}

.hero-scroll span {
  width: 42px;
  height: 1px;
  background: var(--muted);
}

.band {
  padding: 100px 0;
  color: #fff;
  background: var(--ink);
}

.section-inner {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.intro-grid {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 68px;
  align-items: start;
}

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

.band .section-kicker,
.section-dark .section-kicker,
.trial-panel .section-kicker {
  color: #8eb0f0;
}

.intro-grid h2,
.section-heading h2,
.contact-copy h2,
.trial-panel h2 {
  margin: 0;
  font-size: clamp(38px, 3.6vw, 52px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.42;
}

.intro-grid h2 {
  font-size: clamp(40px, 3.35vw, 48px);
  line-height: 1.48;
}

.intro-grid h2 .heading-line {
  white-space: nowrap;
}

.intro-grid p:last-child {
  max-width: 850px;
  margin: 28px 0 0;
  color: #c9c7c3;
  font-size: 17px;
  font-weight: 500;
  line-height: 2.1;
}

.section {
  padding: 130px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 65px;
}

.section-heading .section-kicker {
  margin-bottom: 18px;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

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

.problem-card {
  position: relative;
  min-height: 470px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px;
  background: rgba(255, 255, 255, 0.43);
}

.card-number {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.problem-card h3 {
  margin: 25px 0 12px;
  font-size: 22px;
  line-height: 1.55;
}

.problem-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.mini-visual {
  position: relative;
  width: 210px;
  height: 155px;
  margin: 42px auto 5px;
}

.map-question {
  border: 1px solid var(--ink);
  border-radius: 16px;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 42px 42px;
}

.map-question i {
  position: absolute;
  width: 38px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50% 50% 50% 0;
  color: #fff;
  background: var(--ink);
  font-size: 18px;
  font-style: normal;
  font-weight: 900;
  transform: rotate(-45deg);
}

.map-question i::first-letter {
  transform: rotate(45deg);
}

.map-question i:nth-child(1) { top: 18px; left: 25px; }
.map-question i:nth-child(2) { top: 49px; left: 95px; }
.map-question i:nth-child(3) { right: 25px; bottom: 13px; }

.list-question {
  border: 1px solid var(--ink);
  border-radius: 24px;
  padding: 18px;
}

.list-question i {
  position: relative;
  height: 34px;
  display: block;
  border-bottom: 1px solid var(--line);
}

.list-question i::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--ink);
}

.list-question i::after {
  content: "?";
  position: absolute;
  right: 10px;
  top: -4px;
  font-size: 25px;
  font-style: normal;
  font-weight: 900;
}

.team-question i {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--ink);
}

.team-question i::after {
  content: "";
  position: absolute;
  top: 28px;
  left: -8px;
  width: 50px;
  height: 28px;
  border-radius: 25px 25px 8px 8px;
  background: var(--ink);
}

.team-question i:nth-child(1) { top: 0; left: 88px; }
.team-question i:nth-child(2) { top: 55px; left: 12px; }
.team-question i:nth-child(3) { top: 55px; right: 12px; }
.team-question i:nth-child(4) { bottom: 5px; left: 88px; }

.team-question b {
  position: absolute;
  top: 54px;
  left: 87px;
  width: 38px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  font-size: 22px;
}

.solution-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.solution-line span {
  border-radius: 999px;
  padding: 5px 12px;
  color: #fff;
  background: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.solution-line strong {
  font-size: 20px;
}

.solution-line p {
  margin: 0;
  color: var(--muted);
}

.section-dark {
  color: #fff;
  background: #272625;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: end;
}

.split-heading > p:last-child {
  margin: 0 0 8px;
  color: #bdb9b4;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.benefit-card {
  min-height: 360px;
  padding: 38px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.benefit-card:first-child {
  border-left: 0;
}

.benefit-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-size: 25px;
  font-weight: 900;
}

.benefit-no {
  margin: 65px 0 12px;
  color: #8a8783;
  font-size: 11px;
  font-weight: 900;
}

.benefit-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
}

.benefit-card > p:last-child {
  margin: 0;
  color: #bbb7b2;
  font-size: 14px;
}

.features {
  background: #f8f7f5;
}

.feature-row {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  margin-top: 130px;
}

.feature-row:first-of-type {
  margin-top: 0;
}

.feature-reverse .feature-copy {
  order: 2;
}

.feature-reverse .feature-media {
  order: 1;
}

.feature-number {
  display: block;
  margin-bottom: 20px;
  color: #b1aea9;
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
}

.feature-role {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.feature-copy h3 {
  margin: 0 0 22px;
  font-size: clamp(30px, 2.8vw, 42px);
  letter-spacing: -0.04em;
  line-height: 1.4;
}

.feature-copy > p:not(.feature-role) {
  margin: 0;
  color: var(--muted);
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 12px 12px 12px 26px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  color: var(--green);
  font-weight: 900;
}

.feature-media {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 30px;
  background: var(--paper-deep);
}

.feature-media::before {
  content: "";
  position: absolute;
  inset: 10%;
  opacity: 0.4;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
}

.feature-phone-frame {
  position: relative;
  z-index: 1;
  width: 43%;
  overflow: hidden;
  border: 11px solid #222326;
  border-radius: 38px;
  background: #fff;
  box-shadow: var(--shadow);
}

.feature-phone-frame img {
  width: 100%;
}

.feature-caption {
  position: absolute;
  right: 8%;
  bottom: 8%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  padding: 11px 17px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(31, 30, 29, 0.12);
  font-size: 11px;
  font-weight: 900;
}

.feature-caption span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.desktop-feature img {
  position: relative;
  z-index: 1;
  width: 90%;
  border: 9px solid #292b30;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.map-feature img {
  position: relative;
  z-index: 1;
  width: 84%;
  border: 8px solid #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.status-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.status-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}

.status-legend i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.pin-blue { background: var(--blue); }
.pin-red { background: var(--red); }
.pin-gray { background: #888; }

.gallery {
  background: var(--paper-deep);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.gallery-grid figure {
  position: relative;
  min-height: 380px;
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 40px;
  background: #fff;
}

.gallery-grid img {
  width: 100%;
  border: 1px solid #e4e5e8;
  box-shadow: 0 15px 40px rgba(30, 32, 36, 0.1);
}

.gallery-grid figcaption {
  position: absolute;
  top: 20px;
  left: 22px;
  border-radius: 999px;
  padding: 5px 11px;
  color: #fff;
  background: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.flow {
  background: #fff;
}

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

.flow-list li {
  position: relative;
  min-height: 350px;
  padding: 35px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.flow-list li:last-child {
  border-right: 1px solid var(--line);
}

.flow-list li:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 105px;
  right: -17px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-weight: 900;
}

.flow-number {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.flow-icon {
  position: relative;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  margin: 42px auto 35px;
  border-radius: 50%;
  background: var(--paper);
}

.person-icon i,
.poster-icon i,
.phone-icon i {
  position: relative;
  display: block;
}

.person-icon i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ink);
}

.person-icon i::after {
  content: "";
  position: absolute;
  top: 24px;
  left: -10px;
  width: 46px;
  height: 26px;
  border-radius: 24px 24px 8px 8px;
  background: var(--ink);
}

.poster-icon i {
  width: 41px;
  height: 52px;
  border: 3px solid var(--ink);
  border-radius: 5px;
}

.poster-icon i::before,
.poster-icon i::after {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  height: 3px;
  background: var(--ink);
}

.poster-icon i::before { top: 12px; }
.poster-icon i::after { top: 24px; }

.phone-icon i {
  width: 34px;
  height: 57px;
  border: 3px solid var(--ink);
  border-radius: 8px;
}

.phone-icon i::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
  transform: translateX(-50%);
}

.check-icon i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 25px;
  font-style: normal;
  font-weight: 900;
}

.flow-list h3 {
  margin: 0 0 10px;
  font-size: 18px;
  text-align: center;
}

.flow-list p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.trial-banner {
  padding-top: 0;
  background: #fff;
}

.trial-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 50px;
  align-items: center;
  border-radius: 32px;
  padding: 75px 80px;
  color: #fff;
  background: var(--ink);
}

.trial-panel > div:first-child {
  max-width: 700px;
}

.trial-panel h2 {
  margin-top: 12px;
}

.trial-panel > div:first-child > p:last-child {
  margin: 25px 0 0;
  color: #c8c5c0;
}

.trial-seal {
  width: 180px;
  height: 180px;
  display: grid;
  place-items: center;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  line-height: 1;
  transform: rotate(4deg);
}

.trial-seal span,
.trial-seal b {
  font-size: 11px;
  letter-spacing: 0.2em;
}

.trial-seal strong {
  margin: 6px 0;
  font-size: 78px;
  letter-spacing: -0.09em;
}

.trial-panel .button {
  grid-column: 1 / -1;
  justify-self: start;
}

.faq {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 90px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 28px 52px 28px 0;
  font-size: 17px;
  font-weight: 900;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::before,
.faq-list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 18px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.2s ease;
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  margin: -5px 0 0;
  padding: 0 50px 28px 0;
  color: var(--muted);
}

.contact {
  color: #fff;
  background: #252423;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 100px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 130px;
}

.contact-copy h2 {
  margin: 20px 0 25px;
  font-size: clamp(38px, 3.2vw, 46px);
}

.contact-copy h2 .heading-line {
  white-space: nowrap;
}

.contact-copy > p:not(.section-kicker) {
  max-width: 520px;
  color: #bdb9b4;
}

.contact-note {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 28px;
}

.contact-note img {
  width: auto;
  height: 56px;
  object-fit: contain;
}

.contact-note strong,
.contact-note span {
  display: block;
}

.contact-note span {
  color: #aaa6a1;
  font-size: 12px;
}

.form-card {
  min-height: 650px;
  border-radius: 28px;
  padding: clamp(32px, 5vw, 62px);
  color: var(--ink);
  background: #fff;
}

.form-card form {
  display: grid;
  gap: 10px;
}

.form-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.form-heading > span {
  font-size: 19px;
  font-weight: 900;
}

.form-heading small {
  color: var(--muted);
  font-size: 11px;
}

.form-heading small i {
  color: var(--red);
  font-style: normal;
}

.form-card label:not(.consent) {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 900;
}

.form-card label > span:not(.consent span) {
  margin-left: 5px;
  color: var(--red);
  font-size: 10px;
}

.form-card input:not([type="checkbox"]):not(.honeypot) {
  width: 100%;
  height: 58px;
  border: 1px solid #d9d8d5;
  border-radius: 12px;
  padding: 0 16px;
  color: var(--ink);
  background: #faf9f8;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-card input:not([type="checkbox"]):focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(50, 103, 213, 0.12);
}

.form-card input::placeholder {
  color: #aaa7a2;
}

.consent {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
  cursor: pointer;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.consent span {
  margin: 0;
  color: inherit;
  font-size: inherit;
}

.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.form-status {
  min-height: 24px;
  margin: 2px 0 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
}

.form-submit {
  width: 100%;
  min-height: 66px;
  justify-content: space-between;
  margin-top: 2px;
}

.form-submit:disabled {
  opacity: 0.62;
  cursor: wait;
  transform: none;
}

.form-submit b {
  font-size: 18px;
}

.form-footnote {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.form-success {
  min-height: 520px;
  place-items: center;
  align-content: center;
  text-align: center;
}

.form-success:not([hidden]) {
  display: grid;
}

.success-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 35px;
  font-weight: 900;
}

.form-success h3 {
  margin: 28px 0 10px;
  font-size: 25px;
}

.form-success p {
  max-width: 400px;
  margin: 0;
  color: var(--muted);
}

.form-success a {
  margin-top: 28px;
  border-bottom: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.site-footer {
  padding: 55px 0;
  color: #fff;
  background: #181716;
}

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

.footer-logo {
  width: 160px;
  filter: invert(1) grayscale(1);
}

.footer-contact {
  display: grid;
  text-align: right;
}

.footer-contact span {
  color: #87837f;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.footer-contact a {
  font-size: 15px;
  font-weight: 800;
}

.footer-inner > p {
  grid-column: 1 / -1;
  margin: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 22px;
  color: #6d6965;
  font-size: 10px;
}

.mobile-fixed-cta {
  display: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@media (max-width: 1100px) {
  .header-inner,
  .hero-grid,
  .section-inner,
  .footer-inner {
    width: min(100% - 48px, 960px);
  }

  .global-nav {
    gap: 20px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 30px;
  }

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

  .hero-visual {
    width: min(850px, 100%);
    min-height: 540px;
    margin: -20px auto 0;
  }

  .problem-card {
    padding: 26px;
  }

  .feature-row {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
  }

  .feature-media {
    min-height: 430px;
  }

  .contact-grid {
    gap: 55px;
  }
}

@media (max-width: 820px) {
  body {
    padding-bottom: 64px;
  }

  .header-inner,
  .hero-grid,
  .section-inner,
  .footer-inner {
    width: min(100% - 36px, 720px);
  }

  .header-inner {
    min-height: 72px;
  }

  .header-logo {
    width: auto;
  }

  .header-logo img {
    height: 50px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 5px;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
  }

  .menu-button span {
    width: 19px;
    height: 1px;
    display: block;
    background: #fff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .global-nav {
    position: fixed;
    inset: 72px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 40px 24px;
    color: #fff;
    background: rgba(31, 30, 29, 0.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  }

  .global-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .global-nav > a:not(.nav-cta) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding: 22px 4px;
    font-size: 17px;
  }

  .nav-cta {
    margin-top: 30px;
    color: var(--ink);
    background: #fff;
  }

  .hero {
    padding: 110px 0 75px;
  }

  .hero h1 {
    font-size: clamp(48px, 9.5vw, 68px);
  }

  .hero-visual {
    min-height: 520px;
  }

  .intro-grid,
  .split-heading,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .section {
    padding: 95px 0;
  }

  .problem-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 430px;
  }

  .solution-line {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .benefit-card,
  .benefit-card:first-child {
    min-height: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .benefit-card:first-child {
    border-top: 0;
  }

  .benefit-no {
    margin-top: 35px;
  }

  .feature-row,
  .feature-reverse {
    grid-template-columns: 1fr;
    margin-top: 100px;
  }

  .feature-reverse .feature-copy,
  .feature-reverse .feature-media {
    order: initial;
  }

  .feature-copy {
    max-width: 650px;
  }

  .feature-media {
    min-height: 500px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .flow-list li:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .flow-list li:nth-child(n + 3) {
    border-top: 0;
  }

  .flow-list li:nth-child(2)::after {
    display: none;
  }

  .trial-panel {
    grid-template-columns: 1fr;
    padding: 55px;
  }

  .trial-seal {
    width: 150px;
    height: 150px;
  }

  .contact-copy {
    position: static;
  }

  .mobile-fixed-cta {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 90;
    min-height: 50px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    background: var(--ink);
    box-shadow: 0 12px 30px rgba(31, 30, 29, 0.3);
    font-size: 13px;
    font-weight: 900;
  }
}

@media (max-width: 540px) {
  .header-inner,
  .hero-grid,
  .section-inner,
  .footer-inner {
    width: calc(100% - 32px);
  }

  .hero {
    padding-top: 100px;
  }

  .hero h1 {
    margin-top: 18px;
    font-size: clamp(39px, 12vw, 54px);
    line-height: 1.18;
  }

  .hero-lead br {
    display: none;
  }

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

  .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-facts li {
    min-width: 0;
    padding: 0 10px;
  }

  .hero-facts strong {
    font-size: 16px;
  }

  .hero-facts span {
    font-size: 9px;
    line-height: 1.5;
  }

  .hero-visual {
    min-height: 380px;
    margin-top: 10px;
  }

  .desktop-device {
    top: 11%;
    width: 98%;
    border-width: 6px;
    border-radius: 14px;
  }

  .device-topbar {
    height: 15px;
  }

  .phone-device {
    right: 3%;
    width: 34%;
    border-width: 6px;
    border-radius: 20px;
  }

  .phone-speaker {
    top: 3px;
    height: 7px;
  }

  .floating-status {
    padding: 6px 9px;
    font-size: 9px;
  }

  .status-blue { top: 3%; left: 0; }
  .status-red { right: 34%; bottom: 2%; }

  .hero-scroll {
    display: none;
  }

  .band {
    padding: 75px 0;
  }

  .intro-grid h2,
  .section-heading h2,
  .contact-copy h2,
  .trial-panel h2 {
    font-size: clamp(30px, 8.8vw, 40px);
    line-height: 1.46;
  }

  .intro-grid h2 .heading-line {
    white-space: normal;
  }

  .intro-grid p:last-child {
    font-size: 15px;
  }

  .section-heading {
    margin-bottom: 45px;
  }

  .problem-card {
    min-height: 410px;
  }

  .solution-line strong {
    font-size: 16px;
  }

  .feature-number {
    font-size: 50px;
  }

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

  .check-list {
    grid-template-columns: 1fr;
  }

  .feature-media {
    min-height: 410px;
    border-radius: 22px;
  }

  .feature-phone-frame {
    width: 57%;
    border-width: 8px;
    border-radius: 28px;
  }

  .feature-caption {
    right: 4%;
    bottom: 5%;
  }

  .desktop-feature img,
  .map-feature img {
    width: 94%;
    border-width: 5px;
  }

  .gallery-grid figure {
    min-height: 260px;
    padding: 35px 18px 18px;
  }

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

  .flow-list li,
  .flow-list li:nth-child(2),
  .flow-list li:nth-child(n + 3) {
    min-height: auto;
    display: grid;
    grid-template-columns: 70px 1fr;
    column-gap: 18px;
    align-items: center;
    border: 0;
    border-top: 1px solid var(--line);
    padding: 28px 0;
  }

  .flow-list li:last-child {
    border-bottom: 1px solid var(--line);
  }

  .flow-list li::after {
    display: none !important;
  }

  .flow-number {
    position: absolute;
    top: 17px;
    left: 0;
  }

  .flow-icon {
    grid-row: 1 / span 2;
    width: 64px;
    height: 64px;
    margin: 0;
  }

  .flow-list h3,
  .flow-list p {
    text-align: left;
  }

  .trial-panel {
    gap: 35px;
    border-radius: 22px;
    padding: 42px 26px;
  }

  .trial-seal {
    justify-self: center;
  }

  .faq-grid {
    gap: 15px;
  }

  .faq-list summary {
    font-size: 15px;
  }

  .form-card {
    border-radius: 22px;
    padding: 30px 20px;
  }

  .form-heading {
    align-items: start;
    flex-direction: column;
    gap: 4px;
  }

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

  .footer-contact {
    text-align: left;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
