@charset "UTF-8";
:root {
  --yellow: #ffe000;
  --ink: #1d1d1b;
  --paper: #f7f7f2;
  --white: #fff;
  --muted: #68685f;
  --line: #ddddd4;
  --font: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  --radius: 8px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.65;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(48px, 5.05vw, 76px);
  font-weight: 750;
}
h2 {
  font-size: clamp(34px, 3.4vw, 50px);
  font-weight: 700;
}
h3 {
  font-size: 25px;
  font-weight: 700;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #7a6600;
  outline-offset: 5px;
}
.container {
  width: min(1240px, calc(100% - 96px));
  margin: auto;
}
.section {
  padding: 106px 0;
}
.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  vertical-align: middle;
}
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.skip-link {
  position: fixed;
  top: 10px;
  left: 20px;
  background: var(--yellow);
  padding: 12px;
  z-index: 100;
  transform: translateY(-180%);
}
.skip-link:focus {
  transform: none;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 0.19em;
  font-weight: 750;
  line-height: 1.5;
  margin-bottom: 24px;
}
.muted {
  color: #707066;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 53px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 0 -4px #0002;
}
.button-dark {
  background: var(--ink);
  color: white;
}
.button-dark:hover {
  background: #373731;
}
.button-yellow {
  background: var(--yellow);
  color: var(--ink);
}
.button-yellow:hover {
  background: #efd200;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  font-weight: 650;
}
.text-link .icon,
.card-link .icon {
  transition: transform 0.2s;
}
.text-link:hover .icon,
.card-link:hover .icon {
  transform: translate(3px, -1px);
}
.topbar {
  background: var(--yellow);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
}
.topbar-inner > span,
.topbar a {
  display: flex;
  gap: 10px;
  align-items: center;
}
.topbar a {
  letter-spacing: 0;
  font-size: 11px;
}
.topbar .icon {
  width: 14px;
  height: 14px;
}
.top-phone {
  margin-left: 6px;
}
.status-dot {
  height: 5px;
  width: 5px;
  display: inline-block;
  background: var(--ink);
  border-radius: 50%;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #f7f7f2f5;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 99px;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand img {
  border-radius: 9px;
  width: 49px;
  height: 49px;
}
.brand > span {
  font-size: 13px;
  font-weight: 550;
  letter-spacing: 0.045em;
  line-height: 1.22;
}
.brand strong {
  display: block;
  font-size: 19px;
  letter-spacing: 0.005em;
  font-weight: 850;
}
.brand small {
  display: block;
  font-size: 7px;
  letter-spacing: 0.12em;
  margin-top: 5px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
  font-weight: 600;
}
.main-nav > a:not(.button) {
  position: relative;
  padding: 12px 0;
}
.main-nav > a:not(.button):after {
  content: "";
  position: absolute;
  bottom: 5px;
  height: 2px;
  background: var(--ink);
  left: 0;
  right: 100%;
  transition: right 0.2s;
}
.main-nav > a:hover:after,
.main-nav > a[aria-current]:after {
  right: 0;
}
.nav-cta {
  font-size: 11px;
  min-height: 45px;
  padding: 12px 17px;
  gap: 19px;
}
.nav-cta .icon {
  width: 17px;
  height: 17px;
}
.menu-toggle {
  display: none;
}
.hero {
  padding: 64px 0 68px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-copy {
  padding: 15px 0 8px;
}
.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 9px;
  margin-bottom: 26px;
}
.small-line {
  width: 26px;
  height: 2px;
  background: var(--ink);
}
.highlight {
  position: relative;
  display: inline-block;
  z-index: 0;
  white-space: nowrap;
}
.highlight svg {
  position: absolute;
  left: -1%;
  bottom: -7px;
  width: 104%;
  height: 17px;
  z-index: -1;
  fill: none;
  stroke: var(--yellow);
  stroke-width: 10;
  stroke-linecap: round;
}
.hero-description {
  font-size: 15px;
  line-height: 1.9;
  color: #6b6b63;
  margin-top: 30px;
  max-width: 425px;
}
.hero-actions {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: 30px;
}
.hero-actions .text-link {
  font-size: 12px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  color: #68685f;
  margin-top: 35px;
}
.hero-note strong {
  font-weight: 600;
  color: #4e4e47;
}
.round-check {
  display: grid;
  place-items: center;
  border: 1px solid #d0d0c6;
  border-radius: 50%;
  width: 24px;
  height: 24px;
}
.round-check .icon {
  width: 12px;
  height: 12px;
  color: var(--ink);
}
.hero-visual {
  position: relative;
  min-height: 512px;
  padding-bottom: 32px;
}
.hero-image-wrap {
  position: relative;
  height: 466px;
  border-radius: 4px 4px 72px 4px;
  overflow: hidden;
  background: #b3ad9a;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}
.image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 62%, #181811a8);
}
.photo-caption {
  position: absolute;
  bottom: 57px;
  left: 26px;
  right: 28px;
  display: flex;
  gap: 7px;
  align-items: center;
  color: white;
  letter-spacing: 0.12em;
  font-size: 8px;
  font-weight: 600;
}
.photo-caption .icon {
  height: 13px;
  width: 13px;
}
.photo-caption > span {
  margin-left: auto;
  font-size: 7px;
}
.hero-label {
  position: absolute;
  top: 28px;
  left: -22px;
  background: var(--yellow);
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: 0 8px 35px #0001;
  transform: rotate(-3deg);
  font-size: 8px;
  font-weight: 650;
  line-height: 1.6;
  letter-spacing: 0.08em;
}
.hero-label > .icon:first-child {
  width: 29px;
  height: 29px;
}
.hero-label strong {
  font-size: 15px;
  letter-spacing: -0.015em;
}
.hero-label .label-arrow {
  margin-left: 8px;
  width: 19px;
  height: 19px;
}
.floating-note {
  position: absolute;
  bottom: 5px;
  left: -27px;
  background: white;
  box-shadow: 0 12px 34px #29291912;
  border: 1px solid #e7e7e1;
  border-radius: 6px;
  padding: 18px 23px 18px 16px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 13px;
  font-weight: 650;
}
.note-symbol {
  width: 39px;
  height: 39px;
  background: var(--ink);
  color: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 29px;
  border-radius: 4px;
  position: relative;
}
.note-symbol > span {
  position: absolute;
  font-size: 14px;
  right: -5px;
  top: -7px;
  background: var(--yellow);
  color: var(--ink);
  line-height: 16px;
  width: 16px;
  text-align: center;
}
.floating-note small {
  display: block;
  font-weight: 450;
  font-size: 9px;
  color: #68685f;
  margin-top: 3px;
}
.hero-index {
  position: absolute;
  bottom: 5px;
  right: 7px;
  writing-mode: vertical-rl;
  font-size: 7px;
  letter-spacing: 0.15em;
  transform: rotate(180deg);
  height: 135px;
}
.values-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.values-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  min-height: 81px;
  align-items: center;
}
.values-inner > span {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 600;
}
.values-inner > span .icon {
  width: 21px;
  height: 21px;
}
.values-inner > span + span {
  border-left: 1px solid var(--line);
  padding-left: 60px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 42px;
}
.section-heading .eyebrow {
  margin-bottom: 17px;
}
.section-heading > p {
  max-width: 305px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  padding-bottom: 5px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 29px 26px 0;
  border-radius: 6px;
  transition:
    transform 0.2s,
    border-color 0.2s;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-5px);
  border-color: #969688;
}
.service-featured {
  background: var(--yellow);
  border-color: var(--yellow);
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  gap: 10px;
}
.service-icon {
  height: 43px;
  width: 43px;
  display: grid;
  place-items: center;
  background: #f5f5ef;
  border: 1px solid #eaeae3;
  border-radius: 5px;
}
.service-featured .service-icon {
  background: var(--ink);
  color: var(--yellow);
  border-color: var(--ink);
}
.service-top .index {
  font-size: 8px;
  letter-spacing: 0.12em;
  color: #68685f;
}
.service-featured .index {
  color: #605500;
}
.service-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
}
.service-card > p {
  font-size: 12px;
  line-height: 1.9;
  color: #707066;
  min-height: 69px;
}
.service-featured > p {
  color: #5e5400;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 29px;
  display: grid;
  gap: 11px;
  font-size: 10px;
  color: #626259;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.check-list li:before {
  content: "✓";
  font-weight: 700;
  font-size: 11px;
  color: var(--ink);
}
.service-featured .check-list {
  color: #4e4500;
}
.card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-top: 1px solid #e4e4db;
  padding: 20px 0;
  font-size: 11px;
  font-weight: 700;
  margin-top: auto;
}
.service-featured .card-link {
  border-color: #d2ba00;
}
.card-link .icon {
  height: 19px;
  width: 19px;
}
.method-section {
  background: #eeeee6;
  border-top: 1px solid #e5e5dc;
  border-bottom: 1px solid #e5e5dc;
}
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center;
}
.method-intro > p:not(.eyebrow) {
  font-size: 13px;
  color: #68685f;
  line-height: 1.9;
  max-width: 360px;
  margin-top: 26px;
}
.method-intro > .text-link {
  margin-top: 25px;
}
.method-road {
  height: 120px;
  max-width: 370px;
  position: relative;
  margin-top: 15px;
}
.method-road > svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke-linecap: round;
}
.road-base {
  stroke: #d4d4c7;
  stroke-width: 24px;
}
.road-dashes {
  stroke: #f7f7f2;
  stroke-width: 2;
  stroke-dasharray: 6 9;
}
.road-start {
  position: absolute;
  bottom: 19px;
  left: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ink);
  border: 4px solid var(--yellow);
}
.road-end {
  position: absolute;
  right: -7px;
  top: 12px;
  width: 37px;
  height: 37px;
  background: var(--yellow);
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 4px solid #eeeee6;
}
.road-end .icon {
  width: 17px;
  height: 17px;
}
.step {
  display: flex;
  gap: 25px;
  padding: 30px 0;
  border-top: 1px solid #d3d3c8;
}
.step:last-child {
  padding-bottom: 0;
}
.step-number {
  font-size: 12px;
  width: 33px;
  height: 33px;
  border: 1px solid #c5c5b7;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.step-tag {
  font-size: 8px;
  letter-spacing: 0.15em;
  color: #68685f;
  font-weight: 650;
}
.step h3 {
  font-size: 24px;
  margin-top: 9px;
  margin-bottom: 13px;
}
.step p {
  font-size: 12px;
  line-height: 1.9;
  color: #68685f;
  max-width: 355px;
}
.app-section {
  padding: 100px 0 95px;
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
}
.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.app-copy {
  max-width: 455px;
}
.app-copy > .eyebrow {
  color: var(--yellow);
  font-size: 9px;
}
.app-copy h2 {
  font-size: 66px;
  line-height: 1.03;
}
.app-copy > p:not(.eyebrow) {
  font-size: 13px;
  line-height: 1.9;
  color: #b6b6aa;
  margin-top: 25px;
  max-width: 355px;
}
.app-facts {
  display: flex;
  gap: 34px;
  margin: 30px 0 24px;
}
.app-facts > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.app-facts > div + div {
  border-left: 1px solid #505046;
  padding-left: 35px;
}
.app-facts strong {
  font-size: 39px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--yellow);
  font-weight: 600;
}
.app-facts span {
  font-size: 10px;
  color: #b5b5a8;
}
.app-features {
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0 0 30px;
  font-size: 12px;
  color: #e4e4d9;
}
.app-features li {
  display: flex;
  gap: 9px;
  align-items: center;
}
.app-features .icon {
  width: 15px;
  height: 15px;
  color: var(--yellow);
}
.app-copy .button {
  font-size: 12px;
}
.app-demo {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 10px 0;
}
.demo-orbit {
  position: absolute;
  width: 430px;
  height: 430px;
  max-width: 100%;
  border: 1px solid #ffffff17;
  border-radius: 50%;
  top: 40px;
}
.demo-orbit:after {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid #ffffff10;
  border-radius: 50%;
}
.demo-orbit:before {
  content: "";
  position: absolute;
  top: 45px;
  right: 24px;
  height: 11px;
  width: 11px;
  border-radius: 50%;
  background: var(--yellow);
}
.phone {
  position: relative;
  z-index: 1;
  width: 282px;
  background: #fafaf6;
  color: var(--ink);
  border: 7px solid #080807;
  border-radius: 35px;
  box-shadow:
    0 0 0 1px #5b5b50,
    18px 30px 45px #0004;
  overflow: hidden;
  transform: rotate(5deg);
}
.phone-camera {
  height: 7px;
  width: 55px;
  background: #171714;
  border-radius: 10px;
  margin: 12px auto 18px;
}
.phone-header {
  display: flex;
  gap: 7px;
  align-items: center;
  padding: 0 13px 13px;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 700;
}
.phone-header img {
  border-radius: 6px;
  width: 29px;
  height: 29px;
}
.phone-header small {
  display: block;
  font-size: 8px;
  font-weight: 400;
  color: var(--muted);
}
.language-chip {
  margin-left: auto;
  border: 1px solid var(--line);
  font-size: 8px;
  padding: 3px 6px;
  border-radius: 4px;
}
.phone-content {
  padding: 19px 15px 9px;
}
.demo-kicker {
  font-size: 7px;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 12px;
}
.demo-progress {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: #6a6a62;
}
.progress-track {
  height: 4px;
  background: #e4e4dc;
  border-radius: 4px;
  margin-top: 8px;
}
.progress-track span {
  display: block;
  height: 100%;
  width: 28%;
  background: var(--yellow);
}
.stop-sign {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 20px auto;
  background: #b83329;
  color: #fff;
  font-size: 21px;
  font-family: Arial, sans-serif;
  font-weight: 800;
  clip-path: polygon(
    29% 0,
    71% 0,
    100% 29%,
    100% 71%,
    71% 100%,
    29% 100%,
    0 71%,
    0 29%
  );
  outline: 4px solid white;
}
.phone h3 {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.demo-options {
  display: grid;
  gap: 8px;
}
.demo-options button {
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
  font-size: 10px;
  background: #fff;
  border: 1px solid #ddddd3;
  padding: 9px 8px;
  border-radius: 5px;
  line-height: 1.5;
  min-height: 43px;
  color: var(--ink);
}
.demo-options button > span {
  height: 19px;
  width: 19px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: #f0f0e8;
  border-radius: 50%;
  font-size: 8px;
  font-weight: 700;
}
.demo-options button:hover:not(:disabled) {
  border-color: #8e7e00;
  background: #fffbe0;
}
.demo-options button.is-correct {
  border-color: #47744a;
  background: #e9f2e6;
}
.demo-options button.is-wrong {
  border-color: #b95142;
  background: #faebe7;
}
.demo-options button:disabled {
  cursor: default;
  opacity: 1;
}
.demo-feedback {
  font-size: 9px;
  padding: 9px;
  margin-top: 9px;
  background: #eeeee4;
  border-radius: 4px;
  line-height: 1.6;
}
.demo-reset {
  min-height: 32px;
  font-size: 10px;
  text-decoration: underline;
  background: none;
  padding: 7px 0 0;
  border: 0;
  color: var(--ink);
}
.demo-disclaimer {
  text-align: center;
  font-size: 9px;
  color: #68685f;
  margin-top: 17px;
}
.phone-bottom {
  width: 75px;
  height: 4px;
  background: var(--ink);
  border-radius: 3px;
  margin: 10px auto 9px;
}
.demo-sticker {
  position: absolute;
  left: -7px;
  bottom: 36px;
  background: var(--yellow);
  color: var(--ink);
  padding: 15px 18px;
  z-index: 2;
  transform: rotate(-7deg);
  font-size: 8px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  box-shadow: 0 7px 20px #0002;
}
.demo-sticker strong {
  font-size: 10px;
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
}
.faq-grid > div > p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
  margin-top: 24px;
}
.faq-grid .text-link {
  margin-top: 23px;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 21px 0;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 21px;
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details p {
  font-size: 12px;
  line-height: 1.9;
  color: var(--muted);
  padding: 15px 30px 0 0;
}
.contact-section {
  padding: 85px 0;
  background: var(--yellow);
  overflow: hidden;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.06fr 1fr;
  gap: 110px;
  align-items: start;
}
.contact-copy {
  position: relative;
  height: 100%;
}
.contact-copy h2 {
  font-size: 53px;
  line-height: 1.07;
}
.contact-copy > p:not(.eyebrow) {
  margin-top: 25px;
  font-size: 14px;
  line-height: 1.9;
  color: #655800;
}
.contact-links {
  display: grid;
  gap: 13px;
  margin-top: 32px;
  font-size: 12px;
  font-weight: 550;
}
.contact-links > a,
.contact-links > span {
  display: flex;
  gap: 12px;
  align-items: center;
  overflow-wrap: anywhere;
}
.contact-links .icon {
  width: 17px;
  height: 17px;
}
.contact-links a:hover {
  text-decoration: underline;
}
.contact-brand-mark {
  font-size: 160px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.1em;
  color: #dfc500;
  margin-top: 40px;
  display: flex;
  align-items: start;
}
.contact-brand-mark span {
  font-size: 100px;
  letter-spacing: 0;
  margin-top: -12px;
}
.contact-form {
  background: var(--paper);
  padding: 33px;
  border-radius: 7px;
  box-shadow: 0 10px 0 -4px #dbc300;
}
.contact-form h3 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 9px;
}
.contact-form > p:first-of-type {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 26px;
}
.field {
  margin-bottom: 18px;
}
.field label {
  display: block;
  font-size: 11px;
  font-weight: 650;
  margin-bottom: 7px;
}
.field label > span {
  font-weight: 400;
  color: #68685f;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #dadad0;
  border-radius: 4px;
  background: #fff;
  padding: 12px;
  font-size: 12px;
  color: var(--ink);
  line-height: 1.5;
  min-height: 46px;
}
.field textarea {
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #737366;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid #746600;
  outline-offset: 2px;
}
.form-submit {
  width: 100%;
  font-size: 12px;
  gap: 12px;
}
.form-submit .icon:first-child {
  width: 19px;
  height: 19px;
}
.form-submit .icon:last-child {
  margin-left: auto;
  width: 17px;
  height: 17px;
}
.form-note {
  font-size: 9px;
  line-height: 1.7;
  color: #707066;
  margin-top: 14px;
}
.form-note a {
  text-decoration: underline;
}
.form-status {
  font-size: 12px;
  padding: 12px;
  border-left: 3px solid var(--ink);
  margin-top: 17px;
  background: #fff;
}
.form-status a {
  font-weight: 700;
  text-decoration: underline;
}
.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 47px 0 0;
}
.brand-light img {
  width: 54px;
  height: 54px;
}
.brand-light small {
  color: #a9a99c;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
  gap: 25px;
}
.footer-top > p {
  font-size: 15px;
  line-height: 1.7;
}
.footer-top > p > span {
  color: #929287;
}
.footer-back {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #69695d;
  border-radius: 50%;
}
.footer-back:hover {
  background: var(--yellow);
  color: var(--ink);
  border-color: var(--yellow);
}
.footer-back .icon {
  width: 19px;
  height: 19px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #44443c;
  padding: 22px 0;
  font-size: 9px;
  color: #a5a598;
}
.footer-bottom a:hover {
  color: var(--yellow);
}
.legal-main {
  max-width: 760px;
  margin: auto;
  padding: 80px 30px 100px;
}
.legal-main h1 {
  font-size: 45px;
  margin-bottom: 30px;
}
.legal-main h2 {
  font-size: 23px;
  margin: 30px 0 12px;
}
.legal-main p {
  margin: 15px 0;
  color: #64645a;
}
.legal-main a {
  text-decoration: underline;
}
.legal-main .eyebrow {
  color: var(--ink);
}
[hidden] {
  display: none !important;
}
@media (min-width: 1500px) {
  .container {
    width: min(1320px, calc(100% - 120px));
  }
  .hero-grid {
    gap: 75px;
  }
  .hero-image-wrap {
    height: 500px;
  }
  .hero-visual {
    min-height: 545px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .main-nav {
    gap: 18px;
    font-size: 11px;
  }
  .nav-cta {
    padding: 11px 13px;
    gap: 10px;
  }
  .brand strong {
    font-size: 17px;
  }
  .brand img {
    width: 43px;
    height: 43px;
  }
  .brand small {
    font-size: 6px;
  }
  .hero-grid {
    gap: 32px;
  }
  .hero-actions {
    gap: 17px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero .button {
    gap: 16px;
    padding: 14px 18px;
  }
  .hero-visual {
    min-height: 450px;
  }
  .hero-image-wrap {
    height: 420px;
  }
  .floating-note {
    padding: 15px 13px;
    left: -17px;
    font-size: 11px;
  }
  .hero-index {
    right: 0;
  }
  .hero-label {
    left: -12px;
  }
  .values-inner > span + span {
    padding-left: 28px;
  }
  .values-inner > span {
    font-size: 11px;
  }
  .service-card {
    padding: 24px 20px 0;
  }
  .service-card h3 {
    font-size: 21px;
  }
  .service-card > p {
    min-height: 90px;
  }
  .check-list {
    font-size: 9px;
  }
  .method-grid,
  .faq-grid,
  .contact-grid {
    gap: 65px;
  }
  .contact-copy h2 {
    font-size: 45px;
  }
  .contact-form {
    padding: 27px;
  }
  .app-grid {
    gap: 45px;
  }
  .demo-sticker {
    left: -15px;
  }
  .section {
    padding: 85px 0;
  }
}
@media (max-width: 850px) {
  .container {
    width: calc(100% - 48px);
  }
  .header-inner {
    min-height: 83px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: none;
    border: 1px solid #d3d3c8;
    border-radius: 4px;
    z-index: 40;
  }
  .menu-toggle > span {
    width: 18px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.2s;
  }
  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] > span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px 24px 30px;
    box-shadow: 0 14px 18px #0001;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
    font-size: 16px;
    max-height: calc(100dvh - 85px);
    overflow: auto;
  }
  .main-nav.is-open {
    display: flex;
  }
  .main-nav > a:not(.button) {
    padding: 15px 0;
  }
  .main-nav .button {
    margin-top: 12px;
    font-size: 14px;
    min-height: 48px;
  }
  .hero {
    padding: 42px 0 46px;
  }
  .hero-grid {
    gap: 27px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero h1 {
    font-size: 49px;
  }
  .hero .eyebrow {
    font-size: 7px;
    margin-bottom: 20px;
  }
  .hero-description {
    font-size: 12px;
    line-height: 1.9;
    margin-top: 25px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    margin-top: 24px;
  }
  .hero-note {
    font-size: 8px;
    margin-top: 25px;
    gap: 7px;
  }
  .round-check {
    flex-shrink: 0;
  }
  .hero-visual {
    min-height: 432px;
  }
  .hero-image-wrap {
    height: 396px;
  }
  .hero-label {
    padding: 12px 13px;
    gap: 9px;
    left: -10px;
    top: 22px;
  }
  .hero-label strong {
    font-size: 12px;
  }
  .hero-label .label-arrow {
    display: none;
  }
  .photo-caption {
    left: 17px;
    right: 17px;
    bottom: 57px;
    font-size: 7px;
  }
  .photo-caption > span {
    display: none;
  }
  .floating-note {
    left: -12px;
    bottom: 10px;
    padding: 12px;
    font-size: 9px;
    gap: 9px;
  }
  .floating-note small {
    font-size: 7px;
  }
  .note-symbol {
    height: 30px;
    width: 30px;
    font-size: 24px;
  }
  .hero-index {
    font-size: 6px;
  }
  .values-inner {
    min-height: 70px;
    gap: 15px;
  }
  .values-inner > span {
    font-size: 9px;
    gap: 9px;
  }
  .values-inner > span + span {
    padding-left: 17px;
  }
  .values-inner .icon {
    width: 18px !important;
  }
  .section-heading {
    gap: 30px;
  }
  .section-heading > p {
    max-width: 235px;
    font-size: 11px;
  }
  .section-heading h2 {
    font-size: 34px;
  }
  .service-grid {
    gap: 13px;
  }
  .service-card {
    padding: 20px 15px 0;
  }
  .service-top .index {
    font-size: 7px;
  }
  .service-top {
    margin-bottom: 26px;
  }
  .service-icon {
    width: 33px;
    height: 33px;
  }
  .service-icon .icon {
    width: 20px;
    height: 20px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card > p {
    font-size: 11px;
    min-height: 105px;
  }
  .check-list {
    font-size: 9px;
    gap: 9px;
    margin: 18px 0;
  }
  .card-link {
    font-size: 10px;
    min-height: 70px;
    line-height: 1.5;
  }
  .method-grid {
    gap: 35px;
  }
  .method-intro h2 {
    font-size: 36px;
  }
  .method-intro > p:not(.eyebrow) {
    font-size: 12px;
  }
  .step {
    gap: 17px;
    padding: 25px 0;
  }
  .step h3 {
    font-size: 22px;
  }
  .step p {
    font-size: 11px;
  }
  .app-copy h2 {
    font-size: 55px;
  }
  .app-grid {
    gap: 25px;
  }
  .phone {
    width: 265px;
  }
  .demo-sticker {
    left: -5px;
    bottom: 12px;
    font-size: 7px;
    padding: 10px 13px;
  }
  .demo-sticker strong {
    font-size: 9px;
  }
  .faq-grid {
    gap: 35px;
  }
  .faq-grid h2 {
    font-size: 35px;
  }
  .faq-list summary {
    font-size: 12px;
  }
  .contact-grid {
    gap: 35px;
  }
  .contact-copy h2 {
    font-size: 40px;
  }
  .contact-links {
    font-size: 10px;
  }
  .contact-form {
    padding: 23px;
  }
  .contact-form h3 {
    font-size: 21px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 92px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .topbar {
    font-size: 7px;
    letter-spacing: 0.08em;
  }
  .topbar-inner {
    min-height: 30px;
  }
  .top-phone {
    display: none;
  }
  .topbar a {
    font-size: 10px;
  }
  .header-inner {
    min-height: 77px;
  }
  .brand img {
    width: 43px;
    height: 43px;
  }
  .brand > span {
    font-size: 11px;
  }
  .brand strong {
    font-size: 17px;
  }
  .brand small {
    font-size: 6px;
  }
  .hero {
    padding-top: 36px;
    padding-bottom: 33px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .hero h1 {
    font-size: clamp(43px, 10.2vw, 61px);
    letter-spacing: -0.055em;
  }
  .hero .eyebrow {
    font-size: 8px;
    margin-bottom: 23px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 340px;
    line-height: 1.8;
    margin-top: 24px;
  }
  .hero-actions {
    flex-direction: row;
    align-items: center;
    gap: 23px;
    margin-top: 27px;
  }
  .hero-actions .button {
    font-size: 12px;
    min-height: 49px;
  }
  .hero-actions .text-link {
    font-size: 11px;
    gap: 8px;
  }
  .hero-actions .text-link .icon {
    width: 17px;
  }
  .hero-note {
    font-size: 9px;
    margin-top: 23px;
  }
  .hero-visual {
    margin-left: 10px;
    min-height: 352px;
    padding-bottom: 30px;
  }
  .hero-image-wrap {
    height: 325px;
    border-bottom-right-radius: 58px;
  }
  .hero-image {
    object-position: 67% 61%;
  }
  .hero-label {
    left: -10px;
    top: 23px;
    padding: 13px 16px;
    font-size: 7px;
  }
  .hero-label strong {
    font-size: 13px;
  }
  .hero-label .label-arrow {
    display: block;
    width: 17px;
  }
  .floating-note {
    left: -10px;
    bottom: 0;
    padding: 14px 18px;
    font-size: 11px;
  }
  .floating-note small {
    font-size: 8px;
  }
  .note-symbol {
    width: 33px;
    height: 33px;
  }
  .photo-caption {
    bottom: 57px;
    font-size: 7px;
  }
  .photo-caption > span {
    display: block;
    font-size: 6px;
  }
  .hero-index {
    bottom: 0;
    right: 6px;
    font-size: 6px;
  }
  .values-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 20px;
    padding: 21px 0;
  }
  .values-inner > span {
    font-size: 9px;
    gap: 8px;
  }
  .values-inner > span + span {
    padding-left: 0;
    border-left: none;
  }
  .values-inner > span:last-child {
    width: 100%;
    justify-content: center;
  }
  .section {
    padding: 64px 0;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading h2 {
    font-size: 36px;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }
  .section-heading > p {
    max-width: 360px;
    font-size: 12px;
    line-height: 1.8;
    margin-top: 21px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 17px;
  }
  .service-card {
    padding: 25px 25px 0;
  }
  .service-top {
    margin-bottom: 24px;
  }
  .service-top .index {
    font-size: 9px;
  }
  .service-icon {
    width: 42px;
    height: 42px;
  }
  .service-card h3 {
    font-size: 27px;
  }
  .service-card > p {
    font-size: 13px;
    min-height: 0;
    line-height: 1.8;
  }
  .check-list {
    font-size: 11px;
    gap: 12px;
    margin: 23px 0;
  }
  .card-link {
    font-size: 12px;
    min-height: 64px;
  }
  .service-card:hover {
    transform: none;
  }
  .method-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .method-intro h2 {
    font-size: 40px;
  }
  .method-intro > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 13px;
    margin-top: 23px;
  }
  .method-road {
    max-width: 300px;
    height: 85px;
    margin-top: 20px;
  }
  .road-start {
    bottom: 14px;
    left: 20px;
  }
  .road-end {
    right: 10px;
    top: 4px;
  }
  .steps {
    margin-top: 8px;
  }
  .step {
    gap: 19px;
    padding: 25px 0;
  }
  .step h3 {
    font-size: 25px;
  }
  .step p {
    font-size: 12px;
    max-width: 100%;
  }
  .app-section {
    padding: 64px 0 67px;
  }
  .app-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .app-copy h2 {
    font-size: 57px;
  }
  .app-copy > p:not(.eyebrow) {
    font-size: 13px;
    max-width: 100%;
  }
  .app-copy > .eyebrow {
    font-size: 8px;
  }
  .app-facts {
    gap: 35px;
  }
  .app-features {
    font-size: 12px;
  }
  .app-demo {
    padding: 20px 0 15px;
  }
  .phone {
    width: 278px;
    transform: rotate(4deg);
  }
  .demo-sticker {
    left: 0;
    bottom: 45px;
    font-size: 7px;
    padding: 12px 13px;
  }
  .demo-sticker strong {
    font-size: 9px;
  }
  .demo-orbit {
    width: 320px;
    height: 320px;
    top: 85px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-grid h2 {
    font-size: 38px;
  }
  .faq-grid > div > p:not(.eyebrow) {
    margin-top: 18px;
  }
  .faq-list summary {
    font-size: 13px;
    gap: 18px;
  }
  .faq-list details {
    padding: 20px 0;
  }
  .faq-list details p {
    font-size: 12px;
    padding-right: 17px;
  }
  .contact-section {
    padding: 62px 0;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-copy h2 {
    font-size: 44px;
  }
  .contact-copy > p:not(.eyebrow) {
    font-size: 14px;
    margin-top: 21px;
  }
  .contact-links {
    font-size: 12px;
    margin-top: 25px;
    gap: 13px;
  }
  .contact-brand-mark {
    display: none;
  }
  .contact-form {
    padding: 25px 22px;
  }
  .contact-form h3 {
    font-size: 25px;
  }
  .contact-form > p:first-of-type {
    font-size: 12px;
  }
  .field label {
    font-size: 12px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
    padding: 12px;
    min-height: 48px;
  }
  .field textarea {
    font-size: 14px;
  }
  .form-submit {
    font-size: 12px;
  }
  .form-note {
    font-size: 10px;
  }
  .site-footer {
    padding-top: 35px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 25px;
    padding-bottom: 30px;
  }
  .footer-top > p {
    font-size: 13px;
    order: 3;
    flex-basis: 100%;
  }
  .footer-top > .brand {
    flex: 1;
  }
  .footer-back {
    width: 36px;
    height: 36px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    font-size: 9px;
    gap: 13px;
    padding: 22px 0;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .footer-bottom > a {
    margin-left: auto;
  }
  .legal-main {
    padding: 50px 20px 70px;
  }
  .legal-main h1 {
    font-size: 36px;
  }
}
@media (max-width: 359px) {
  .container {
    width: calc(100% - 30px);
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero-actions {
    gap: 14px;
  }
  .hero-actions .button {
    padding: 13px;
    font-size: 11px;
    gap: 10px;
  }
  .hero-actions .text-link {
    font-size: 10px;
  }
  .hero-note {
    font-size: 8px;
  }
  .hero-visual {
    min-height: 320px;
  }
  .hero-image-wrap {
    height: 293px;
  }
  .floating-note {
    padding: 12px;
    font-size: 10px;
  }
  .section-heading h2 {
    font-size: 32px;
  }
  .contact-copy h2 {
    font-size: 39px;
  }
  .contact-links {
    font-size: 10px;
  }
  .phone {
    width: 260px;
  }
  .demo-sticker {
    left: -5px;
  }
  .contact-form {
    padding: 21px 17px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
@media print {
  .topbar,
  .main-nav,
  .menu-toggle,
  .contact-form,
  .app-demo,
  .hero-actions,
  .footer-back {
    display: none !important;
  }
  .site-header {
    position: static;
  }
  .container {
    width: 100%;
  }
  .section,
  .app-section,
  .contact-section {
    padding: 25px 0;
  }
  .hero {
    padding: 25px 0;
  }
  .hero-visual {
    display: none;
  }
  .hero-grid {
    display: block;
  }
  .app-section,
  .contact-section,
  .site-footer {
    background: white;
    color: black;
  }
  .hero h1 {
    font-size: 40px;
  }
  .app-copy > p:not(.eyebrow),
  .app-features {
    color: black;
  }
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  a[href^="tel"]:after {
    content: " " attr(href);
  }
}
