:root {
  --ink: #292a2c;
  --clay: #c66641;
  --clay-deep: #ad512f;
  --cream: #fbf8f2;
  --line: #eae2d7;
  --green: #8d9f7a;
  --serif: Inter, Arial, sans-serif;
  --sans: Inter, Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
}
body:before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.2;
  background:
    radial-gradient(circle 380px at 104% 15%, #f0e4d2 0, transparent 72%),
    radial-gradient(circle 340px at -8% 56%, #edf0e7 0, transparent 70%),
    url("/assets/route-atmosphere.svg") center 170px / min(1720px, 125vw) auto repeat-y;
}
main,
footer {
  position: relative;
  z-index: 1;
}
.shell {
  width: min(1360px, calc(100% - 100px));
  margin: auto;
}
.site-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.site-header__brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.site-header__brand img {
  width: 158px;
  height: auto;
  display: block;
}
.site-nav,
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-nav a,
.site-header__login {
  color: #565452;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color .18s ease;
}
.site-nav a:hover,
.site-header__login:hover {
  color: var(--clay-deep);
}
.site-nav a[aria-current="page"] {
  color: var(--clay-deep);
}
.site-header__cta {
  display: inline-flex;
  gap: 11px;
  align-items: center;
  padding: 11px 15px;
  border: 1px solid #d9cabb;
  border-radius: 9px;
  color: var(--clay-deep);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.site-header__cta:hover {
  background: #fffaf4;
  border-color: var(--clay);
  transform: translateY(-1px);
}
.hero {
  width: min(1360px, calc(100% - 100px));
  margin: 8px auto 0;
  min-height: 640px;
  display: grid;
  grid-template-columns: 51.5% 48.5%;
  background: #f7f1e8;
  overflow: hidden;
  border-radius: 24px;
}
.hero__copy {
  position: relative;
  padding-top: 52px;
  z-index: 1;
  margin-top: 0;
  margin-bottom: 0;
}
.brand {
  width: 172px;
  height: auto;
  display: block;
}
.hero__content {
  padding-top: 84px;
}
.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 17px !important;
  color: #806d5d;
  font-size: 12px !important;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero__kicker:before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--clay);
}
.hero h1,
.workflow h2,
.experience h2,
.cta h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -2.5px;
  line-height: 1.03;
  margin: 0;
}
.hero h1 {
  font-size: clamp(54px, 4.5vw, 70px);
}
h1 span,
.workflow h2 span,
.experience h2 span {
  color: var(--clay);
}
.hero__content > p {
  font-size: 18px;
  line-height: 1.55;
  margin: 24px 0 29px;
}
.trust-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #5b5c5d;
}
.trust-list li:before,
.check-list li:before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 11px;
  font-weight: bold;
}
.hero__actions {
  display: flex;
  gap: 18px;
  margin-top: 34px;
}
.experience-note {
  margin: 22px 0 -7px;
  color: #4d4e4f;
  font-size: 14px;
  line-height: 1.5;
}
.experience-note strong {
  color: var(--ink);
}
.early-access {
  margin: 17px 0 0;
  color: #77736e;
  font-size: 12px;
}
.early-access a {
  color: var(--clay-deep);
  font-weight: 700;
  text-decoration: none;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 11px;
  padding: 15px 23px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition:
    0.2s transform,
    0.2s background;
}
.button:hover {
  transform: translateY(-2px);
}
.button--primary {
  color: white;
  background: var(--clay);
  box-shadow: 0 8px 16px #bd604136;
}
.button--primary:hover {
  background: var(--clay-deep);
}
.button--secondary {
  color: var(--clay-deep);
  border: 1px solid var(--clay);
  background: #fff9;
}
.journey-line {
  display: none;
}
.journey-line svg {
  width: 100%;
  overflow: visible;
}
.journey-line path {
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-dasharray: 5 6;
}
.journey-line circle {
  fill: currentColor;
}

/* Flask/Jinja marketing service: a single calm content rhythm for every route. */
.contact-hero { display: grid; grid-template-columns: minmax(0, .9fr) minmax(380px, .75fr); align-items: start; gap: clamp(42px, 9vw, 140px); padding: clamp(72px, 10vw, 140px) 0; }
.contact-hero h1 { max-width: 620px; margin: 0; font-family: var(--serif); font-size: clamp(48px, 5.8vw, 76px); letter-spacing: -3.5px; line-height: .98; }
.contact-hero h1 span { color: var(--clay); }
.contact-hero > div > p:not(.eyebrow) { max-width: 510px; margin: 24px 0 0; color: #625e58; font-size: 17px; line-height: 1.75; }
.contact-form { display: grid; gap: 16px; padding: clamp(25px, 4vw, 40px); border: 1px solid #e7ddd2; border-radius: 20px; background: #fffdf9; box-shadow: 0 22px 50px #59463112; }
.contact-form label { display: grid; gap: 8px; color: #4b4742; font-size: 13px; font-weight: 700; }
.contact-form label small { color: #8a837a; font-weight: 500; }
.contact-form input, .contact-form textarea { width: 100%; box-sizing: border-box; padding: 12px 13px; border: 1px solid #ddd4ca; border-radius: 9px; background: #fff; color: var(--ink); font: inherit; font-size: 14px; }
.contact-form textarea { resize: vertical; min-height: 130px; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid #d4775540; border-color: var(--clay); }
.contact-form .button { justify-self: start; margin-top: 5px; }
@media (max-width: 760px) { .contact-hero { grid-template-columns: 1fr; gap: 36px; padding: 62px 0 76px; }.contact-hero h1 { font-size: 43px; letter-spacing: -2.3px; }.contact-form { padding: 23px; }.contact-form .button { width: 100%; justify-content: center; } }
.hero__image {
  background:
    linear-gradient(
      90deg,
      #f7f1e8 0%,
      rgba(247, 241, 232, 0.82) 20%,
      rgba(247, 241, 232, 0.32) 52%,
      rgba(247, 241, 232, 0) 78%
    ),
    url("/assets/hero-travel-still-life.png") center right/cover no-repeat;
  min-height: 640px;
}
.hero--waitlist {
  grid-template-columns: 54% 46%;
  min-height: 700px;
}
.hero--waitlist .hero__copy {
  width: auto;
  margin: 0;
  padding: 48px clamp(44px, 5vw, 82px) 56px;
}
.hero--waitlist .hero__content {
  max-width: 455px;
  padding-top: 28px;
}
.hero--waitlist .hero__content > p {
  margin-bottom: 20px;
}
  .hero--waitlist .hero__image {
  min-height: 700px;
  background:
    linear-gradient(90deg, rgba(247, 241, 232, 0.76), rgba(247, 241, 232, 0.04) 38%),
    url("/assets/hero-travel-still-life.png") center/cover no-repeat;
}
.feature-strip {
  padding: 42px 0 78px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.feature-strip article {
  text-align: center;
  padding: 0 18px;
  border-right: 1px solid var(--line);
}
.feature-strip article:last-child {
  border: 0;
}
.feature-icon {
  height: 58px;
  width: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 15px;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 27px;
}
.feature-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-icon--clay {
  background: #f8e8df;
  color: var(--clay);
}
.feature-icon--green {
  background: #eef1e5;
  color: #4d5e43;
}
.feature-icon--sand {
  background: #f3ede2;
  color: #7a6854;
}
.feature-icon--gold {
  background: #f9edd4;
  color: #95602b;
}
.feature-icon--blue {
  background: #edf2f2;
  color: #5d7680;
}
.feature-strip h2 {
  font-size: 13px;
  margin: 0 0 11px;
}
.feature-strip p {
  font-size: 12px;
  line-height: 1.65;
  color: #656667;
  margin: 0;
}
.feature-detail {
  padding: 34px 0 70px;
}
.feature-detail__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: center;
  padding: 46px 0;
  border-top: 1px solid var(--line);
}
.feature-detail__row:first-child {
  border-top: 0;
  padding-top: 10px;
}
.feature-detail__row:nth-child(even) {
  grid-template-columns: 1fr 220px;
}
.feature-detail__row:nth-child(even) .feature-detail__icon {
  order: 2;
}
.feature-detail__row--product {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr) !important;
}
.feature-detail__row--product .feature-detail__visual {
  order: 2;
  overflow: hidden;
  border: 1px solid #eee6db;
  border-radius: 15px;
  box-shadow: 0 14px 32px #59463114;
}
.feature-detail__visual img {
  display: block;
  width: 100%;
  height: auto;
}
.feature-detail__icon {
  height: 130px;
  width: 130px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  justify-self: center;
}
.feature-detail__icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-detail__copy h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.15;
  margin: 0 0 14px;
}
.feature-detail__copy > p {
  color: #595a5b;
  font-size: 15px;
  line-height: 1.72;
  max-width: 480px;
  margin: 0 0 18px;
}
.workflow {
  display: grid;
  grid-template-columns: 34% 1fr;
  gap: 64px;
  align-items: center;
  padding: 22px 0 74px;
}
.eyebrow {
  margin: 0 0 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--clay);
  font-size: 12px;
}
.workflow h2 {
  font-size: 42px;
  line-height: 1.04;
}
.workflow__intro {
  color: #595a5b;
  font-size: 15px;
  line-height: 1.72;
  margin: 28px 0 21px;
}
.check-list {
  display: grid;
  gap: 12px;
  font-size: 14px;
}
.experience {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(45px, 7vw, 110px);
  align-items: center;
  padding: 34px 0 92px;
}
.experience__image {
  min-height: 380px;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 16px 38px #59463118;
}
.experience__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.experience h2 {
  font-size: clamp(36px, 3.3vw, 49px);
}
.experience__copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 24px 0 28px;
  color: #595a5b;
  font-size: 16px;
  line-height: 1.75;
}
.experience__points {
  display: flex;
  gap: 34px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
}
.experience__points div {
  display: grid;
  gap: 4px;
}
.experience__points strong {
  color: var(--clay-deep);
  font-size: 18px;
}
.experience__points span {
  max-width: 134px;
  color: #6a6a68;
  font-size: 12px;
  line-height: 1.4;
}
.app-preview {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 38px #59463118;
  border: 1px solid #eee6db;
}
.app-preview__screenshot {
  display: block;
  width: 100%;
  height: auto;
}
.app-preview__top {
  height: 50px;
  border-bottom: 1px solid #eee7df;
  display: flex;
  align-items: center;
  padding: 0 19px;
  gap: 11px;
}
.app-preview__top img {
  width: 85px;
}
.app-preview__top > span {
  margin-left: auto;
  color: var(--clay);
}
.avatar {
  height: 25px;
  width: 25px;
  border-radius: 50%;
  background: #b7886d;
  color: #fff;
  font-size: 9px;
  display: grid;
  place-items: center;
}
.app-preview__top small {
  font-size: 9px;
}
.app-preview__body {
  display: grid;
  grid-template-columns: 112px 1fr;
  min-height: 338px;
}
.app-preview nav {
  padding: 13px 10px;
  border-right: 1px solid #eee7df;
  display: grid;
  align-content: start;
  gap: 7px;
  color: #6c6a67;
  font-size: 9px;
}
.app-preview nav span,
.app-preview nav strong {
  padding: 8px 9px;
  border-radius: 5px;
  font-weight: 500;
}
.app-preview nav strong {
  background: #f8e8df;
  color: #945033;
}
.app-preview nav i {
  font-style: normal;
  margin-left: 5px;
}
.dashboard {
  padding: 19px;
}
.dashboard h3 {
  font-size: 15px;
  margin: 0 0 17px;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}
.stat-row > div,
.departures,
.chart {
  border: 1px solid #f1ebe4;
  border-radius: 9px;
  padding: 11px;
}
.stat-row small,
.stat-row span {
  display: block;
  font-size: 7px;
  color: #797671;
}
.stat-row b {
  font-size: 17px;
  display: block;
  margin: 7px 0 5px;
}
.stat-row em {
  font-size: 7px;
  color: #519266;
  font-style: normal;
}
.chart-row {
  display: grid;
  grid-template-columns: 38% 1fr;
  gap: 10px;
  margin-top: 11px;
}
.chart h4,
.departures h4 {
  font-size: 9px;
  margin: 0 0 13px;
}
.chart h4 small {
  float: right;
  border: 1px solid #eee7df;
  padding: 4px;
  border-radius: 4px;
  color: #666;
  font-weight: 400;
}
.departures p {
  font-size: 8px;
  margin: 10px 0;
}
.departures p b {
  font-size: 7px;
  color: #777;
  margin-right: 9px;
}
.departures a {
  font-size: 8px;
  color: var(--clay);
  font-weight: 600;
}
.chart {
  height: 180px;
  position: relative;
}
.grid-lines {
  position: absolute;
  left: 10px;
  top: 43px;
  bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 6px;
  color: #a5a29f;
}
.chart svg {
  position: absolute;
  left: 30px;
  right: 7px;
  top: 45px;
  width: calc(100% - 37px);
  height: 105px;
}
.chart svg path {
  stroke: #72b9d6;
  stroke-width: 2;
  fill: none;
}
.months {
  position: absolute;
  left: 35px;
  bottom: 8px;
  font-size: 6px;
  color: #8d8985;
  white-space: nowrap;
}
.audience {
  padding: 22px 0 90px;
}
.audience__intro {
  max-width: 560px;
  margin: 0 0 42px;
}
.audience__intro h2 {
  font-size: clamp(32px, 3vw, 44px);
  margin: 0;
}
.audience__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.audience__card {
  overflow: hidden;
  background: #fff;
  border: 1px solid #eee6db;
  border-radius: 18px;
  box-shadow: 0 16px 38px #59463118;
}
.audience__image {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
}
.audience__card:first-child .audience__image {
  object-position: center 24%;
}
.audience__card-content {
  padding: 31px 34px 36px;
}
.audience__card h3 {
  margin: 0 0 14px;
  font-size: 21px;
}
.audience__card > p {
  margin: 0 0 24px;
  color: #595a5b;
  font-size: 15px;
  line-height: 1.7;
}
.audience__card .check-list {
  flex-direction: column;
  gap: 12px;
}
.cta {
  position: relative;
  overflow: hidden;
  min-height: 173px;
  padding: 35px 158px 35px 188px;
  border-radius: 25px;
  background: #c66641 url("/assets/cta-travel-route.png") center/cover no-repeat;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cta:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(185, 82, 49, 0.2), transparent 72%);
}
.cta h2 {
  font-size: 39px;
  line-height: 1.03;
  position: relative;
}
.cta p {
  margin: 13px 0 0;
  position: relative;
}
.button--white {
  position: relative;
  background: #fff;
  color: var(--clay-deep);
  min-width: 160px;
}
.cta__plane {
  position: absolute;
  right: 50px;
  top: 25px;
  font-size: 24px;
  transform: rotate(21deg);
}
footer {
  padding: 29px 0;
  font-size: 13px;
  color: #5f5f5e;
}
footer span {
  color: #d46848;
  font-size: 18px;
  margin-right: 13px;
}
footer i {
  font-style: normal;
  margin: 0 18px;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__inner p {
  margin: 0;
}
.footer__links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__links a {
  color: #5f5f5e;
  text-decoration: none;
  font-weight: 500;
}
.footer__links a:hover {
  color: var(--clay-deep);
}

/* Legal pages (Terms of Service / Privacy Policy) */
.legal {
  padding: 50px 0 90px;
  max-width: 760px;
}
.legal h1 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -1.5px;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.08;
  margin: 0 0 10px;
}
.legal__updated {
  color: #77736e;
  font-size: 13px;
  margin: 0 0 40px;
}
.legal h2 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 21px;
  margin: 40px 0 14px;
}
.legal h2:first-of-type {
  margin-top: 0;
}
.legal p {
  color: #595a5b;
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 16px;
}
.legal ul {
  margin: 0 0 16px;
  padding-left: 20px;
  color: #595a5b;
  font-size: 15px;
  line-height: 1.75;
}
.legal li {
  margin-bottom: 6px;
}
.legal a {
  color: var(--clay-deep);
  font-weight: 600;
  text-decoration: none;
}
.legal a:hover {
  text-decoration: underline;
}
.legal strong {
  color: var(--ink);
}
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 430px;
  margin-top: 28px;
  padding: 23px;
  border: 1px solid #e9ded0;
  border-radius: 16px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 14px 30px #5946310d;
}
.waitlist-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.waitlist-form input[type="text"],
.waitlist-form input[type="email"],
.waitlist-form select {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 15px;
  font-size: 15px;
  font-family: var(--sans);
  background: #fff;
  color: var(--ink);
}
.waitlist-form input[type="text"]:focus,
.waitlist-form input[type="email"]:focus,
.waitlist-form select:focus {
  outline: 2px solid var(--clay);
  outline-offset: 1px;
}
.waitlist-form select {
  width: 100%;
  min-height: 48px;
  padding-right: 44px;
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%23292a2c' stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%3E%3Cpath d='m5 7 5 5 5-5'/%3E%3C/svg%3E");
  background-position: right 15px center;
  background-repeat: no-repeat;
  background-size: 18px;
}
.waitlist-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.waitlist-form button {
  margin-top: 6px;
  align-self: flex-start;
}
.waitlist-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.waitlist-form__hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.waitlist-form__message {
  margin-top: 18px;
  font-size: 15px;
  color: var(--clay-deep);
  font-weight: 600;
}
.waitlist-expectation { max-width: 420px; margin: 19px 0 -5px !important; color: #746e67; font-size: 12px !important; line-height: 1.55 !important; }

/* Public product, story and access pages */
.page-hero,
.about-hero,
.access-hero {
  margin-top: 28px;
}
.page-hero {
  min-height: 525px;
  padding: clamp(46px, 6vw, 90px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(35px, 6vw, 105px);
  align-items: center;
  overflow: hidden;
  border-radius: 24px;
  background: #f7f1e8;
}
.page-hero h1,
.about-hero h1,
.access-hero h1,
.product-intro h2,
.product-proof h2,
.manifesto h2,
.about-story h2,
.access-panel h2,
.access-fit h2,
.faq h2 {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -2.4px;
  line-height: 1.04;
  margin: 0;
}
.page-hero h1,
.about-hero h1,
.access-hero h1 {
  font-size: clamp(45px, 5vw, 68px);
}
.page-hero h1 span,
.about-hero h1 span,
.access-hero h1 span,
.product-intro h2 span,
.product-proof h2 span,
.manifesto h2 span,
.about-story h2 span,
.access-panel h2 span,
.access-fit h2 span,
.faq h2 span {
  color: var(--clay);
}
.page-hero__lede,
.about-hero__copy > p:not(.eyebrow),
.access-hero > p {
  max-width: 510px;
  margin: 25px 0 29px;
  color: #595a5b;
  font-size: 17px;
  line-height: 1.7;
}
.page-hero__image {
  position: relative;
  margin: -14px -30px -39px 0;
  overflow: hidden;
  border: 1px solid #e8ded2;
  border-radius: 15px 0 0 0;
  box-shadow: -18px 24px 45px #59463117;
}
.page-hero__image img {
  display: block;
  width: 100%;
  height: auto;
}
.product-intro {
  display: grid;
  grid-template-columns: 270px minmax(0, 580px);
  gap: 48px;
  padding: 118px 0 60px;
}
.product-intro h2,
.product-proof h2,
.manifesto h2,
.about-story h2,
.access-panel h2,
.access-fit h2,
.faq h2 {
  font-size: clamp(34px, 3.6vw, 48px);
}
.product-intro > p:last-child {
  grid-column: 2;
  margin: -24px 0 0;
  color: #5a5b5b;
  font-size: 16px;
  line-height: 1.75;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  padding-bottom: 110px;
}
.product-card {
  min-height: 395px;
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid #e8dfd4;
  border-radius: 20px;
  background: #fffdf9;
}
.product-card--wide {
  grid-column: span 2;
  min-height: 418px;
  display: grid;
  grid-template-columns: minmax(270px, .8fr) minmax(340px, 1.2fr);
  gap: 45px;
  align-items: center;
}
.product-card--clay { background: #f8e8df; }
.product-card--sage { background: #edf0e8; }
.product-card--payments { background: #f4f0e8; }
.product-card__copy { position: relative; z-index: 1; max-width: 390px; }
.product-card__number {
  color: var(--clay-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}
.product-card h3 {
  margin: 17px 0 13px;
  font-size: clamp(23px, 2.3vw, 30px);
  line-height: 1.12;
  letter-spacing: -1px;
}
.product-card p { margin: 0; color: #5a5957; font-size: 15px; line-height: 1.7; }
.product-card a { display: inline-flex; gap: 9px; margin-top: 22px; color: var(--clay-deep); font-size: 14px; font-weight: 700; text-decoration: none; }
.product-card__visual { min-height: 250px; position: relative; }
.profile-preview {
  width: min(100%, 445px);
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  padding: 25px;
  border: 1px solid #e8e0d7;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 20px 42px #59463117;
}
.profile-preview__person { display: flex; align-items: center; gap: 12px; padding-bottom: 19px; border-bottom: 1px solid #eee7df; }
.profile-preview__person i { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: #e6b29c; color: #fff; font-size: 12px; font-style: normal; font-weight: 800; }
.profile-preview__person strong,
.profile-preview__person span { display: block; }
.profile-preview__person strong { font-size: 14px; }
.profile-preview__person span { margin-top: 3px; color: #807b75; font-size: 11px; }
.profile-preview__rows { display: grid; gap: 11px; padding-top: 18px; }
.profile-preview__rows span { display: flex; justify-content: space-between; color: #68655f; font-size: 12px; }
.profile-preview__rows b { color: #4e7057; font-size: 11px; }
.trip-stops { display: flex; align-items: center; gap: 14px; position: absolute; bottom: 59px; right: clamp(28px, 6vw, 76px); color: var(--clay-deep); font-size: 18px; font-weight: 800; letter-spacing: -.5px; }
.trip-stops i { display: block; width: clamp(48px, 9vw, 105px); height: 1px; position: relative; background: #bd876e; }
.trip-stops i:after { content: "✦"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: var(--clay); font-size: 14px; }
.supplier-preview { position: absolute; right: 42px; bottom: 48px; display: flex; align-items: center; gap: 13px; padding: 15px 18px; border: 1px solid #dce3d5; border-radius: 13px; background: #fffefa; box-shadow: 0 17px 30px #4c574411; }
.supplier-preview__mark { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 10px; background: #748569; color: #fff; font-size: 15px; font-weight: 800; }
.supplier-preview b,
.supplier-preview small { display: block; }
.supplier-preview b { font-size: 13px; }
.supplier-preview small { margin-top: 3px; color: #737a6d; font-size: 10px; }
.payment-preview { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding: 24px; border: 1px solid #e7ddd0; border-radius: 15px; background: #fffdf9; box-shadow: 0 20px 40px #59463112; }
.payment-preview small,
.payment-preview strong,
.payment-preview span { display: block; }
.payment-preview small { color: #77726d; font-size: 11px; }
.payment-preview strong { margin: 8px 0 5px; font-size: 28px; letter-spacing: -1px; }
.payment-preview span { color: #77726d; font-size: 11px; }
.payment-preview > b { padding: 8px 10px; border-radius: 999px; background: #e5efe3; color: #477253; font-size: 10px; white-space: nowrap; }
.product-proof { display: grid; grid-template-columns: minmax(280px, .78fr) minmax(450px, 1.22fr); gap: 95px; padding: 80px 0 112px; border-top: 1px solid var(--line); }
.product-proof__steps { display: grid; gap: 25px; }
.product-proof__steps article { display: grid; grid-template-columns: 44px 1fr; column-gap: 16px; }
.product-proof__steps b { grid-row: span 2; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 50%; background: #f8e8df; color: var(--clay-deep); font-size: 12px; }
.product-proof__steps h3 { margin: 0 0 6px; font-size: 16px; }
.product-proof__steps p { margin: 0; color: #64625f; font-size: 14px; line-height: 1.6; }
.about-hero { display: grid; grid-template-columns: minmax(0, .87fr) minmax(380px, 1.13fr); gap: clamp(42px, 8vw, 130px); align-items: center; padding: 60px 0 120px; }
.about-hero__image { margin: 0; position: relative; }
.about-hero__image img { display: block; width: 100%; height: 460px; object-fit: cover; border-radius: 19px; box-shadow: 0 20px 45px #59463116; }
.about-hero__image figcaption { position: absolute; bottom: 17px; left: 17px; max-width: 230px; padding: 11px 13px; border-radius: 9px; background: #fffdf9e8; color: #5f5c58; font-size: 11px; line-height: 1.4; }
.manifesto { display: grid; grid-template-columns: 270px minmax(0, 1fr); gap: 48px; padding: 78px 0 104px; border-top: 1px solid var(--line); }
.manifesto__body { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 35px; padding-top: 4px; }
.manifesto__body p { margin: 0; color: #5d5b58; font-size: 16px; line-height: 1.8; }
.principles { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; padding-bottom: 112px; }
.principles article { padding: 31px; border-radius: 16px; background: #fffdf9; border: 1px solid #e9e1d8; }
.principles span { color: var(--clay-deep); font-size: 12px; font-weight: 800; letter-spacing: .12em; }
.principles h3 { margin: 31px 0 12px; font-size: 21px; letter-spacing: -.6px; }
.principles p { margin: 0; color: #62605c; font-size: 14px; line-height: 1.7; }
.about-story { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .9fr); align-items: center; gap: clamp(45px, 8vw, 115px); padding: 82px 0 114px; border-top: 1px solid var(--line); }
.about-story__image { overflow: hidden; border-radius: 18px; box-shadow: 0 20px 45px #59463116; }
.about-story__image img { display: block; width: 100%; min-height: 370px; object-fit: cover; }
.about-story > div > p:not(.eyebrow) { max-width: 450px; margin: 23px 0; color: #5c5b58; font-size: 16px; line-height: 1.75; }
.access-hero { max-width: 860px; padding: 76px 0 98px; text-align: center; }
.access-hero .eyebrow { margin-bottom: 22px; }
.access-hero > p { margin: 24px auto 27px; }
.access-hero small { display: block; margin-top: 19px; color: #77736e; font-size: 12px; }
.access-panel { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .88fr); gap: clamp(44px, 8vw, 125px); padding: clamp(42px, 6vw, 78px); border-radius: 22px; background: #f0f1e9; }
.access-panel__main > p:not(.eyebrow) { max-width: 520px; margin: 23px 0 0; color: #5e615c; font-size: 16px; line-height: 1.75; }
.access-panel__steps { display: grid; align-content: center; gap: 24px; }
.access-panel__steps article { display: flex; gap: 15px; align-items: flex-start; }
.access-panel__steps b { display: grid; flex: 0 0 auto; place-items: center; width: 29px; height: 29px; border-radius: 50%; background: #829176; color: #fff; font-size: 11px; }
.access-panel__steps h3 { margin: 1px 0 5px; font-size: 15px; }
.access-panel__steps p { margin: 0; color: #63675f; font-size: 13px; }
.access-fit { display: grid; grid-template-columns: minmax(280px, .7fr) minmax(450px, 1.3fr); gap: 80px; padding: 112px 0; }
.access-fit__cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.access-fit__cards article { padding: 30px; border: 1px solid #e8dfd4; border-radius: 16px; background: #fffdf9; }
.access-fit__cards span { color: var(--clay-deep); font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.access-fit__cards h3 { margin: 19px 0 12px; font-size: 20px; line-height: 1.18; letter-spacing: -.5px; }
.access-fit__cards p { margin: 0; color: #63605b; font-size: 14px; line-height: 1.7; }
.faq { display: grid; grid-template-columns: minmax(280px, .72fr) minmax(450px, 1.28fr); gap: 88px; padding: 84px 0 120px; border-top: 1px solid var(--line); }
.faq__list { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { display: flex; justify-content: space-between; gap: 20px; padding: 21px 0; cursor: pointer; color: var(--ink); font-size: 16px; font-weight: 700; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: var(--clay); font-size: 20px; font-weight: 400; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 560px; margin: -3px 0 22px; color: #605e5a; font-size: 14px; line-height: 1.7; }
@media (max-width: 900px) {
  .shell {
    width: min(100% - 40px, 620px);
  }
  .page-hero,
  .about-hero,
  .access-hero {
    margin-top: 18px;
  }
  .page-hero {
    grid-template-columns: 1fr;
    padding: 48px 38px 0;
    gap: 38px;
  }
  .page-hero__image {
    margin: 0 -38px;
    border-radius: 14px 14px 0 0;
  }
  .product-intro,
  .product-proof,
  .manifesto,
  .access-fit,
  .faq {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .product-intro { padding: 80px 0 46px; }
  .product-intro > p:last-child { grid-column: auto; margin: 0; }
  .product-grid { padding-bottom: 80px; }
  .product-proof { padding: 65px 0 84px; }
  .about-hero { grid-template-columns: 1fr; gap: 42px; padding: 42px 0 78px; }
  .about-hero__image { max-width: 620px; }
  .manifesto { padding: 64px 0 74px; }
  .manifesto__body { grid-template-columns: 1fr; gap: 18px; }
  .principles { padding-bottom: 80px; }
  .about-story { grid-template-columns: 1fr; gap: 38px; padding: 64px 0 78px; }
  .access-hero { padding: 55px 0 72px; }
  .access-panel { grid-template-columns: 1fr; gap: 42px; }
  .access-fit { gap: 36px; padding: 78px 0; }
  .faq { gap: 34px; padding: 62px 0 80px; }
  .site-header {
    min-height: 72px;
  }
  .site-nav {
    display: none;
  }
  .legal {
    padding: 34px 0 60px;
  }
  .hero {
    width: calc(100% - 40px);
    margin-top: 20px;
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__copy {
    padding: 32px 0 65px;
  }
  .hero__content {
    padding-top: 56px;
  }
  .hero__image {
    display: none;
  }
  .hero--waitlist .hero__copy {
    padding: 32px 0 48px;
  }
  .hero--waitlist .hero__content {
    padding-top: 24px;
  }
  .journey-line {
    width: 360px;
    bottom: 10px;
  }
  .product-card--wide {
    grid-template-columns: 1fr;
  }
  .feature-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }
  .feature-strip article:nth-child(2n) {
    border: 0;
  }
  .feature-detail__row,
  .feature-detail__row:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 22px;
    text-align: center;
  }
  .feature-detail__row:nth-child(even) .feature-detail__icon {
    order: 0;
  }
  .feature-detail__row--product {
    grid-template-columns: 1fr !important;
  }
  .feature-detail__row--product .feature-detail__visual {
    order: 0;
  }
  .feature-detail__copy > p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }
  .workflow {
    grid-template-columns: 1fr;
    padding-top: 40px;
    gap: 35px;
  }
  .experience {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 8px 0 70px;
  }
  .experience__image {
    min-height: 330px;
  }
  .workflow__copy {
    max-width: 540px;
  }
  .audience__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .audience__card {
    border-radius: 16px;
  }
  .audience__image {
    height: 210px;
  }
  .audience__card-content {
    padding: 26px;
  }
  .cta {
    padding: 42px 45px;
    border-radius: 20px;
    gap: 25px;
    flex-wrap: wrap;
  }
  .cta__plane {
    right: 22px;
  }
  .app-preview__body {
    min-height: 300px;
  }
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 520px) {
  .shell {
    width: calc(100% - 32px);
  }
  .site-header {
    width: calc(100% - 32px);
    min-height: 66px;
  }
  .site-header__brand img {
    width: 133px;
  }
  .site-header__login {
    display: none;
  }
  .site-header__cta {
    padding: 9px 11px;
    font-size: 12px;
  }
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero {
    width: calc(100% - 32px);
    margin-top: 16px;
    border-radius: 18px;
  }
  .page-hero,
  .about-hero,
  .access-hero {
    margin-top: 10px;
  }
  .page-hero { padding: 35px 24px 0; border-radius: 18px; }
  .page-hero h1,
  .about-hero h1,
  .access-hero h1 { font-size: 42px; letter-spacing: -1.8px; }
  .page-hero__lede,
  .about-hero__copy > p:not(.eyebrow),
  .access-hero > p { font-size: 15px; }
  .page-hero__image { margin: 0 -24px; }
  .product-intro { padding: 62px 0 38px; }
  .product-intro h2,
  .product-proof h2,
  .manifesto h2,
  .about-story h2,
  .access-panel h2,
  .access-fit h2,
  .faq h2 { font-size: 33px; letter-spacing: -1.5px; }
  .product-grid { grid-template-columns: 1fr; gap: 16px; padding-bottom: 63px; }
  .product-card,
  .product-card--wide { grid-column: auto; min-height: 350px; padding: 28px; }
  .product-card--wide { gap: 15px; }
  .product-card__visual { min-height: 205px; }
  .profile-preview { position: relative; top: auto; right: auto; transform: none; padding: 19px; }
  .trip-stops { right: 29px; bottom: 35px; }
  .supplier-preview { left: 28px; right: auto; bottom: 30px; }
  .payment-preview { padding: 17px; }
  .payment-preview strong { font-size: 23px; }
  .product-proof { padding: 52px 0 64px; }
  .product-proof__steps { gap: 20px; }
  .about-hero { padding: 30px 0 62px; }
  .about-hero__image img { height: 330px; }
  .manifesto { padding: 52px 0 62px; }
  .principles { grid-template-columns: 1fr; gap: 12px; padding-bottom: 62px; }
  .principles article { padding: 25px; }
  .principles h3 { margin-top: 20px; }
  .about-story { padding: 51px 0 62px; }
  .about-story__image img { min-height: 280px; }
  .access-hero { padding: 42px 0 55px; }
  .access-panel { padding: 32px 24px; border-radius: 18px; }
  .access-fit { padding: 63px 0; }
  .access-fit__cards { grid-template-columns: 1fr; }
  .faq { padding: 52px 0 64px; }
  .brand {
    width: 145px;
  }
  .hero h1 {
    font-size: 50px;
  }
  .hero__content > p {
    font-size: 16px;
  }
  .waitlist-form {
    padding: 19px;
  }
  .waitlist-form__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .waitlist-form button {
    align-self: stretch;
  }
  .trust-list {
    display: grid;
    gap: 11px;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .button {
    padding: 15px 18px;
  }
  .journey-line {
    width: 280px;
  }
  .feature-strip {
    padding: 34px 0;
    grid-template-columns: 1fr;
  }
  .feature-strip article {
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px;
  }
  .feature-strip article:last-child {
    border: 0;
  }
  .feature-detail__icon {
    height: 96px;
    width: 96px;
  }
  .feature-detail__icon svg {
    width: 44px;
    height: 44px;
  }
  .feature-detail__copy h3 {
    font-size: 21px;
  }
  .workflow h2,
  .experience h2,
  .cta h2 {
    font-size: 36px;
  }
  .experience__image {
    min-height: 260px;
  }
  .app-preview {
    margin: 0 -16px;
    border-radius: 12px;
  }
  .app-preview__body {
    grid-template-columns: 84px 1fr;
  }
  .app-preview nav {
    font-size: 8px;
    padding: 10px 6px;
  }
  .app-preview nav i {
    display: none;
  }
  .dashboard {
    padding: 12px;
  }
  .stat-row {
    gap: 5px;
  }
  .stat-row > div {
    padding: 7px;
  }
  .stat-row b {
    font-size: 13px;
  }
  .chart-row {
    grid-template-columns: 1fr;
  }
  .departures {
    display: none;
  }
  .cta {
    padding: 37px 25px;
  }
  .cta p {
    font-size: 14px;
  }
  footer {
    font-size: 11px;
    line-height: 2;
  }
footer i {
    margin: 0 8px;
  }
}

/* Final responsive and form polish: guard content sizing at every breakpoint. */
html, body { max-width: 100%; overflow-x: clip; }
img, svg { max-width: 100%; }
.form-status { min-height: 1.35em; margin: 0; color: #685f57; font-size: 14px; font-weight: 600; line-height: 1.5; }
.form-status--success { color: #4f7458; }
.form-status--error { color: #a24730; }
.legal__contents { display: flex; flex-wrap: wrap; gap: 9px 14px; margin: 0 0 34px; padding: 15px 17px; border: 1px solid #e7ddd2; border-radius: 12px; background: #fffaf5; }
.legal__contents span { width: 100%; color: #7b7167; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.legal__contents a { font-size: 12px; }
.waitlist-form input[type="text"], .waitlist-form input[type="email"], .waitlist-form select { width: 100%; max-width: 100%; }
.contact-expectations { max-width: 470px; display: grid; gap: 10px; margin-top: 31px; padding: 20px 22px; border: 1px solid #e6ddd2; border-radius: 15px; background: #fffaf4; }
.contact-expectations strong { color: var(--clay-deep); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.contact-expectations ol { display: grid; gap: 9px; margin: 0; padding-left: 20px; color: #625d57; font-size: 13px; line-height: 1.5; }
.contact-form[aria-busy="true"] { opacity: .72; }
.manifesto { grid-template-columns: minmax(220px, .62fr) minmax(0, 1.38fr); gap: clamp(36px, 6vw, 88px); }
.manifesto__body { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 4vw, 52px); max-width: 880px; }
@media (min-width: 901px) { .manifesto__body { grid-column: 2; } }
.tour-jump a:focus-visible, .site-nav a:focus-visible, .text-link:focus-visible { outline: 2px solid var(--clay); outline-offset: 4px; border-radius: 3px; }

@media (max-width: 520px) {
  .hero--waitlist, .contact-hero, .tour-hero, .landing-hero, .legal { min-width: 0; max-width: 100%; }
  .hero--waitlist *, .contact-hero *, .tour-hero *, .landing-hero *, .legal * { min-width: 0; }
  .hero--waitlist .hero__copy { width: 100%; padding: 32px 0 42px; }
  .hero--waitlist .hero__content { width: 100%; max-width: none; padding-top: 14px; }
  .hero--waitlist .hero__image { display: none; }
  .waitlist-form, .contact-form { width: 100%; max-width: none; }
  .waitlist-form { margin-top: 24px; }
  .waitlist-form button, .contact-form .button { width: 100%; justify-content: center; }
  .contact-hero { gap: 29px; padding: 49px 0 64px; }
  .contact-hero h1 { max-width: 100%; font-size: 42px; letter-spacing: -2.1px; overflow-wrap: anywhere; }
  .contact-hero > div > p:not(.eyebrow) { font-size: 15px; }
  .contact-expectations { margin-top: 25px; padding: 18px; }
  .tour-jump { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 17px 0; }
  .tour-jump a { min-width: 0; padding: 11px 9px; border: 1px solid #e4dcd2; border-radius: 8px; background: #fffaf4; font-size: 9px; line-height: 1.35; }
  .tour-hero__map { max-width: 290px; }
  .legal { width: calc(100% - 32px); padding-top: 29px; }
  .legal__contents { gap: 8px 12px; padding: 14px; }
  .legal h1 { overflow-wrap: anywhere; }
  .landing-hero__copy, .tour-hero > div { min-width: 0; }
  .hero-proof { gap: 9px; }
  .hero-proof span { overflow-wrap: anywhere; }
}

/* Editorial visual expansion for the invitation and conversation routes. */
.access-hero { max-width: none; min-height: 550px; display: grid; grid-template-columns: minmax(0, .92fr) minmax(410px, 1.08fr); align-items: center; gap: clamp(46px, 8vw, 130px); padding: clamp(48px, 7vw, 94px); overflow: hidden; border: 1px solid #e8ded2; border-radius: 25px; background: linear-gradient(115deg, #f7eee5 0%, #fbf8f2 56%, #edf0e9 100%); text-align: left; }
.access-hero__copy { position: relative; z-index: 2; max-width: 560px; }
.access-hero__copy .eyebrow { margin-bottom: 21px; }
.access-hero__copy > p { margin: 24px 0 28px; }
.access-hero__copy small { margin-top: 18px; }
.access-hero__art { position: relative; min-height: 405px; margin: 0; overflow: hidden; border: 1px solid #e7ddd0; border-radius: 19px; background: #e7ded2; box-shadow: 0 26px 50px rgba(87, 65, 48, .13); }
.access-hero__art:after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(47,40,33,.22), transparent 48%), linear-gradient(0deg, rgba(47,40,33,.26), transparent 42%); pointer-events: none; }
.access-hero__art img { display: block; width: 100%; height: 100%; min-height: 405px; object-fit: cover; object-position: center; }
.access-hero__art figcaption { position: absolute; z-index: 2; right: 20px; bottom: 19px; display: grid; gap: 3px; max-width: 220px; padding: 14px 17px; border: 1px solid rgba(255,255,255,.5); border-radius: 12px; background: rgba(255,253,249,.92); box-shadow: 0 14px 26px rgba(52,38,29,.12); }
.access-hero__art figcaption span { color: var(--clay-deep); font-family: 'DM Mono', monospace; font-size: 9px; font-weight: 700; letter-spacing: .07em; }
.access-hero__art figcaption b { font-size: 12px; }
.access-hero__art figcaption small { color: #6e6861; font-size: 10px; line-height: 1.45; }
.access-hero__route { position: absolute; z-index: 2; top: 27%; left: -7%; width: 68%; height: 34%; border-top: 1px dashed rgba(255,255,255,.8); border-radius: 50%; transform: rotate(17deg); }
.access-hero__pin { position: absolute; z-index: 2; display: block; width: 13px; height: 13px; border: 3px solid #fffaf4; border-radius: 50%; background: var(--clay); box-shadow: 0 0 0 5px rgba(198,102,65,.2); }
.access-hero__pin--one { top: 35%; left: 28%; }.access-hero__pin--two { top: 48%; left: 60%; background: #819174; box-shadow: 0 0 0 5px rgba(129,145,116,.2); }
.access-panel__signal { display: flex; align-items: center; gap: 10px; margin-top: 33px; color: #6f8065; }
.access-panel__signal i { display: grid; width: 29px; height: 29px; place-items: center; border: 1px solid #b7c1ae; border-radius: 50%; background: #f8faf5; font-family: 'DM Mono', monospace; font-size: 9px; font-style: normal; }
.access-panel__signal span { width: 52px; height: 1px; border-top: 1px dashed #9ca99a; }
.contact-story { position: relative; max-width: 470px; margin: 31px 0 0; overflow: hidden; border: 1px solid #e4d9cc; border-radius: 16px; background: #ece5dc; box-shadow: 0 16px 32px rgba(76,58,42,.08); }
.contact-story:after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(43,34,27,.33), transparent 48%); pointer-events: none; }
.contact-story img { display: block; width: 100%; height: 220px; object-fit: cover; object-position: center 65%; }
.contact-story figcaption { position: absolute; z-index: 2; right: 13px; bottom: 12px; left: 13px; display: flex; align-items: center; justify-content: space-between; padding: 11px 13px; border: 1px solid rgba(255,255,255,.5); border-radius: 9px; background: rgba(255,253,249,.9); color: #57483e; font-size: 11px; font-weight: 700; }
.contact-story figcaption i { color: var(--clay-deep); font-size: 17px; font-style: normal; }

@media (max-width: 900px) {
  .access-hero { grid-template-columns: 1fr; gap: 38px; padding: 52px 44px 0; }
  .access-hero__copy { max-width: 620px; }
  .access-hero__art { min-height: 370px; margin: 0 -44px; border-radius: 0; border-right: 0; border-bottom: 0; border-left: 0; }
  .access-hero__art img { min-height: 370px; }
}

@media (max-width: 520px) {
  .access-hero { width: calc(100% - 32px); min-height: 0; gap: 31px; padding: 40px 23px 0; border-radius: 20px; }
  .access-hero h1 { font-size: 42px; letter-spacing: -2px; }
  .access-hero__copy > p { font-size: 15px; }
  .access-hero__art { min-height: 276px; margin: 0 -23px; }
  .access-hero__art img { min-height: 276px; }
  .access-hero__art figcaption { right: 14px; bottom: 14px; max-width: 205px; padding: 11px 12px; }
  .access-hero__route { top: 20%; width: 78%; }
  .access-panel__signal { margin-top: 25px; }
  .access-panel__signal span { flex: 1; width: auto; }
  .contact-story { margin-top: 25px; }
  .contact-story img { height: 207px; }
}

.tour-hero { display: grid; grid-template-columns: minmax(380px, .95fr) minmax(440px, 1.05fr); align-items: center; gap: clamp(40px, 8vw, 135px); min-height: 550px; padding: 73px clamp(36px, 6vw, 92px); border: 1px solid #e9e0d5; border-radius: 25px; background: #f7f1e8; }.tour-hero h1, .product-close h2 { margin: 0; font-family: var(--serif); font-size: clamp(46px, 4.8vw, 68px); font-weight: 700; letter-spacing: -3px; line-height: 1.01; }.tour-hero h1 span, .product-close h2 span { color: var(--clay); }.tour-hero > div > p:not(.eyebrow) { max-width: 500px; margin: 24px 0 29px; color: #5d5b57; font-size: 16px; line-height: 1.72; }.tour-hero__map { position: relative; width: min(430px, 100%); aspect-ratio: 1; justify-self: end; border: 1px dashed #d6bdab; border-radius: 50%; background: radial-gradient(circle at center, #fffdf9 0 25%, transparent 25.5%), radial-gradient(circle at center, transparent 0 52%, #eadfd2 52.5% 53%, transparent 53.5%); }.tour-map__centre { position: absolute; top: 50%; left: 50%; display: grid; place-items: center; width: 126px; height: 126px; transform: translate(-50%, -50%); border-radius: 50%; background: var(--clay); color: #fff; text-align: center; box-shadow: 0 12px 22px #bd604133; }.tour-map__centre b { font-size: 22px; line-height: .88; letter-spacing: -1px; }.tour-map__centre small { margin-top: 8px; color: #fff0e8; font-size: 9px; line-height: 1.3; }.tour-map__point { position: absolute; display: grid; place-items: center; width: 76px; height: 76px; border: 1px solid #e4d8cc; border-radius: 50%; background: #fffdf9; color: #5d5a56; font-size: 12px; font-weight: 800; box-shadow: 0 9px 16px #5946310d; }.tour-map__point--one { top: 4%; left: 6%; }.tour-map__point--two { right: -1%; bottom: 17%; }.tour-map__point--three { bottom: -1%; left: 19%; }.tour-map__line { position: absolute; height: 1px; background: #c8967f; transform-origin: left; }.tour-map__line--one { top: 27%; left: 22%; width: 121px; transform: rotate(23deg); }.tour-map__line--two { right: 20%; bottom: 34%; width: 104px; transform: rotate(125deg); }
.tour-jump { display: flex; gap: 25px; padding: 23px 0; border-bottom: 1px solid var(--line); }.tour-jump a { color: #726c65; font-family: 'DM Mono', monospace; font-size: 10px; font-weight: 500; letter-spacing: .02em; text-decoration: none; text-transform: uppercase; }.tour-jump a:hover { color: var(--clay-deep); }
.feature-tour { display: grid; grid-template-columns: minmax(290px, .75fr) minmax(460px, 1.25fr); align-items: center; gap: clamp(50px, 9vw, 145px); padding: 115px 0; border-bottom: 1px solid var(--line); }.feature-tour--reverse .feature-tour__copy { order: 2; }.feature-tour--reverse .feature-tour__visual { order: 1; }.feature-tour h2 { margin: 0; font-family: var(--serif); font-size: clamp(34px, 3.5vw, 49px); font-weight: 700; letter-spacing: -2.4px; line-height: 1.05; }.feature-tour h2 span { color: var(--clay); }.feature-tour__copy > p:not(.eyebrow) { margin: 22px 0; color: #625e58; font-size: 15px; line-height: 1.75; }.feature-bullets { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; color: #4d4b47; font-size: 13px; }.feature-bullets li { display: flex; align-items: center; gap: 9px; }.feature-bullets li:before { content: "✓"; display: grid; width: 18px; height: 18px; place-items: center; border-radius: 50%; background: #e8eee2; color: #547058; font-size: 10px; font-weight: 800; }.feature-tour__visual { min-height: 356px; display: grid; place-items: center; }.feature-tour__visual--client { padding: 43px; border-radius: 20px; background: #f9e9e0; }.client-record { width: min(100%, 450px); padding: 26px; border: 1px solid #eadfd6; border-radius: 15px; background: #fffdf9; box-shadow: 0 23px 45px #6d4d3814; }.client-record__head { display: flex; align-items: center; gap: 12px; padding-bottom: 22px; border-bottom: 1px solid #eee6de; }.client-record__head i { display: grid; width: 43px; height: 43px; place-items: center; border-radius: 50%; background: #e5a286; color: white; font-size: 12px; font-style: normal; font-weight: 800; }.client-record__head strong, .client-record__head span { display: block; }.client-record__head strong { font-size: 14px; }.client-record__head span { margin-top: 3px; color: #807a74; font-size: 11px; }.client-record__head b { margin-left: auto; padding: 6px 9px; border-radius: 999px; background: #ebf1e6; color: #5a7458; font-size: 9px; }.client-record__items { display: grid; gap: 13px; padding-top: 21px; }.client-record__items span { display: flex; justify-content: space-between; color: #69645e; font-size: 12px; }.client-record__items em { color: #547058; font-size: 10px; font-style: normal; font-weight: 700; }.feature-tour__visual--screenshot { overflow: hidden; border-radius: 18px; background: #f4f0e9; }.screen-frame { width: 100%; overflow: hidden; border: 1px solid #e7ded5; border-radius: 12px; background: #fff; box-shadow: 0 20px 38px #59463116; }.screen-frame__bar { display: flex; align-items: center; height: 35px; gap: 5px; padding: 0 13px; border-bottom: 1px solid #eee7df; color: #9b9187; }.screen-frame__bar span { width: 6px; height: 6px; border-radius: 50%; background: #e7d7c8; }.screen-frame__bar small { margin-left: 8px; color: #958c83; font-size: 9px; font-weight: 600; }.screen-frame img { display: block; width: 100%; height: auto; }.feature-tour__visual--commerce { padding: 39px; border-radius: 20px; background: #f2f3eb; }.commerce-panel { width: min(100%, 397px); padding: 27px; border: 1px solid #e0e4d9; border-radius: 15px; background: #fffdf9; box-shadow: 0 21px 38px #4d584611; }.commerce-panel__top { display: flex; justify-content: space-between; align-items: center; }.commerce-panel__top small { color: #7b766e; font-size: 11px; }.commerce-panel__top b { padding: 6px 9px; border-radius: 999px; background: #f7e9df; color: var(--clay-deep); font-size: 9px; }.commerce-panel > strong { display: block; margin: 17px 0 4px; font-size: 32px; letter-spacing: -1.4px; }.commerce-panel > span { color: #77716a; font-size: 11px; }.commerce-panel hr { margin: 22px 0 14px; border: 0; border-top: 1px solid #eee7df; }.commerce-panel__row { display: flex; justify-content: space-between; padding: 10px 0; color: #68635d; font-size: 12px; }.commerce-panel__row em { color: #5e795d; font-size: 11px; font-style: normal; font-weight: 700; }
.product-close { max-width: 850px; padding: 112px 0 130px; text-align: center; }.product-close h2 { font-size: clamp(42px, 4.5vw, 62px); }.product-close > p:not(.eyebrow) { max-width: 570px; margin: 23px auto 29px; color: #625e58; font-size: 16px; line-height: 1.7; }
@media (max-width: 900px) { .tour-hero { grid-template-columns: 1fr; gap: 43px; padding: 55px 45px; }.tour-hero__map { justify-self: center; }.tour-jump { flex-wrap: wrap; gap: 12px 18px; padding: 19px 0; }.feature-tour, .feature-tour--reverse { grid-template-columns: 1fr; gap: 38px; padding: 80px 0; }.feature-tour--reverse .feature-tour__copy, .feature-tour--reverse .feature-tour__visual { order: initial; }.feature-tour__visual { max-width: 650px; width: 100%; }.feature-tour--reverse .feature-tour__copy { order: 1; }.feature-tour--reverse .feature-tour__visual { order: 2; } }
@media (max-width: 520px) { .tour-hero { width: calc(100% - 32px); padding: 42px 24px; border-radius: 19px; }.tour-hero h1, .product-close h2 { font-size: 42px; letter-spacing: -2px; }.tour-hero > div > p:not(.eyebrow) { font-size: 15px; }.tour-hero__map { width: 290px; }.tour-map__centre { width: 93px; height: 93px; }.tour-map__centre b { font-size: 17px; }.tour-map__centre small { font-size: 7px; }.tour-map__point { width: 56px; height: 56px; font-size: 10px; }.tour-map__line--one { width: 79px; }.tour-map__line--two { width: 66px; }.tour-jump { gap: 17px; }.feature-tour { gap: 27px; padding: 62px 0; }.feature-tour h2 { font-size: 34px; letter-spacing: -1.7px; }.feature-tour__copy > p:not(.eyebrow) { font-size: 14px; }.feature-tour__visual { min-height: 278px; }.feature-tour__visual--client, .feature-tour__visual--commerce { padding: 23px; border-radius: 15px; }.client-record, .commerce-panel { padding: 20px; }.client-record__head b { display: none; }.client-record__items span { font-size: 11px; }.screen-frame__bar { height: 27px; }.screen-frame__bar small { font-size: 7px; }.product-close { padding: 75px 0 86px; }.product-close > p:not(.eyebrow) { font-size: 15px; } }

/* ========================================================================
   Product-forward public experience
   ======================================================================== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.public-page .site-header { position: sticky; top: 0; z-index: 20; min-height: 82px; }
.public-page .site-header:before { content: ""; position: absolute; inset: 0 -28px; z-index: -1; border-bottom: 1px solid transparent; background: rgba(251, 248, 242, .84); backdrop-filter: blur(16px); }
.site-menu-toggle { display: none; border: 0; background: transparent; color: var(--ink); cursor: pointer; }
.site-menu-toggle > span:not(.sr-only) { display: block; width: 21px; height: 1.5px; margin: 4px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.eyebrow--route { display: inline-flex; align-items: center; gap: 9px; }
.eyebrow--route:before { content: ""; width: 27px; height: 1px; background: var(--clay); }
.landing-hero { min-height: min(700px, calc(100vh - 105px)); display: grid; grid-template-columns: minmax(380px, .88fr) minmax(500px, 1.12fr); align-items: center; gap: clamp(42px, 7vw, 120px); padding: clamp(55px, 7vw, 100px) clamp(36px, 6vw, 100px); overflow: hidden; border: 1px solid #e9e0d5; border-radius: 28px; background: linear-gradient(122deg, #f8f1e7 0%, #faf6ef 53%, #eff0e8 100%); }
.landing-hero h1, .journey-overview h2, .founder-proof h2, .fit-section h2 { margin: 0; font-family: var(--serif); font-size: clamp(48px, 5vw, 74px); font-weight: 700; letter-spacing: -3.5px; line-height: .99; }
.landing-hero h1 span, .journey-overview h2 span, .founder-proof h2 span, .fit-section h2 span { color: var(--clay); }
.landing-hero__lede { max-width: 500px; margin: 27px 0 29px; color: #595a59; font-size: 17px; line-height: 1.72; }
.landing-hero__actions { display: flex; align-items: center; gap: 23px; }
.text-link { display: inline-flex; gap: 9px; align-items: center; color: var(--clay-deep); font-size: 14px; font-weight: 700; text-decoration: none; }
.text-link:hover, .journey-overview__link:hover { text-decoration: underline; }
.hero-proof { display: flex; gap: 24px; margin: 42px 0 0; padding: 19px 0 0; border-top: 1px solid #e3d9cc; list-style: none; }
.hero-proof li { display: grid; gap: 4px; min-width: 0; }
.hero-proof strong { color: var(--clay-deep); font-size: 12px; letter-spacing: .01em; }
.hero-proof span { color: #76726c; font-size: 10px; line-height: 1.35; }
.landing-hero__visual { position: relative; min-height: 430px; }
.product-window { position: absolute; z-index: 2; top: 50%; left: 50%; width: min(640px, 100%); overflow: hidden; transform: translate(-48%, -48%) rotate(-1.4deg); border: 1px solid #e8ded1; border-radius: 13px; background: #fff; box-shadow: 0 31px 65px rgba(75, 60, 45, .18); }
.product-window__bar { display: flex; align-items: center; height: 35px; gap: 5px; padding: 0 12px; border-bottom: 1px solid #eee8df; color: #9b9187; }
.product-window__bar span { width: 6px; height: 6px; border-radius: 50%; background: #e7d7c8; }.product-window__bar small { margin-left: 7px; font-size: 9px; font-weight: 600; }.product-window__bar b { margin-left: auto; color: #cf7653; font-size: 11px; }
.product-window img { display: block; width: 100%; height: auto; }
.hero-orbit { position: absolute; z-index: 0; width: 520px; height: 520px; border: 1px dashed #d6bba9; border-radius: 50%; opacity: .7; }.hero-orbit--one { top: -110px; right: -95px; }.hero-orbit--two { bottom: -220px; left: -110px; width: 410px; height: 410px; border-color: #b8c1a8; }
.hero-note { position: absolute; z-index: 3; display: flex; align-items: center; gap: 10px; padding: 12px 15px; border: 1px solid #ebe1d5; border-radius: 12px; background: rgba(255, 253, 249, .94); box-shadow: 0 16px 29px rgba(74, 58, 43, .13); }.hero-note small, .hero-note strong, .hero-note span { display: block; }.hero-note small { color: #8a8279; font-size: 9px; }.hero-note strong { margin: 3px 0; font-size: 12px; }.hero-note span { color: #66735f; font-size: 10px; }.hero-note i, .hero-note--status > span { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 9px; background: #edc2ad; color: #fff; font-size: 10px; font-style: normal; font-weight: 800; }.hero-note--client { right: -8px; bottom: 43px; }.hero-note--status { top: 48px; left: -5px; }.hero-note--status > span { background: #8da07f; }
.journey-overview { padding: 124px 0 115px; }.journey-overview__intro { display: grid; grid-template-columns: 240px minmax(0, 1fr) minmax(220px, .62fr); gap: 40px; align-items: start; }.journey-overview__intro .eyebrow { margin-top: 12px; }.journey-overview h2, .founder-proof h2, .fit-section h2 { font-size: clamp(34px, 3.5vw, 49px); letter-spacing: -2.5px; }.journey-overview__intro > p:last-child { margin: 10px 0 0; color: #64615d; font-size: 15px; line-height: 1.7; }
.journey-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 57px; }.journey-card { min-height: 365px; display: flex; flex-direction: column; padding: 31px; overflow: hidden; border: 1px solid #e7dfd5; border-radius: 18px; background: #fffdf9; }.journey-card--relationship { background: #fbf0e9; }.journey-card--trip { background: #f1f3ed; }.journey-card--commercial { background: #f7f2e8; }.journey-card__top { display: flex; justify-content: space-between; color: var(--clay-deep); font-family: 'DM Mono', monospace; font-size: 10px; letter-spacing: .03em; text-transform: uppercase; }.journey-card__top small { color: #817b74; font-size: 10px; }.journey-card h3 { max-width: 290px; margin: 43px 0 13px; font-size: 25px; letter-spacing: -1px; line-height: 1.08; }.journey-card p { max-width: 325px; margin: 0; color: #615f5b; font-size: 14px; line-height: 1.68; }.mini-profile, .mini-payment { display: flex; align-items: center; gap: 10px; margin-top: auto; padding: 14px; border: 1px solid #eadfd5; border-radius: 11px; background: rgba(255,255,255,.88); box-shadow: 0 9px 18px rgba(78, 57, 41, .05); }.mini-profile i { display: grid; width: 31px; height: 31px; place-items: center; border-radius: 50%; background: #e6a98c; color: #fff; font-size: 9px; font-style: normal; font-weight: 800; }.mini-profile b, .mini-profile span { display: block; }.mini-profile b { font-size: 11px; }.mini-profile span { margin-top: 3px; color: #758070; font-size: 9px; }.mini-profile em { margin-left: auto; color: #8b8278; font-size: 9px; font-style: normal; }.mini-itinerary { display: flex; align-items: center; justify-content: center; gap: 10px; margin: auto 0 21px; color: var(--clay-deep); font-family: 'DM Mono', monospace; font-size: 14px; font-weight: 500; }.mini-itinerary i { width: 44px; height: 1px; background: #bf9580; position: relative; }.mini-itinerary i:after { content: "✦"; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #cb6949; font-size: 10px; }.mini-payment { display: grid; gap: 3px; margin-top: auto; }.mini-payment span, .mini-payment em { color: #7a756e; font-size: 10px; font-style: normal; }.mini-payment b { color: #373735; font-size: 22px; letter-spacing: -1px; }.mini-payment em { color: #59785b; }.journey-overview__link { display: flex; justify-content: center; gap: 10px; margin-top: 35px; color: var(--clay-deep); font-size: 14px; font-weight: 700; text-decoration: none; }
.founder-proof { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .93fr); align-items: center; gap: clamp(55px, 8vw, 130px); padding: 85px 0; border-top: 1px solid var(--line); }.founder-proof__image { position: relative; overflow: hidden; border-radius: 18px; }.founder-proof__image:after { content: ""; position: absolute; inset: 0; background: linear-gradient(25deg, rgba(52,40,31,.24), transparent 52%); }.founder-proof__image img { display: block; width: 100%; min-height: 396px; object-fit: cover; }.founder-proof__copy > p:not(.eyebrow) { max-width: 500px; margin: 24px 0; color: #5e5b57; font-size: 16px; line-height: 1.75; }.founder-proof__signature { display: flex; justify-content: space-between; max-width: 470px; padding: 16px 0 0; border-top: 1px solid var(--line); color: var(--clay-deep); font-size: 12px; font-weight: 700; }.founder-proof__signature i { font-size: 19px; font-style: normal; }
.fit-section { padding: 85px 0 112px; border-top: 1px solid var(--line); }.fit-section__heading { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 40px; }.fit-section__heading .eyebrow { margin-top: 11px; }.fit-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; margin-top: 50px; }.fit-card { display: grid; grid-template-columns: 43% 57%; overflow: hidden; border: 1px solid #e7dfd5; border-radius: 17px; background: #fffdf9; color: inherit; text-decoration: none; transition: transform .2s ease, box-shadow .2s ease; }.fit-card:hover { transform: translateY(-3px); box-shadow: 0 20px 38px rgba(72, 55, 40, .09); }.fit-card img { width: 100%; height: 100%; min-height: 270px; object-fit: cover; }.fit-card > div { padding: 28px; }.fit-card span { color: var(--clay-deep); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }.fit-card h3 { margin: 16px 0 11px; font-size: 22px; letter-spacing: -.8px; line-height: 1.13; }.fit-card p { margin: 0; color: #64605b; font-size: 13px; line-height: 1.65; }.fit-card b { display: inline-block; margin-top: 23px; color: var(--clay-deep); font-size: 12px; }
.cta--open { margin-bottom: 24px; }.cta--open .eyebrow { color: #fff0e8; }.cta--open > div:first-child > p:last-child { max-width: 390px; color: #fff7f2; font-size: 14px; line-height: 1.6; }

@media (max-width: 900px) {
  .public-page .site-header { min-height: 72px; }.public-page .site-header:before { inset: 0 -20px; }
  .site-menu-toggle { display: block; order: 2; margin-left: auto; padding: 10px; }.site-header__actions { order: 3; margin-left: 0; }.site-header__login { display: none; }.site-nav { position: fixed; top: 72px; right: 20px; left: 20px; z-index: 30; display: grid; gap: 4px; padding: 13px; transform: translateY(-18px); border: 1px solid #e5dbcf; border-radius: 13px; visibility: hidden; background: rgba(255,253,249,.98); box-shadow: 0 20px 45px rgba(66,50,36,.14); opacity: 0; pointer-events: none; transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s; }.site-nav a { padding: 12px 11px; border-radius: 8px; }.site-nav a:hover, .site-nav a[aria-current="page"] { background: #f7eee5; }.site-menu-open .site-nav { visibility: visible; transform: translateY(0); opacity: 1; pointer-events: auto; transition-delay: 0s; }.site-menu-open .site-menu-toggle > span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }.site-menu-open .site-menu-toggle > span:nth-child(2) { opacity: 0; }.site-menu-open .site-menu-toggle > span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
  .landing-hero { min-height: auto; grid-template-columns: 1fr; gap: 40px; padding: 58px 44px 0; }.landing-hero__visual { min-height: 380px; }.product-window { width: min(630px, 94%); transform: translate(-50%, -50%) rotate(-1.4deg); }.journey-overview__intro { grid-template-columns: 1fr; gap: 18px; }.journey-overview__intro .eyebrow, .fit-section__heading .eyebrow { margin-top: 0; }.journey-overview__intro > p:last-child { margin-top: 0; max-width: 530px; }.journey-grid { grid-template-columns: 1fr; }.journey-card { min-height: 315px; }.founder-proof, .fit-section__heading { grid-template-columns: 1fr; gap: 30px; }.founder-proof__image { max-width: 610px; }.fit-grid { grid-template-columns: 1fr; }.fit-card { grid-template-columns: 37% 63%; max-width: 650px; }.fit-card img { min-height: 230px; }
}
@media (max-width: 520px) {
  .public-page .site-header { min-height: 65px; }.public-page .site-header:before { inset: 0 -16px; }.site-header__actions { gap: 0; }.site-header__cta { padding: 9px 10px; }.site-header__cta span { display: none; }.site-nav { top: 65px; right: 16px; left: 16px; }.landing-hero { width: calc(100% - 32px); padding: 43px 23px 0; border-radius: 20px; }.landing-hero h1 { font-size: 43px; letter-spacing: -2.3px; }.landing-hero__lede { margin: 21px 0 23px; font-size: 15px; }.landing-hero__actions { display: grid; gap: 17px; align-items: start; }.landing-hero__actions .button { width: 100%; }.hero-proof { gap: 13px; margin-top: 30px; }.hero-proof li { flex: 1; }.hero-proof strong { font-size: 10px; }.hero-proof span { font-size: 9px; }.landing-hero__visual { min-height: 278px; margin: 0 -10px; }.hero-orbit--one { width: 340px; height: 340px; top: -43px; right: -100px; }.hero-orbit--two { width: 280px; height: 280px; bottom: -124px; left: -85px; }.product-window { width: 94%; border-radius: 9px; }.product-window__bar { height: 26px; }.product-window__bar small { font-size: 7px; }.hero-note { padding: 8px 10px; gap: 7px; border-radius: 8px; }.hero-note i, .hero-note--status > span { width: 22px; height: 22px; border-radius: 6px; font-size: 8px; }.hero-note small { font-size: 7px; }.hero-note strong { font-size: 9px; }.hero-note span { font-size: 8px; }.hero-note--status { top: 25px; left: 0; }.hero-note--client { right: 0; bottom: 17px; }.journey-overview { padding: 75px 0 65px; }.journey-overview h2, .founder-proof h2, .fit-section h2 { font-size: 34px; letter-spacing: -1.7px; }.journey-grid { gap: 13px; margin-top: 34px; }.journey-card { min-height: 294px; padding: 24px; }.journey-card h3 { margin-top: 32px; font-size: 22px; }.journey-card p { font-size: 13px; }.journey-overview__link { margin-top: 25px; font-size: 13px; }.founder-proof { gap: 28px; padding: 62px 0; }.founder-proof__image img { min-height: 277px; }.founder-proof__copy > p:not(.eyebrow) { font-size: 15px; }.fit-section { padding: 62px 0 72px; }.fit-grid { gap: 15px; margin-top: 32px; }.fit-card { grid-template-columns: 1fr; }.fit-card img { height: 180px; min-height: 0; }.fit-card > div { padding: 23px; }.fit-card h3 { font-size: 21px; }.cta--open { margin-bottom: 8px; }.cta--open .eyebrow { display: none; }
}

/* Enforce the mobile content boundary after every legacy page rule. */
@media (max-width: 520px) {
  .hero--waitlist, .contact-hero, .tour-hero, .landing-hero, .legal { min-width: 0; max-width: 100%; }
  .hero--waitlist *, .contact-hero *, .tour-hero *, .landing-hero *, .legal * { min-width: 0; }
  .hero--waitlist .hero__copy { width: 100%; padding: 32px 0 42px; }
  .hero--waitlist .hero__content { width: 100%; max-width: none; padding-top: 14px; }
  .hero--waitlist .hero__image { display: none; }
  .waitlist-form, .contact-form { width: 100%; max-width: none; }
  .waitlist-form { margin-top: 24px; }
  .waitlist-form button, .contact-form .button { width: 100%; justify-content: center; }
  .contact-hero { gap: 29px; padding: 49px 0 64px; }
  .contact-hero h1 { max-width: 100%; font-size: 42px; letter-spacing: -2.1px; overflow-wrap: anywhere; }
  .contact-hero > div > p:not(.eyebrow) { font-size: 15px; }
  .contact-expectations { margin-top: 25px; padding: 18px; }
  .tour-jump { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 17px 0; }
  .tour-jump a { min-width: 0; padding: 11px 9px; border: 1px solid #e4dcd2; border-radius: 8px; background: #fffaf4; font-size: 9px; line-height: 1.35; }
  .tour-hero__map { max-width: 290px; }
  .legal { width: calc(100% - 32px); padding-top: 29px; }
  .legal h1 { overflow-wrap: anywhere; }
  .landing-hero__copy, .tour-hero > div { min-width: 0; }
  .hero-proof { gap: 9px; }
  .hero-proof span { overflow-wrap: anywhere; }
}
