@font-face {
  font-family: Fraunces;
  src: url("/assets/fraunces.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: Fraunces;
  src: url("/assets/fraunces-italic.ttf") format("truetype");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("/assets/manrope.ttf") format("truetype");
  font-weight: 200 800;
  font-display: swap;
}
:root {
  --surface: #fbfaf7;
  --ink: #27251f;
  --muted: #6b6259;
  --line: #e4ded4;
  --cherry: #8c1d2c;
  --blue: #2a5da8;
  --pine: #3f5d4a;
  --parchment: #f2eee6;
  --serif: Fraunces, Georgia, serif;
  --sans: Manrope, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) {
  overflow: hidden;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button,
a,
summary {
  touch-action: manipulation;
}
button {
  color: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
p {
  line-height: 1.85;
}
button {
  border: 0;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: var(--serif);
  font-weight: 450;
  letter-spacing: -2.7px;
}
h2 {
  font-size: clamp(38px, 4.1vw, 56px);
  line-height: 1.13;
  margin-bottom: 24px;
}
em {
  color: var(--cherry);
  font-weight: 430;
}
h3 {
  font-weight: 700;
  letter-spacing: -0.55px;
}
img {
  display: block;
  max-width: 100%;
}
.container {
  width: min(1200px, calc(100% - 112px));
  margin-inline: auto;
}
.section {
  padding-block: 104px;
}
.icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.top-thread {
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--cherry) 0 33.333%,
    #d9a03d 33.333% 66.666%,
    var(--blue) 66.666%
  );
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fbfaf7ed;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #e4ded480;
}
.header-inner {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-size: 30px;
  font-weight: 750;
  letter-spacing: -1.8px;
}
.brand b,
.brand-dot {
  color: var(--cherry);
}
.brand img {
  border-radius: 10px;
}
.header-inner nav {
  display: flex;
  gap: 32px;
  font-size: 12px;
  font-weight: 650;
}
.header-inner nav a {
  padding-block: 15px;
}
.header-inner nav a:hover,
.text-link:hover {
  color: var(--cherry);
}
.header-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}
.language-button {
  display: flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 0;
  min-height: 44px;
}
.language-button .icon {
  width: 17px;
  height: 17px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  background: var(--cherry);
  color: var(--surface);
  padding: 19px 24px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #701423;
  transform: translateY(-2px);
}
.soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(140, 29, 44, 0.28);
  border-radius: 999px;
  color: var(--cherry);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.soon-badge:hover {
  background: rgba(140, 29, 44, 0.06);
  border-color: var(--cherry);
}
.soon-platforms {
  color: var(--muted);
  font-weight: 600;
  margin-left: -4px;
}
.soon-badge .status-dot {
  animation: soon-pulse 2.4s ease-out infinite;
}
@keyframes soon-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(63, 93, 74, 0.45);
  }
  70%,
  100% {
    box-shadow: 0 0 0 7px rgba(63, 93, 74, 0);
  }
}
.menu-button {
  display: none;
}
.eyebrow {
  color: var(--cherry);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 1.9px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tiny-diamond {
  height: 6px;
  width: 6px;
  background: var(--cherry);
  transform: rotate(45deg);
  display: inline-block;
  flex-shrink: 0;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  min-height: 710px;
  padding-block: 54px 64px;
}
.hero-copy {
  padding-bottom: 18px;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-size: clamp(48px, 5.4vw, 75px);
  line-height: 1.1;
  margin: 23px -35px 25px 0;
  letter-spacing: -3.8px;
}
.hero h1 em {
  display: block;
}
.hero-description {
  font-size: 14px;
  max-width: 400px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 29px;
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 26px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
}
.play-icon {
  width: 25px;
  height: 25px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 10px;
  color: var(--muted);
  margin-top: 34px;
}
.note-icon {
  background: #eeeade;
  border-radius: 50%;
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: var(--pine);
}
.note-icon .icon {
  width: 14px;
  height: 14px;
}
.hero-art {
  height: 570px;
  position: relative;
  margin-left: 10px;
}
.landscape-frame {
  position: absolute;
  top: 24px;
  left: 18px;
  right: 0;
  height: 452px;
  border-radius: 170px 170px 8px 8px;
  overflow: hidden;
  background: #d4d6b9;
}
.landscape {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 50%;
}
.landscape-frame:after {
  content: "";
  position: absolute;
  inset: 60% 0 0;
  background: linear-gradient(transparent, #273c2bab);
}
.art-caption {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 22px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  color: #fff9e9;
  font-size: 8px;
  letter-spacing: 1.1px;
}
.art-caption span:last-child {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0;
}
.home-stamp {
  position: absolute;
  left: -17px;
  top: 4px;
  background: var(--surface);
  border: 1px solid #a89676;
  outline: 5px solid var(--surface);
  border-radius: 50%;
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
  color: var(--cherry);
  transform: rotate(-14deg);
  z-index: 3;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 2px;
}
.home-stamp .icon {
  height: 24px;
  width: 24px;
}
.phone {
  position: absolute;
  right: 34px;
  bottom: 4px;
  width: 228px;
  background: var(--surface);
  border: 6px solid #252721;
  border-radius: 34px;
  box-shadow:
    0 20px 40px #282a2433,
    0 0 0 1px #818076;
  overflow: hidden;
  transform: rotate(7deg);
  z-index: 4;
}
.phone-status {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 14px;
  font-size: 8px;
  position: relative;
}
.phone-camera {
  background: #252721;
  width: 63px;
  height: 15px;
  border-radius: 20px;
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
}
.phone-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 13px 10px;
}
.phone-heading .icon {
  width: 15px;
  height: 15px;
  color: var(--cherry);
}
.phone-brand {
  font-size: 19px;
  letter-spacing: -1px;
  font-weight: 750;
}
.phone-brand b {
  color: var(--cherry);
}
.embroidery {
  height: 16px;
  background-image: var(--embroidery);
  background-size: auto 16px;
  background-repeat: repeat-x;
}
.phone-band {
  height: 8px;
  background-size: auto 8px;
}
.phone-location {
  padding: 16px 12px 9px;
  display: grid;
  gap: 5px;
  font-size: 8px;
  color: var(--muted);
}
.phone-location b {
  font-size: 12px;
  color: var(--ink);
}
.phone-location b span {
  color: var(--cherry);
  margin-left: 3px;
}
.phone-chips {
  display: flex;
  gap: 5px;
  padding: 0 12px 10px;
}
.phone-chips span {
  padding: 5px 10px;
  background: var(--parchment);
  border-radius: 20px;
  font-size: 7px;
}
.phone-chips .selected {
  background: var(--cherry);
  color: white;
}
.phone-map {
  height: 166px;
  background: #e6e6d8;
  position: relative;
  overflow: hidden;
}
.map-street {
  position: absolute;
  background: #fcfaf1;
  box-shadow: 0 0 0 1px #d6d7c9;
}
.street-one {
  left: 40%;
  width: 10px;
  height: 120%;
  transform: rotate(29deg);
  top: -10%;
}
.street-two {
  left: -10%;
  top: 51%;
  height: 8px;
  width: 120%;
  transform: rotate(-9deg);
}
.street-three {
  left: 72%;
  width: 6px;
  height: 120%;
  transform: rotate(-10deg);
  top: -10%;
}
.street-four {
  left: -10%;
  top: 20%;
  height: 6px;
  width: 120%;
  transform: rotate(8deg);
}
.map-park {
  position: absolute;
  right: 2px;
  bottom: 9px;
  height: 56px;
  width: 51px;
  background: #ccd5bb;
  border-radius: 40% 20% 30% 10%;
  transform: rotate(17deg);
}
.map-label {
  position: absolute;
  font-size: 6px;
  letter-spacing: 1px;
  color: #626753;
}
.label-one {
  top: 27px;
  left: 9px;
}
.label-two {
  top: 23px;
  right: 6px;
}
.label-three {
  bottom: 33px;
  left: 51px;
}
.map-pin {
  width: 31px;
  height: 31px;
  background: var(--blue);
  color: white;
  position: absolute;
  transform: rotate(-45deg);
  border-radius: 50% 50% 50% 3px;
  display: grid;
  place-items: center;
  border: 3px solid white;
  box-shadow: 0 3px 7px #454b4930;
}
.map-pin .icon {
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
}
.pin-one {
  top: 58px;
  left: 60px;
}
.map-dot {
  position: absolute;
  left: 127px;
  bottom: 43px;
  width: 10px;
  height: 10px;
  border: 2px solid white;
  background: var(--blue);
  box-shadow: 0 0 0 6px #2a5da820;
  border-radius: 50%;
}
.road-number {
  position: absolute;
  left: 133px;
  top: 73px;
  font-size: 5px;
  background: var(--blue);
  color: white;
  padding: 2px;
  border-radius: 3px;
}
.phone-place {
  padding: 11px 8px;
  display: flex;
  gap: 8px;
  align-items: center;
  background: white;
  border-bottom: 1px solid var(--line);
}
.mini-church {
  width: 34px;
  height: 38px;
  background: #e8eee9;
  border-radius: 4px;
  display: grid;
  place-items: center;
  color: var(--blue);
}
.mini-church .icon {
  width: 25px;
  height: 25px;
}
.phone-place > div {
  display: grid;
  gap: 4px;
}
.phone-place div span {
  font-size: 5px;
  color: var(--blue);
  letter-spacing: 0.8px;
}
.phone-place b {
  font-size: 8px;
}
.phone-place small {
  font-size: 6px;
  color: var(--muted);
}
.phone-place > .icon {
  height: 12px;
  width: 12px;
  margin-left: auto;
  color: var(--cherry);
}
.phone-nav {
  display: flex;
  justify-content: space-around;
  padding-top: 10px;
}
.phone-nav span {
  display: grid;
  justify-items: center;
  gap: 3px;
  color: var(--muted);
}
.phone-nav .icon {
  width: 14px;
  height: 14px;
}
.phone-nav small {
  font-size: 6px;
}
.phone-nav .active {
  color: var(--cherry);
}
.phone-home {
  width: 70px;
  height: 3px;
  border-radius: 4px;
  background: #292a25;
  margin: 10px auto 5px;
}
.floating-note {
  position: absolute;
  bottom: 89px;
  left: -8px;
  z-index: 5;
  background: #fffdf7;
  padding: 15px 19px;
  box-shadow: 0 5px 20px #332b2212;
  border: 1px solid #ded5c3;
  transform: rotate(-5deg);
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  display: flex;
  gap: 13px;
  align-items: center;
}
.preview-caption {
  position: absolute;
  bottom: 1px;
  left: 0;
  font-size: 8px;
  color: var(--muted);
  width: 180px;
  line-height: 1.7;
}
.values-strip {
  background: var(--parchment);
  border-block: 1px solid var(--line);
  padding: 24px 0;
}
.values-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.values-strip span:not(.tiny-diamond) {
  font-family: var(--serif);
  font-size: 16px;
}
.values-strip .tiny-diamond {
  width: 4px;
  height: 4px;
  opacity: 0.6;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 70px;
  margin-bottom: 40px;
}
.section-heading h2 {
  margin: 15px 0 0;
}
.section-heading > p {
  max-width: 350px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 6px;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.category-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  text-align: left;
  overflow: hidden;
  padding: 0;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}
.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px #3028200c;
}
.category-art {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #f3eadf;
  position: relative;
  display: grid;
  place-items: center;
}
.heritage-card .category-art {
  background: #eaf0ed;
}
.service-card .category-art {
  background: #eef0e5;
}
.category-illustration {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.category-card:hover .category-illustration {
  transform: scale(1.04);
}
.category-index {
  position: absolute;
  left: 19px;
  top: 18px;
  font-size: 9px;
  color: var(--ink);
  background: var(--surface);
  padding: 7px 9px;
  border-radius: 3px;
  letter-spacing: 1px;
}
.category-body {
  padding: 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.category-label {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--cherry);
  font-size: 8px;
  letter-spacing: 1.4px;
  font-weight: 750;
}
.category-label .icon {
  height: 18px;
  width: 18px;
}
.heritage-card .category-label,
.heritage-card .card-link {
  color: var(--blue);
}
.service-card .category-label,
.service-card .card-link {
  color: var(--pine);
}
.category-body h3 {
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.3;
  margin: 14px 0 10px;
  letter-spacing: -0.65px;
}
.category-body p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 24px;
}
.card-link {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--cherry);
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 17px;
}
.card-link .icon {
  height: 17px;
  width: 17px;
}
.launch-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 26px;
}
.launch-note p {
  margin: 0;
  font-size: 11px;
  color: var(--muted);
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pine);
  display: inline-block;
  flex-shrink: 0;
}
.how-section {
  background: #f1eee6;
  border-block: 1px solid var(--line);
}
.how-section .section {
  padding-block: 86px;
}
.how-section .eyebrow {
  justify-content: center;
}
.how-section h2 {
  text-align: center;
  margin: 16px 0 50px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.steps article {
  position: relative;
  padding-left: 25px;
  border-left: 1px solid #d6cec0;
}
.step-number {
  position: absolute;
  right: 10px;
  top: -15px;
  font-size: 61px;
  color: #8c7c67;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -4px;
}
.steps article > .icon {
  width: 29px;
  height: 29px;
  color: var(--cherry);
  margin-bottom: 20px;
}
.steps h3 {
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 450;
  margin-bottom: 12px;
}
.steps p {
  font-size: 12px;
  color: var(--muted);
  max-width: 280px;
  margin-bottom: 0;
}
.demo-link {
  display: flex;
  margin: 40px auto 0;
  color: var(--cherry);
  padding: 10px 0;
  background: transparent;
  border-bottom: 1px solid #8c1d2c50;
}
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.story-visual {
  height: 424px;
  position: relative;
  border-radius: 9px;
  overflow: hidden;
  background: #a4b393;
}
.story-visual > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: left;
}
.story-card {
  position: absolute;
  inset: 70px 60px;
  background: #fbfaf7ed;
  transform: rotate(-5deg);
  padding: 24px;
  text-align: center;
  box-shadow: 0 10px 30px #17241420;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.story-card .embroidery {
  width: 130px;
  height: 11px;
  background-size: auto 11px;
  margin-bottom: 21px;
}
.story-card p {
  font-family: var(--serif);
  font-size: 39px;
  line-height: 1.25;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.story-card > span {
  font-size: 7px;
  letter-spacing: 2px;
  color: var(--muted);
}
.story-copy h2 {
  margin-top: 18px;
}
.story-copy > p {
  font-size: 13px;
  color: var(--muted);
}
.story-signature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--cherry);
  font-size: 18px;
  font-family: var(--serif);
  font-style: italic;
}
.story-signature .icon {
  height: 20px;
  width: 20px;
}
.app-section {
  background: #efe9dc;
  border-radius: 10px;
  overflow: hidden;
}
.app-section > .embroidery {
  height: 18px;
  background-size: auto 18px;
  opacity: 0.8;
}
.app-inner {
  padding: 62px 30px;
  text-align: center;
}
.app-inner > .eyebrow {
  justify-content: center;
}
.app-inner h2 {
  font-size: 60px;
  margin: 16px 0 20px;
}
.app-inner p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 26px;
}
.store-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
  padding: 12px 22px 12px 18px;
  border: 1.5px dashed rgba(39, 37, 31, 0.35);
  border-radius: 10px;
  background: rgba(251, 250, 247, 0.55);
  color: var(--ink);
  text-align: left;
}
.store-badge .icon {
  width: 26px;
  height: 26px;
  fill: currentColor;
  stroke: none;
}
.store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.store-badge small {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
}
.store-badge b {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.3px;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
}
.faq h2 {
  margin-top: 18px;
}
.faq-items {
  border-top: 1px solid var(--line);
}
details {
  border-bottom: 1px solid var(--line);
}
summary {
  list-style: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
  position: relative;
  padding: 23px 30px 23px 0;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 20px;
  font-size: 22px;
  font-weight: 400;
  color: var(--cherry);
}
details[open] summary:after {
  content: "−";
}
details p {
  font-size: 12px;
  color: var(--muted);
  padding-right: 32px;
  margin-bottom: 23px;
}
footer {
  border-top: 1px solid var(--line);
  padding-top: 35px;
  padding-bottom: 22px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
.footer-top .brand {
  font-size: 25px;
}
.footer-top p {
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
}
.back-top {
  font-size: 10px;
  display: flex;
  gap: 13px;
  min-height: 44px;
  align-items: center;
}
.footer-bottom {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--muted);
  font-size: 9px;
  margin-top: 27px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.footer-bottom > span:nth-child(2) {
  margin-left: auto;
}
.footer-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-link:hover {
  color: var(--ink);
}
.flag {
  display: flex;
  width: 20px;
  height: 12px;
  overflow: hidden;
  border-radius: 1px;
}
.flag i {
  width: 33.333%;
}
.flag i:nth-child(1) {
  background: var(--blue);
}
.flag i:nth-child(2) {
  background: #d9a03d;
}
.flag i:nth-child(3) {
  background: var(--cherry);
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  background: var(--cherry);
  color: white;
  padding: 14px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
dialog {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px;
  width: min(560px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  box-shadow: 0 25px 100px #17131030;
}
dialog::backdrop {
  background: #17131070;
  backdrop-filter: blur(5px);
}
.dialog-close {
  position: absolute;
  right: 12px;
  top: 12px;
  background: transparent;
  width: 44px;
  height: 44px;
  font-size: 28px;
  color: var(--muted);
}
dialog h2 {
  margin-top: 16px;
  font-size: 44px;
}
.dialog-intro {
  font-size: 13px;
  color: var(--muted);
}
.demo-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 23px 0;
}
.demo-filters button {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: transparent;
  padding: 12px 15px;
  font-size: 11px;
  min-height: 44px;
}
.demo-filters [aria-pressed="true"] {
  background: var(--cherry);
  border-color: var(--cherry);
  color: white;
}
.demo-place {
  border: 1px solid var(--line);
  border-top: 3px solid var(--blue);
  background: white;
  border-radius: 8px;
  padding: 24px;
}
.demo-place > .icon {
  color: var(--blue);
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
}
.demo-place h3 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.demo-place p {
  color: var(--muted);
  font-size: 12px;
}
.demo-place .text-link {
  color: var(--blue);
  min-height: 44px;
}
.demo-empty {
  text-align: center;
  padding: 25px 15px;
  background: var(--parchment);
  border-radius: 8px;
}
.demo-empty > .icon {
  color: var(--cherry);
  height: 35px;
  width: 35px;
  margin-bottom: 15px;
}
.demo-empty h3 {
  font-size: 17px;
}
.demo-empty p {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 0;
}
.dialog-footnote {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  margin: 18px 0 0;
}
@media (min-width: 1500px) {
  .hero {
    min-height: 770px;
  }
  .hero-art {
    height: 595px;
  }
  .landscape-frame {
    height: 478px;
  }
  .hero h1 {
    font-size: 78px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 72px);
  }
  .header-inner {
    gap: 20px;
  }
  .header-inner nav {
    gap: 20px;
    font-size: 11px;
  }
  .header-actions {
    gap: 15px;
  }
  .hero {
    gap: 20px;
    min-height: 660px;
  }
  .hero h1 {
    font-size: 62px;
  }
  .hero-art {
    height: 530px;
  }
  .landscape-frame {
    height: 410px;
  }
  .phone {
    right: 16px;
    width: 214px;
  }
  .hero-buttons {
    gap: 16px;
  }
  .hero-buttons .button {
    padding: 18px;
    gap: 15px;
  }
  .hero-note {
    font-size: 9px;
  }
  .floating-note {
    font-size: 17px;
    padding: 12px 14px;
    left: -12px;
  }
  .story {
    gap: 65px;
  }
  .story-card {
    inset: 70px 38px;
  }
  .category-body {
    padding: 20px;
  }
  .category-body h3 {
    font-size: 21px;
  }
  .values-strip span:not(.tiny-diamond) {
    font-size: 14px;
  }
}
@media (max-width: 900px) {
  .header-inner {
    height: 80px;
  }
  .header-inner nav {
    gap: 18px;
  }
  .soon-platforms {
    display: none;
  }
  .hero h1 {
    font-size: 53px;
    letter-spacing: -2.6px;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
  }
  .hero-buttons {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }
  .hero-note {
    font-size: 8px;
    gap: 7px;
    margin-top: 24px;
  }
  .hero-art {
    height: 510px;
  }
  .home-stamp {
    width: 80px;
    height: 80px;
    font-size: 7px;
  }
  .phone {
    width: 199px;
    right: 0;
  }
  .landscape-frame {
    left: 0;
    height: 390px;
  }
  .floating-note {
    bottom: 90px;
    left: -5px;
    font-size: 14px;
    padding: 11px;
  }
  .preview-caption {
    max-width: 110px;
  }
  .values-strip .container {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .values-strip span:not(.tiny-diamond) {
    font-size: 12px;
  }
  .section {
    padding-block: 76px;
  }
  .section-heading {
    gap: 30px;
  }
  .section-heading > p {
    max-width: 280px;
    font-size: 12px;
  }
  .category-grid {
    gap: 13px;
  }
  .category-body {
    padding: 17px;
  }
  .category-label {
    font-size: 6px;
    letter-spacing: 1px;
  }
  .category-body h3 {
    font-size: 19px;
  }
  .category-body p {
    font-size: 11px;
  }
  .card-link {
    font-size: 9px;
  }
  .steps {
    gap: 25px;
  }
  .steps article {
    padding-left: 18px;
  }
  .steps h3 {
    font-size: 21px;
  }
  .steps p {
    font-size: 11px;
  }
  .step-number {
    font-size: 48px;
  }
  .story {
    gap: 40px;
  }
  .story-visual {
    height: 390px;
  }
  .story-card {
    inset: 75px 25px;
  }
  .story-card p {
    font-size: 30px;
  }
  .story-copy > p {
    font-size: 12px;
  }
  .faq {
    gap: 60px;
  }
  .footer-top p {
    font-size: 14px;
  }
}
@media (max-width: 640px) {
  html {
    scroll-padding-top: 95px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    height: 73px;
  }
  .brand {
    font-size: 28px;
  }
  .brand img {
    width: 32px;
    height: 32px;
  }
  .header-actions {
    gap: 16px;
  }
  .language-button .icon {
    display: none;
  }
  .soon-badge {
    gap: 7px;
    padding: 0 12px;
  }
  .menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: none;
    width: 28px;
    min-height: 44px;
    padding: 0;
  }
  .menu-button span {
    width: 23px;
    height: 1.5px;
    background: var(--ink);
  }
  .header-inner nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 73px;
    background: var(--surface);
    padding: 18px 25px 25px;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    font-size: 14px;
    box-shadow: 0 15px 20px #27251f08;
  }
  .header-inner nav.open {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 40px;
    padding-bottom: 28px;
    min-height: auto;
  }
  .hero-copy {
    padding-bottom: 0;
  }
  .hero .eyebrow {
    font-size: 8px;
    letter-spacing: 1.35px;
  }
  .hero h1 {
    font-size: clamp(47px, 11.5vw, 68px);
    line-height: 1.12;
    letter-spacing: -2.6px;
    margin: 20px 0;
  }
  .hero-description {
    font-size: 12px;
    max-width: 370px;
    line-height: 1.85;
    margin-bottom: 24px;
  }
  .hero-buttons {
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
  .hero-buttons .button {
    font-size: 11px;
    padding: 17px 18px;
    gap: 15px;
  }
  .hero-buttons .text-link {
    font-size: 10px;
    gap: 6px;
  }
  .play-icon {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  .hero-note {
    font-size: 9px;
    margin-top: 22px;
  }
  .hero-art {
    height: 490px;
    width: min(400px, 100%);
    margin: 15px auto 0;
  }
  .landscape-frame {
    top: 20px;
    left: 10px;
    right: 10px;
    height: 382px;
    border-radius: 140px 140px 7px 7px;
  }
  .home-stamp {
    left: 0;
    top: 8px;
    width: 77px;
    height: 77px;
  }
  .phone {
    width: 200px;
    right: 20px;
    bottom: 14px;
  }
  .floating-note {
    left: 0;
    bottom: 65px;
    font-size: 16px;
    max-width: 170px;
  }
  .preview-caption {
    bottom: 4px;
    left: 8px;
    max-width: 130px;
  }
  .art-caption {
    left: 15px;
    right: 15px;
    bottom: 19px;
  }
  .art-caption span:last-child {
    display: none;
  }
  .values-strip {
    padding: 22px 0;
  }
  .values-strip .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 17px 14px;
    text-align: center;
  }
  .values-strip .tiny-diamond {
    display: none;
  }
  .values-strip span:not(.tiny-diamond) {
    font-size: 12px;
  }
  .section {
    padding-block: 60px;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading h2 {
    font-size: 40px;
  }
  .section-heading > p {
    margin-top: 20px;
    max-width: 330px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.5px;
  }
  .category-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .category-body {
    padding: 24px;
  }
  .category-label {
    font-size: 8px;
    letter-spacing: 1.4px;
  }
  .category-body h3 {
    font-size: 26px;
  }
  .category-body p {
    font-size: 13px;
    max-width: 340px;
  }
  .card-link {
    font-size: 12px;
    min-height: 44px;
  }
  .launch-note {
    align-items: flex-start;
    margin-top: 23px;
    gap: 8px;
  }
  .launch-note .status-dot {
    margin-top: 7px;
  }
  .launch-note p {
    font-size: 10px;
  }
  .how-section .section {
    padding-block: 60px;
  }
  .how-section .eyebrow {
    font-size: 7px;
    letter-spacing: 1.3px;
  }
  .how-section h2 {
    font-size: 39px;
    margin-bottom: 38px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .steps article {
    padding-left: 22px;
    padding-right: 20px;
  }
  .steps article > .icon {
    width: 25px;
    height: 25px;
    margin-bottom: 12px;
  }
  .steps h3 {
    font-size: 25px;
    margin-bottom: 8px;
  }
  .steps p {
    font-size: 12px;
    max-width: 300px;
  }
  .step-number {
    font-size: 64px;
    right: 7px;
    top: 0;
  }
  .demo-link {
    margin-top: 28px;
  }
  .story {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .story-visual {
    height: 330px;
  }
  .story-card {
    inset: 48px 55px;
  }
  .story-card p {
    font-size: 35px;
  }
  .story-copy h2 {
    font-size: 43px;
  }
  .story-copy > p {
    font-size: 13px;
  }
  .story-signature {
    font-size: 18px;
  }
  .app-section {
    width: calc(100% - 24px);
  }
  .app-inner {
    padding: 43px 20px;
  }
  .app-inner h2 {
    font-size: 45px;
    letter-spacing: -2px;
  }
  .app-inner p {
    font-size: 12px;
  }
  .app-inner p br {
    display: none;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .faq h2 {
    font-size: 41px;
    margin-bottom: 10px;
  }
  .faq h2 br {
    display: none;
  }
  .faq summary {
    font-size: 12px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 17px;
  }
  .footer-top p {
    order: 3;
    width: 100%;
    font-size: 15px;
  }
  .footer-top .back-top {
    margin-left: auto;
  }
  .footer-bottom {
    gap: 14px;
    flex-wrap: wrap;
    font-size: 8px;
  }
  .footer-bottom > span:nth-child(2) {
    margin-left: auto;
  }
  .flag {
    width: 17px;
    height: 10px;
  }
  dialog {
    padding: 30px 22px;
  }
  dialog h2 {
    font-size: 37px;
  }
  .demo-filters {
    gap: 5px;
  }
  .demo-filters button {
    font-size: 10px;
    padding: 11px 12px;
  }
}
@media (max-width: 360px) {
  .brand {
    font-size: 25px;
    gap: 8px;
  }
  .brand img {
    width: 28px;
    height: 28px;
  }
  .header-actions {
    gap: 12px;
  }
  .soon-badge {
    padding: 0 10px;
    font-size: 10px;
  }
  .hero-buttons {
    gap: 12px;
  }
  .hero-buttons .button {
    padding: 16px 13px;
    font-size: 10px;
  }
  .hero-buttons .text-link {
    font-size: 9px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero-note {
    font-size: 8px;
  }
  .phone {
    right: 8px;
  }
  .hero-art {
    height: 480px;
  }
  .floating-note {
    font-size: 14px;
    padding: 11px;
  }
  .footer-bottom > span:nth-child(2) {
    margin-left: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
