
:root {
  --teal: #0F9BA1;
  --teal-dark: #0A7E87;
  --brass: #B8894A;
  --brass-dark: #8D672F;
  --warm: #FAF9F6;
  --warm-deep: #F3EEE7;
  --ink: #152125;
  --muted: #627075;
  --line: #E6EBEC;
  --surface: #F7F9F9;
  --white: #FFFFFF;
  --shadow: 0 24px 70px rgba(17, 39, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

main {
  overflow: hidden;
}

.hero {
  width: min(1220px, calc(100% - 48px));
  min-height: 610px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.25fr);
  gap: 72px;
  align-items: center;
  padding: 58px 0 50px;
}

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

.eyebrow,
.section-kicker,
.tour-label {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-logo {
  display: block;
  width: min(100%, 390px);
  height: auto;
  margin-bottom: 6px;
}

.lead {
  max-width: 520px;
  margin: 30px 0 0;
  color: #39484D;
  font-size: clamp(1.22rem, 2vw, 1.65rem);
  line-height: 1.55;
}

.price {
  margin: 30px 0 0;
  font-size: 1rem;
  font-weight: 650;
}

.price span {
  margin: 0 7px;
  color: #99A4A7;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 28px;
  padding: 0 24px;
  border-radius: 12px;
  color: var(--white);
  background: var(--teal);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(25, 116, 122, 0.20);
  transition:
    transform 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.cta:hover {
  transform: translateY(-1px);
  background: var(--teal-dark);
  box-shadow: 0 14px 30px rgba(25, 116, 122, 0.24);
}

.cta:focus-visible {
  outline: 3px solid rgba(25, 116, 122, 0.25);
  outline-offset: 4px;
}

.hero-media {
  min-width: 0;
}

.video-frame {
  overflow: hidden;
  border: 1px solid rgba(20, 42, 46, 0.09);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.video-frame video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #EEF2F2;
}

.feature-zone {
  background:
    linear-gradient(
      180deg,
      #FFFFFF 0%,
      #FCFBF8 10%,
      var(--warm) 28%,
      var(--warm) 100%
    );
  border-top: 0;
  border-bottom: 1px solid rgba(184, 137, 74, 0.12);
  padding-bottom: 92px;
}

.intro,
.tour-intro {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.intro {
  padding: 74px 0 72px;
}

.tour-intro {
  padding: 88px 0 72px;
}

.intro h2,
.tour-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.intro p:last-child,
.tour-intro p:last-child {
  max-width: 700px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.feature-grid {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: 0;
}

.feature-card,
.tour-shot img {
  border-radius: 22px;
}

.feature-card {
  min-height: 318px;
  padding: 34px;
  border: 1px solid rgba(184, 137, 74, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 249, 246, 0.98));
  box-shadow: 0 10px 30px rgba(17, 39, 43, 0.035);
}

.feature-number {
  margin-bottom: 44px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.feature-card h3,
.tour-copy h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.feature-card p,
.tour-copy p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.feature-tags span,
.capability-list span {
  border: 1px solid rgba(25, 116, 122, 0.16);
  color: var(--teal-dark);
  background: rgba(25, 116, 122, 0.055);
}

.feature-tags span {
  padding: 8px 11px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.capabilities {
  width: min(1040px, calc(100% - 48px));
  margin: 0 auto;
  padding: 10px 0 140px;
  text-align: center;
}

.capability-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.capability-list span {
  padding: 12px 15px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 650;
  box-shadow: 0 6px 18px rgba(17, 39, 43, 0.04);
}


.sold-highlight {
  width: min(1180px, calc(100% - 48px));
  margin: 92px auto 8px;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: center;
  padding: 44px;
  border: 1px solid rgba(184, 137, 74, 0.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(184, 137, 74, 0.10), transparent 34%),
    linear-gradient(135deg, #FAF9F6, #FFFFFF 62%);
  box-shadow: 0 24px 70px rgba(17, 39, 43, 0.08);
}

.sold-eyebrow {
  margin: 0 0 16px;
  color: var(--brass-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sold-highlight h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.sold-highlight-copy > p:not(.sold-eyebrow) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.sold-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 26px;
}

.sold-points span {
  padding: 9px 12px;
  border: 1px solid rgba(184, 137, 74, 0.22);
  border-radius: 999px;
  color: #6E532D;
  background: rgba(184, 137, 74, 0.08);
  font-size: 0.8rem;
  font-weight: 750;
}

.sold-highlight-shot img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(20, 42, 46, 0.08);
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(17, 39, 43, 0.11);
}

.tour {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: 140px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.tour-item {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 36px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(247, 249, 249, 0.92));
}

.tour-item-reverse {
  grid-template-columns: minmax(0, 1.28fr) minmax(0, 0.72fr);
}

.tour-item-reverse .tour-copy {
  order: 2;
}

.tour-item-reverse .tour-shot {
  order: 1;
}

.tour-copy {
  padding: 10px 4px 10px 8px;
}

.tour-label {
  margin-bottom: 16px;
  color: var(--brass-dark);
}

.tour-shot {
  min-width: 0;
}

.tour-shot img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(20, 42, 46, 0.08);
  background: var(--surface);
  box-shadow: 0 22px 60px rgba(17, 39, 43, 0.10);
}






.hero-download-note {
  margin: 13px 0 0;
  color: #7A878B;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.local-first-section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 16px;
}

.local-first-kicker {
  width: min(760px, 100%);
  margin-bottom: 42px;
}

.local-first-kicker h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4.7vw, 3.55rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.local-first-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.local-first-item {
  min-height: 245px;
  padding: 28px;
  border: 1px solid rgba(184, 137, 74, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(250, 249, 246, 0.92), rgba(255, 255, 255, 0.99));
}

.local-first-number {
  display: block;
  margin-bottom: 38px;
  color: var(--brass);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.local-first-item h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.local-first-item p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.68;
}

.local-first-note {
  margin: 18px 0 0;
  color: #879195;
  font-size: 0.8rem;
  line-height: 1.6;
}

.requirements-section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0 34px;
}

.requirements-copy {
  width: min(720px, 100%);
  margin: 0 0 44px;
}

.requirements-copy h2,
.faq-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.042em;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.requirement-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #FFFFFF;
}

.requirement-number {
  color: var(--brass);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.requirement-item h3 {
  margin: 0;
  font-size: 1.06rem;
  letter-spacing: -0.015em;
}

.requirement-item p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-section {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 108px 0 52px;
}

.faq-intro {
  width: min(720px, 100%);
  margin: 0 0 42px;
}

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

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

.faq-item summary {
  position: relative;
  padding: 24px 44px 24px 0;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 760;
  line-height: 1.45;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 20px;
  color: var(--teal);
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  max-width: 760px;
  margin: -6px 0 24px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.pricing-section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0 130px;
}

.pricing-intro {
  width: min(760px, 100%);
  margin: 0 auto 54px;
  text-align: center;
}

.pricing-intro h2 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 3.8rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.pricing-intro > p:last-child {
  max-width: 650px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  padding: 38px;
  border: 1px solid rgba(25, 116, 122, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(25, 116, 122, 0.07), transparent 34%),
    linear-gradient(180deg, #FFFFFF, #F7F9F9);
  box-shadow: 0 22px 70px rgba(17, 39, 43, 0.08);
}

.pricing-card-trial {
  border-color: rgba(25, 116, 122, 0.34);
  box-shadow: 0 26px 80px rgba(17, 39, 43, 0.11);
}

.pricing-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--brass-dark);
  background: rgba(184, 137, 74, 0.12);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-name {
  margin: 0;
  color: var(--ink);
  font-size: 1.55rem;
  font-weight: 780;
  letter-spacing: -0.03em;
}

.pricing-for {
  min-height: 44px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  margin-top: 30px;
  color: var(--ink);
  white-space: nowrap;
}

.pricing-currency {
  margin-top: 8px;
  font-size: 1.35rem;
  font-weight: 760;
}

.pricing-amount {
  font-size: 4.7rem;
  line-height: 0.9;
  font-weight: 780;
  letter-spacing: -0.065em;
}

.pricing-period {
  align-self: flex-end;
  margin: 0 0 7px 8px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.pricing-divider {
  height: 1px;
  margin: 32px 0;
  background: var(--line);
}

.pricing-features {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  position: relative;
  padding-left: 29px;
  color: #39484D;
  font-size: 1rem;
  line-height: 1.55;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--teal);
  font-weight: 850;
}

.pricing-cta {
  width: 100%;
  margin-top: 34px;
}


.pricing-cta-secondary {
  color: var(--teal);
  background: var(--white);
  border: 1px solid rgba(25, 116, 122, 0.32);
  box-shadow: none;
}

.pricing-cta-secondary:hover {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 10px 24px rgba(25, 116, 122, 0.18);
}

.pricing-note,
.pricing-subscribe-note {
  margin: 15px 0 0;
  color: #7A878B;
  font-size: 0.82rem;
  line-height: 1.55;
  text-align: center;
}

.pricing-subscribe-note {
  margin-top: 34px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.65);
}

.site-footer {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 54px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.footer-logo {
  display: block;
  width: 210px;
  height: auto;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: right;
}

@media (max-width: 980px) {
  .local-first-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 52px;
    padding: 64px 0 72px;
  }

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

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

  .tour-item,
  .tour-item-reverse {
    grid-template-columns: 1fr;
  }

  .tour-item-reverse .tour-copy,
  .tour-item-reverse .tour-shot {
    order: initial;
  }

  .sold-highlight {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .hero,
  .intro,
  .feature-grid,
  .tour,
  .tour-intro,
  .sold-highlight {
    width: calc(100% - 32px);
  }

  .hero {
    padding-top: 42px;
  }

  .hero-logo {
    width: min(100%, 300px);
  }

  .video-frame,
  .tour-item,
  .tour-shot img,
  .feature-card {
    border-radius: 16px;
  }

  .intro {
    padding: 66px 0 58px;
  }

  .feature-zone {
    padding-bottom: 70px;
  }

  .tour-intro {
    padding: 18px 0 56px;
  }

  .feature-grid {
    gap: 14px;
    padding-bottom: 90px;
  }

  .feature-card {
    min-height: 0;
    padding: 26px;
  }

  .feature-number {
    margin-bottom: 32px;
  }

  .tour {
    gap: 18px;
    padding-bottom: 100px;
  }

  .tour-item {
    gap: 22px;
    padding: 20px;
  }

  .sold-highlight {
    margin-top: 68px;
    padding: 26px;
    border-radius: 20px;
  }

  .pricing-section,
  .site-footer,
  .requirements-section,
  .faq-section,
  .local-first-section {
    width: calc(100% - 32px);
  }

  .local-first-section {
    padding: 22px 0 8px;
  }

  .local-first-kicker {
    margin-bottom: 30px;
  }

  .local-first-item {
    min-height: 0;
    padding: 22px;
  }

  .local-first-number {
    margin-bottom: 28px;
  }

  .requirements-section {
    padding: 68px 0 10px;
  }

  .faq-section {
    padding: 76px 0 34px;
  }

  .requirement-item {
    padding: 20px;
  }

  .faq-item summary {
    padding-right: 38px;
  }

  .pricing-section {
    padding: 16px 0 96px;
  }

  .pricing-intro {
    margin-bottom: 38px;
  }

  .pricing-card {
    padding: 28px 24px;
    border-radius: 20px;
  }

  .pricing-card-top {
    display: block;
  }

  .pricing-price {
    margin-top: 28px;
  }

  .pricing-amount {
    font-size: 4.1rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 40px;
  }

  .site-footer p {
    text-align: left;
  }

  .footer-logo {
    width: 160px;
  }
}


/* Terms / legal pages */
.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-legal a {
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 650;
  text-decoration: none;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  text-decoration: underline;
}

.legal-main {
  overflow: visible;
}

.legal-shell {
  width: min(900px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 84px;
}

.legal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.legal-logo {
  display: block;
  width: 220px;
  height: auto;
}

.legal-home-link {
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.legal-home-link:hover,
.legal-home-link:focus-visible {
  text-decoration: underline;
}

.legal-header {
  padding: 58px 0 36px;
}

.legal-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.legal-header h1 {
  margin: 0;
  font-size: clamp(2.35rem, 6vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.legal-updated {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.legal-intro {
  max-width: 780px;
  margin: 0 0 42px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  color: #39484D;
  line-height: 1.7;
}

.legal-content {
  max-width: 820px;
}

.legal-section {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.legal-section:first-child {
  border-top: 0;
  padding-top: 0;
}

.legal-section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.25rem, 2.7vw, 1.65rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.legal-section p,
.legal-section li {
  color: #39484D;
  font-size: 0.98rem;
  line-height: 1.75;
}

.legal-section p {
  margin: 0 0 14px;
}

.legal-section ul,
.legal-section ol {
  margin: 12px 0 16px;
  padding-left: 24px;
}

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

.legal-section a {
  color: var(--teal-dark);
}

.legal-footer {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.84rem;
}

@media (max-width: 720px) {
  .footer-meta {
    align-items: flex-start;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .legal-shell {
    width: min(100% - 32px, 900px);
    padding-top: 26px;
  }

  .legal-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-header {
    padding-top: 44px;
  }

  .legal-intro {
    padding: 18px;
  }
}


.legal-title-ja {
  font-size: clamp(2rem, 5.5vw, 3.9rem) !important;
  line-height: 1.08 !important;
}

.legal-content-ja .legal-section p,
.legal-content-ja .legal-section li {
  line-height: 1.9;
}

.legal-pending {
  color: var(--muted) !important;
  font-size: 0.9rem !important;
}

.legal-page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.legal-page-links a {
  color: var(--teal-dark);
  font-weight: 650;
  text-decoration: none;
}

.legal-page-links a:hover,
.legal-page-links a:focus-visible {
  text-decoration: underline;
}

/* 2026-09 Select Folio sales-site refresh */
.site-nav-shell {
  border-bottom: 1px solid rgba(21, 33, 37, 0.07);
  background: rgba(255, 255, 255, 0.95);
}
.site-nav {
  width: min(1120px, calc(100% - 48px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-nav-brand img { display: block; width: 172px; height: auto; }
.site-nav-links { display: flex; flex-wrap: wrap; gap: 24px; align-items: center; }
.site-nav-links a,
.footer-legal a,
.text-link {
  color: var(--teal-dark);
  text-decoration: none;
  font-weight: 700;
}
.site-nav-links a { font-size: 0.9rem; }
.site-nav-links a:hover,
.footer-legal a:hover,
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.site-nav-links .is-current { color: var(--brass-dark); }
.hero-redesign { min-height: 620px; padding-top: 48px; }
.hero-supporting {
  max-width: 510px;
  margin: 14px 0 0;
  color: #69767A;
  font-size: 1rem;
  line-height: 1.7;
}
.product-peek {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  border: 1px solid rgba(20, 42, 46, 0.09);
  border-radius: 24px;
  background: #F4F7F7;
  box-shadow: var(--shadow);
}
.product-peek > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  transform: scale(1.04);
  filter: saturate(0.92);
}
.product-peek-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 20%, rgba(250,249,246,0.28) 68%, rgba(250,249,246,0.96) 100%);
}
.product-peek-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.product-peek-caption span {
  padding: 8px 11px;
  border: 1px solid rgba(25, 116, 122, 0.16);
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-weight: 750;
  backdrop-filter: blur(8px);
}
.peek-note { margin: 14px 6px 0; color: #7A878B; font-size: 0.82rem; line-height: 1.55; }
.sold-highlight-text-only {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.65fr);
  margin-top: 92px;
}
.sold-fineprint { font-size: 0.79rem !important; color: #8A9497 !important; }
.sold-side-note {
  padding: 30px;
  border-left: 1px solid rgba(184, 137, 74, 0.22);
}
.sold-side-note p { margin: 0; color: var(--muted); font-size: 0.98rem; line-height: 1.75; }
.sold-side-note .sold-side-label { margin-bottom: 13px; color: var(--ink); font-size: 1.15rem; font-weight: 780; letter-spacing: -0.02em; }
.why-teaser {
  width: min(1120px, calc(100% - 48px));
  margin: 92px auto 0;
  padding: 54px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.why-teaser h2 { margin: 0; font-size: clamp(2rem, 4.4vw, 3.35rem); line-height: 1.06; letter-spacing: -0.042em; }
.why-teaser-copy p { margin: 0 0 22px; color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.text-link { display: inline-flex; gap: 8px; align-items: center; }
.requirements-grid-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.availability-note {
  margin-top: 18px;
  padding: 17px 20px;
  border: 1px solid rgba(184, 137, 74, 0.18);
  border-radius: 14px;
  color: #5D6466;
  background: var(--warm);
  font-size: 0.88rem;
  line-height: 1.6;
}
.pricing-region-note { margin: 22px 0 0; text-align: center; color: #7A878B; font-size: 0.84rem; }
.footer-meta { display: grid; justify-items: end; gap: 10px; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 14px 18px; }
.footer-legal a { font-size: 0.78rem; }

.story-main { overflow: hidden; }
.story-hero {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 100px 0 72px;
}
.story-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}
.story-lead { max-width: 760px; margin: 30px 0 0; color: var(--muted); font-size: 1.2rem; line-height: 1.8; }
.story-grid {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.story-card {
  padding: 34px;
  border: 1px solid rgba(184, 137, 74, 0.17);
  border-radius: 24px;
  background: linear-gradient(180deg, #FFFFFF, #FAF9F6);
}
.story-card-wide { grid-column: 1 / -1; padding: 46px; }
.story-number { margin: 0 0 44px; color: var(--brass); font-size: 0.78rem; font-weight: 850; letter-spacing: 0.14em; }
.story-card h2 { margin: 0; font-size: clamp(1.65rem, 3.3vw, 2.7rem); line-height: 1.08; letter-spacing: -0.035em; }
.story-card p:not(.story-number) { margin: 20px 0 0; color: var(--muted); font-size: 1rem; line-height: 1.78; }
.story-closing {
  width: min(900px, calc(100% - 48px));
  margin: 110px auto;
  text-align: center;
}
.story-closing h2 { margin: 0; font-size: clamp(2.35rem, 5vw, 4rem); line-height: 1.04; letter-spacing: -0.045em; }
.story-closing > p:not(.section-kicker) { margin: 22px 0 0; color: var(--muted); font-size: 1.05rem; }
.story-footer { margin-top: 0; }

@media (max-width: 980px) {
  .requirements-grid-three { grid-template-columns: 1fr; }
  .why-teaser { grid-template-columns: 1fr; gap: 28px; }
  .sold-highlight-text-only { grid-template-columns: 1fr; }
  .sold-side-note { border-left: 0; border-top: 1px solid rgba(184, 137, 74, 0.22); padding: 26px 0 0; }
}
@media (max-width: 700px) {
  .site-nav { width: calc(100% - 32px); min-height: 66px; }
  .site-nav-brand img { width: 145px; }
  .site-nav-links { gap: 12px; }
  .site-nav-links a { font-size: 0.78rem; }
  .product-peek { min-height: 310px; border-radius: 18px; }
  .why-teaser, .story-hero, .story-grid, .story-closing { width: calc(100% - 32px); }
  .story-hero { padding-top: 72px; }
  .story-grid { grid-template-columns: 1fr; }
  .story-card-wide { grid-column: auto; padding: 30px; }
  .story-card { padding: 30px; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .footer-meta { justify-items: start; }
  .site-footer p { text-align: left; }
  .footer-legal { justify-content: flex-start; }
}
@media (max-width: 520px) {
  .site-nav {
    min-height: 0;
    padding: 13px 0 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .site-nav-links {
    width: 100%;
    gap: 18px;
  }
  .site-nav-links a { font-size: 0.8rem; }
}

/* Refresh v3: bring back visual rhythm without exposing the full UI */
.hero-video-frame {
  position: relative;
  isolation: isolate;
  background: #eef3f3;
}
.hero-video-frame video {
  filter: saturate(.93) contrast(1.01);
}
.hero-video-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0) 50%, rgba(21,33,37,.12) 100%);
}
.hero-video-labels {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.hero-video-labels span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 999px;
  color: #173034;
  background: rgba(255,255,255,.82);
  font-size: .74rem;
  font-weight: 760;
  backdrop-filter: blur(10px);
}
.visual-rhythm {
  width: min(1120px, calc(100% - 48px));
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.visual-card {
  overflow: hidden;
  border: 1px solid rgba(20,42,46,.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(17,39,43,.055);
}
.mini-app {
  height: 210px;
  margin: 0;
  padding: 24px;
  display: grid;
  gap: 12px;
  background:
    radial-gradient(circle at 85% 12%, rgba(25,116,122,.10), transparent 26%),
    linear-gradient(145deg, #f7f9f9, #eef3f2);
}
.visual-card-caption { padding: 20px 22px 23px; }
.visual-card-caption strong { display: block; margin-bottom: 5px; font-size: 1rem; letter-spacing: -.01em; }
.visual-card-caption span { color: var(--muted); font-size: .88rem; line-height: 1.55; }
.mini-library { grid-template-columns: 64px 1fr; }
.mini-sidebar { display: flex; flex-direction: column; gap: 10px; padding: 13px 10px; border-radius: 14px; background: rgba(255,255,255,.78); }
.mini-sidebar i { height: 9px; border-radius: 999px; background: rgba(25,116,122,.16); }
.mini-sidebar i:nth-child(2) { width: 75%; }
.mini-sidebar i:nth-child(3) { width: 88%; }
.mini-content { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.mini-content b { grid-column: 1/-1; height: 16px; width: 64%; border-radius: 999px; background: rgba(21,33,37,.16); }
.mini-content span { min-height: 55px; border-radius: 13px; background: rgba(255,255,255,.92); border: 1px solid rgba(20,42,46,.06); }
.mini-html { grid-template-columns: .85fr 1.15fr; align-items: stretch; }
.mini-photo { border-radius: 16px; background: linear-gradient(135deg, rgba(184,137,74,.20), rgba(184,137,74,.05)), #fff; border: 1px solid rgba(184,137,74,.15); }
.mini-copy { padding: 18px; border-radius: 16px; background: rgba(255,255,255,.9); display: flex; flex-direction: column; gap: 11px; }
.mini-copy b { height: 15px; width: 72%; border-radius: 999px; background: rgba(21,33,37,.15); }
.mini-copy i { height: 8px; border-radius: 999px; background: rgba(98,112,117,.16); }
.mini-copy i:nth-of-type(2) { width: 88%; }
.mini-copy i:nth-of-type(3) { width: 70%; }
.mini-copy em { margin-top: auto; width: 42%; height: 28px; border-radius: 9px; background: rgba(25,116,122,.10); border: 1px solid rgba(25,116,122,.13); }
.mini-sold { grid-template-columns: 72px 1fr; }
.mini-years { padding: 15px 11px; border-radius: 14px; background: rgba(255,255,255,.80); display: flex; flex-direction: column; gap: 13px; }
.mini-years i { height: 10px; border-radius: 999px; background: rgba(184,137,74,.18); }
.mini-years i:nth-child(2) { width: 70%; }
.mini-years i:nth-child(3) { width: 82%; }
.mini-rows { padding: 14px; border-radius: 14px; background: rgba(255,255,255,.90); display: flex; flex-direction: column; gap: 10px; }
.mini-rows b { height: 15px; width: 56%; border-radius: 999px; background: rgba(21,33,37,.14); }
.mini-rows span { height: 24px; border-radius: 8px; background: rgba(25,116,122,.055); border: 1px solid rgba(25,116,122,.06); }
@media (max-width: 860px) {
  .visual-rhythm { grid-template-columns: 1fr; }
  .mini-app { height: 230px; }
}
@media (max-width: 640px) {
  .visual-rhythm { width: calc(100% - 32px); }
  .hero-video-labels { left: 14px; bottom: 12px; }
  .hero-video-labels span { font-size: .68rem; }
}

/* Refresh v4: feature story rows with richer, partial UI views */
.feature-stack {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  gap: 22px;
}
.feature-row {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(440px, 1.12fr);
  gap: 40px;
  align-items: center;
  min-height: 430px;
  padding: 38px 38px 38px 42px;
  overflow: hidden;
  border: 1px solid rgba(184, 137, 74, 0.16);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.99), rgba(250,249,246,.98));
  box-shadow: 0 14px 40px rgba(17,39,43,.045);
}
.feature-row-copy { padding: 6px 0; }
.feature-row-copy .feature-number { margin-bottom: 36px; }
.feature-row-copy h3 {
  margin: 0;
  max-width: 480px;
  font-size: clamp(1.75rem, 3vw, 2.65rem);
  line-height: 1.06;
  letter-spacing: -.04em;
}
.feature-row-copy > p {
  max-width: 480px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.76;
}
.feature-visual {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(20,42,46,.10);
  border-radius: 22px;
  background: #f6f8f8;
  box-shadow: 0 18px 48px rgba(17,39,43,.085);
}
.feature-visual-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(20,42,46,.08);
  background: rgba(255,255,255,.96);
}
.feature-visual-top span {
  color: var(--ink);
  font-size: .82rem;
  font-weight: 820;
  letter-spacing: .01em;
}
.feature-visual-top small {
  color: var(--muted);
  font-size: .72rem;
  line-height: 1.35;
  text-align: right;
}
.feature-image-wrap {
  position: relative;
  height: 330px;
  overflow: hidden;
  background: #fff;
}
.feature-image-wrap::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.78));
}
.feature-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top left;
}
.feature-image-editor img { object-position: 20% top; }
.feature-image-html img { object-position: center 35%; }
.feature-image-active img { object-position: 12% top; }
@media (max-width: 980px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding: 34px;
  }
  .feature-row-copy h3,
  .feature-row-copy > p { max-width: 700px; }
  .feature-image-wrap { height: 360px; }
}
@media (max-width: 640px) {
  .feature-stack { width: calc(100% - 32px); gap: 16px; }
  .feature-row { padding: 26px 22px; border-radius: 22px; }
  .feature-row-copy .feature-number { margin-bottom: 24px; }
  .feature-visual { border-radius: 16px; }
  .feature-visual-top { min-height: 48px; padding: 0 13px; }
  .feature-visual-top small { display: none; }
  .feature-image-wrap { height: 250px; }
}


/* Refresh v6: final feature visuals + restrained teal palette */
.feature-zone {
  background:
    linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 10%, #FBFEFD 40%, #F9FCFB 100%);
  border-bottom-color: rgba(15, 155, 161, 0.08);
}
.feature-showcase-stack {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  gap: 34px;
}
.feature-showcase-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(15, 155, 161, 0.10);
  border-radius: 26px;
  background: #FFFFFF;
  box-shadow: 0 18px 54px rgba(31, 67, 69, 0.07);
}
.feature-showcase-item img {
  display: block;
  width: 100%;
  height: auto;
}
.feature-showcase-item figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-nav-shell {
  border-bottom-color: rgba(15, 155, 161, 0.09);
}
.cta {
  box-shadow: 0 10px 24px rgba(15, 155, 161, 0.18);
}
.cta:hover {
  box-shadow: 0 14px 30px rgba(15, 155, 161, 0.23);
}
.feature-tags span,
.capability-list span,
.product-peek-caption span {
  border-color: rgba(15, 155, 161, 0.16);
  background: rgba(15, 155, 161, 0.05);
}
.sold-highlight {
  border-color: rgba(15, 155, 161, 0.13);
  background:
    radial-gradient(circle at top left, rgba(15, 155, 161, 0.055), transparent 34%),
    linear-gradient(135deg, #FBFEFD, #FFFFFF 62%);
}
.sold-eyebrow,
.local-first-number,
.requirement-number,
.story-number {
  color: var(--teal);
}
.sold-points span {
  border-color: rgba(15, 155, 161, 0.16);
  color: var(--teal-dark);
  background: rgba(15, 155, 161, 0.05);
}
.local-first-item,
.story-card {
  border-color: rgba(15, 155, 161, 0.12);
  background: linear-gradient(180deg, #FFFFFF, #FBFEFD);
}
.availability-note {
  border-color: rgba(15, 155, 161, 0.13);
  background: #FBFEFD;
}
.pricing-badge {
  color: var(--teal-dark);
  background: rgba(15, 155, 161, 0.09);
}
.why-teaser,
.site-footer {
  border-color: rgba(15, 155, 161, 0.10);
}
@media (max-width: 640px) {
  .feature-showcase-stack {
    width: calc(100% - 24px);
    gap: 18px;
  }
  .feature-showcase-item {
    border-radius: 18px;
    overflow: visible;
  }
  .feature-showcase-item img {
    border-radius: 18px;
  }
  .feature-showcase-item figcaption {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    padding: 14px 16px 17px;
    overflow: visible;
    clip: auto;
    white-space: normal;
    color: var(--muted);
    font-size: 0.86rem;
    line-height: 1.55;
  }
}

/* v8: restrained A-plan polish */
.hero-static-frame {
  overflow: hidden;
  border: 1px solid rgba(15,155,161,.10);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(15,72,76,.085);
}
.hero-static-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}
.hero-redesign::before { opacity: .32; }
.feature-zone {
  background: linear-gradient(180deg, #fff 0%, #fcfefe 13%, #f9fdfd 42%, #fff 100%);
}

.feature-trial-bridge{width:min(1120px,calc(100% - 48px));margin:30px auto 0;color:#0A7E87;text-align:center;font-size:.95rem;font-weight:760;letter-spacing:.01em;}
@media(max-width:640px){.feature-trial-bridge{width:calc(100% - 32px);}}


/* v10: alternating feature presentation + current FAQ release prep */
.hero-video-placeholder {
  min-height: 365px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 40px;
  border: 1px solid rgba(15,155,161,.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 28% 20%, rgba(15,155,161,.10), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(116,88,246,.08), transparent 24%),
    linear-gradient(180deg, #ffffff, #fbfefe);
  box-shadow: 0 20px 58px rgba(15,72,76,.08);
  text-align: center;
}
.hero-video-placeholder-mark {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(15,155,161,.22);
  font-size: 1.25rem;
  padding-left: 4px;
}
.hero-video-placeholder-title {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.hero-video-placeholder-copy {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: .92rem;
  line-height: 1.6;
}

.feature-alternating {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  gap: 30px;
}
.feature-detail-row {
  display: grid;
  grid-template-columns: minmax(330px, .85fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: center;
  min-height: 470px;
  padding: 34px 36px;
  border: 1px solid rgba(15,155,161,.10);
  border-radius: 28px;
  background:
    radial-gradient(circle at 90% 5%, rgba(116,88,246,.035), transparent 28%),
    linear-gradient(180deg, #ffffff, #fbfefe);
  box-shadow: 0 16px 46px rgba(31,67,69,.05);
}
.feature-detail-row-reverse {
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .85fr);
}
.feature-detail-row-reverse .feature-detail-copy {
  order: 2;
}
.feature-detail-row-reverse .feature-detail-visual {
  order: 1;
}
.feature-detail-copy {
  padding: 8px 6px;
}
.feature-detail-number {
  margin: 0 0 26px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 820;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.feature-detail-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3.7vw, 3.25rem);
  line-height: 1.03;
  letter-spacing: -.045em;
}
.feature-detail-copy > p:not(.feature-detail-number):not(.feature-detail-accent) {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}
.feature-detail-accent {
  display: inline-block;
  margin: 34px 0 0;
  padding-bottom: 7px;
  border-bottom: 2px solid rgba(15,155,161,.80);
  color: var(--teal-dark);
  font-size: .95rem;
  font-weight: 800;
}
.feature-detail-visual {
  min-width: 0;
}
.feature-detail-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(31,67,69,.08);
}

@media (max-width: 980px) {
  .feature-detail-row,
  .feature-detail-row-reverse {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: 0;
  }
  .feature-detail-row-reverse .feature-detail-copy,
  .feature-detail-row-reverse .feature-detail-visual {
    order: initial;
  }
  .feature-detail-copy {
    max-width: 720px;
  }
}
@media (max-width: 640px) {
  .feature-alternating { width: calc(100% - 32px); gap: 18px; }
  .feature-detail-row { padding: 24px 20px; border-radius: 20px; }
  .feature-detail-copy h3 { font-size: clamp(1.9rem, 11vw, 2.8rem); }
  .feature-detail-visual img { border-radius: 16px; }
  .hero-video-placeholder { min-height: 280px; border-radius: 18px; }
}

/* v16: final site media */
.hero-video-final {
  overflow: hidden;
  border: 1px solid rgba(15,155,161,.10);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 20px 58px rgba(15,72,76,.085);
}
.hero-video-final video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #fff;
}
@media (max-width: 640px) {
  .hero-video-final { border-radius: 18px; }
}
