/* biome-ignore-all lint/style/noDescendingSpecificity: start-page selectors are intentionally scoped above shared legacy rules. */
@font-face {
  font-family: "Anuphan";
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
  src: url("/assets/fonts/anuphan-thai-variable.woff2") format("woff2");
  unicode-range: U+02D7, U+0303, U+0331, U+0E01-0E5B, U+200C-200D, U+25CC;
}

.start-home-teaser {
  width: min(1120px, calc(100% - 40px));
  margin: 32px auto 96px;
  padding: clamp(28px, 5vw, 56px);
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  border-radius: 28px;
  background: var(--mint-soft, #ddf3ec);
}

.start-home-teaser h2,
.start-hero h1,
.start-principles h2,
.start-cta h2 {
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.start-home-teaser p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--ink-soft, #40544d);
}

.start-page {
  overflow: hidden;
}

.start-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 690px;
  margin: 0 auto;
  padding: clamp(72px, 9vw, 128px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: clamp(48px, 8vw, 112px);
}

.start-hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 7vw, 88px);
}

.start-hero-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.75;
  color: var(--ink-soft, #40544d);
}

.start-hero-card {
  position: relative;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(22, 138, 91, 0.18);
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(27, 69, 53, 0.14);
}

.start-hero-card::before {
  content: "";
  position: absolute;
  inset: -34px -42px auto auto;
  width: 132px;
  height: 132px;
  border-radius: 999px;
  background: #d8f36c;
  z-index: -1;
}

.start-card-kicker {
  display: block;
  margin-bottom: 14px;
  color: #168a5b;
  font-weight: 800;
}

.start-hero-card > strong {
  display: block;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
}

.start-hero-card dl {
  margin: 30px 0;
  display: grid;
  gap: 16px;
}

.start-hero-card dl div {
  padding-bottom: 16px;
  border-bottom: 1px solid #e6eee9;
}

.start-hero-card dt {
  color: #62746d;
  font-size: 13px;
}

.start-hero-card dd {
  margin: 4px 0 0;
  font-weight: 750;
}

.start-seven-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
}

.start-seven-days i {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ddf3ec;
  color: #166044;
  font-style: normal;
  font-weight: 800;
}

.start-seven-days i:first-child,
.start-seven-days i:last-child {
  background: #168a5b;
  color: #fff;
}

.start-principles {
  padding: clamp(76px, 10vw, 136px) max(20px, calc((100vw - 1120px) / 2));
  background: #f5faf7;
}

.start-step-grid {
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.start-step-grid li {
  min-height: 250px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 22px;
  background: #fff;
}

.start-step-grid li > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #ddf3ec;
  color: #166044;
  font-weight: 850;
}

.start-step-grid strong {
  display: block;
  font-size: 22px;
}

.start-step-grid p {
  margin: 10px 0 0;
  color: #62746d;
  line-height: 1.65;
}

.start-cta {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(92px, 12vw, 160px) 0;
  text-align: center;
}

.start-cta h2 {
  margin-bottom: 32px;
  font-size: clamp(38px, 6vw, 68px);
}

.start-cta small {
  display: block;
  margin-top: 16px;
  color: #62746d;
}

@media (max-width: 820px) {
  .start-home-teaser,
  .start-hero {
    display: grid;
    grid-template-columns: 1fr;
    align-items: start;
  }

  .start-hero {
    min-height: auto;
  }

  .start-step-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .start-home-teaser {
    width: min(100% - 24px, 1120px);
    margin-bottom: 64px;
  }

  .start-hero {
    width: min(100% - 32px, 1180px);
    padding-top: 56px;
  }

  .start-hero h1 {
    font-size: 46px;
  }

  .start-hero-card::before {
    display: none;
  }

  .start-step-grid {
    grid-template-columns: 1fr;
  }

  .start-step-grid li {
    min-height: 210px;
  }
}

@font-face {
  font-family: "Anuphan";
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
  src: url("/assets/fonts/anuphan-latin-variable.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304,
    U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}

:root {
  --ink: #27346a;
  --ink-deep: #1f2854;
  --ink-soft: #5e6687;
  --background: #fffdf9;
  --surface: #fff;
  --mint: #ddf3ec;
  --mint-strong: #8bd4bc;
  --coral-soft: #fff0ef;
  --coral: #ff7b76;
  --lime-soft: #f2fad9;
  --lime: #c8f06a;
  --line: #d7e2dd;
  --shadow: 0 22px 60px rgb(39 52 106 / 10%);
  color: var(--ink);
  background: var(--background);
  font-family: "Anuphan", "Noto Sans Thai", "Leelawadee UI", "Thonburi", system-ui, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  font-size: 1rem;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

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

.site-header {
  width: min(1160px, calc(100% - 40px));
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-wordmark {
  position: relative;
  display: inline-block;
  padding-right: 0.32em;
  color: var(--ink);
  font-size: 2.55rem;
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 1;
  white-space: nowrap;
}

.brand-wordmark::after {
  position: absolute;
  top: 0.02em;
  right: 0;
  width: 0.18em;
  height: 0.18em;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.header-actions {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgb(39 52 106 / 14%);
  border-radius: 50%;
  display: none;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle-bars {
  position: relative;
  width: 18px;
  height: 14px;
  display: block;
}

.menu-toggle-bars::before,
.menu-toggle-bars::after,
.menu-toggle-bar {
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentcolor;
  content: "";
  transition:
    top 160ms ease,
    transform 160ms ease,
    opacity 160ms ease;
}

.menu-toggle-bars::before {
  top: 0;
}

.menu-toggle-bar {
  top: 6px;
}

.menu-toggle-bars::after {
  top: 12px;
}

.site-header.menu-open .menu-toggle-bars::before {
  top: 6px;
  transform: rotate(45deg);
}

.site-header.menu-open .menu-toggle-bar {
  opacity: 0;
}

.site-header.menu-open .menu-toggle-bars::after {
  top: 6px;
  transform: rotate(-45deg);
}

.text-button,
.nav-link {
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-link {
  position: relative;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--coral);
  content: "";
  opacity: 0;
  transform: scaleX(0.7);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--coral);
  box-shadow: 0 12px 28px rgb(255 123 118 / 24%);
}

.button-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 28px rgb(39 52 106 / 18%);
}

.button-small {
  min-height: 44px;
  padding-inline: 19px;
  font-size: 0.88rem;
}

.hero {
  width: min(1160px, calc(100% - 40px));
  min-height: 680px;
  margin: 0 auto 96px;
  padding: 76px 70px;
  border: 1px solid rgb(39 52 106 / 8%);
  border-radius: 36px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
  overflow: hidden;
  background: var(--mint);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(3.8rem, 5.6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  overflow-wrap: anywhere;
}

.hero-copy {
  max-width: 510px;
  margin: 28px 0 32px;
  color: var(--ink-soft);
  font-size: clamp(1.03rem, 1.8vw, 1.22rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.pilot-note {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.hero-art {
  position: relative;
  min-height: 500px;
}

.counting-line {
  position: absolute;
  top: 18px;
  right: 0;
  width: 250px;
  height: 120px;
}

.counting-line::before {
  position: absolute;
  inset: 15px 5px;
  border: 10px solid var(--ink);
  border-top: 0;
  border-right-color: transparent;
  border-bottom-right-radius: 80px;
  border-bottom-left-radius: 80px;
  content: "";
  transform: rotate(-7deg);
}

.counting-line span {
  position: absolute;
  z-index: 1;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--coral);
}

.counting-line span:nth-child(1) {
  left: 24px;
  top: 50px;
}

.counting-line span:nth-child(2) {
  left: 115px;
  top: 82px;
  background: var(--surface);
}

.counting-line span:nth-child(3) {
  right: 7px;
  top: 20px;
  background: var(--lime);
}

.art-card {
  position: absolute;
  min-height: 144px;
  padding: 24px;
  border: 1px solid rgb(39 52 106 / 10%);
  border-radius: 24px;
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.art-card small {
  display: block;
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 0.74rem;
  font-weight: 600;
}

.art-card strong {
  display: block;
  font-size: 1.15rem;
}

.art-card p {
  margin: 4px 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.art-card-package {
  top: 93px;
  left: 0;
  width: min(390px, 88%);
}

.art-card-time {
  top: 254px;
  right: -28px;
  width: min(330px, 82%);
}

.art-card-habit {
  bottom: 0;
  left: 42px;
  width: min(360px, 86%);
}

.art-card-habit .art-card-copy {
  min-width: 0;
}

.package-icon {
  position: relative;
  width: 72px;
  height: 58px;
  border: 5px solid var(--ink);
  border-radius: 10px;
  flex: 0 0 auto;
}

.package-icon::before,
.package-icon::after {
  position: absolute;
  left: 18px;
  width: 34px;
  height: 5px;
  border-radius: 4px;
  background: var(--ink);
  content: "";
}

.package-icon::before {
  top: 15px;
}

.package-icon::after {
  top: 34px;
}

.package-icon i {
  position: absolute;
  top: 12px;
  left: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.status-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  background: var(--lime);
  font-weight: 700;
}

.art-card-habit .status-dot {
  margin-left: auto;
}

.clock-icon {
  position: relative;
  width: 66px;
  height: 66px;
  border: 5px solid var(--ink);
  border-radius: 50%;
  flex: 0 0 auto;
}

.clock-icon::before,
.clock-icon::after {
  position: absolute;
  left: 29px;
  width: 5px;
  border-radius: 4px;
  background: var(--ink);
  content: "";
  transform-origin: 50% 100%;
}

.clock-icon::before {
  top: 12px;
  height: 22px;
}

.clock-icon::after {
  top: 24px;
  height: 19px;
  transform: rotate(125deg);
}

.client-icon {
  position: relative;
  width: 66px;
  height: 66px;
  border: 5px solid var(--ink);
  border-radius: 50%;
  flex: 0 0 auto;
}

.client-icon::before,
.client-icon::after {
  position: absolute;
  border: 4px solid var(--ink);
  content: "";
}

.client-icon::before {
  top: 10px;
  left: 21px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.client-icon::after {
  bottom: 9px;
  left: 12px;
  width: 32px;
  height: 17px;
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
}

.progress-ring {
  width: 70px;
  height: 70px;
  border: 8px solid var(--lime);
  border-radius: 50%;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
}

.feature-section {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 120px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading h2,
.how-it-works h2,
.promise h2 {
  margin: 0;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1.13;
  letter-spacing: -0.045em;
}

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

.feature-card {
  min-height: 470px;
  padding: 28px;
  border: 1px solid rgb(39 52 106 / 8%);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
}

.feature-package {
  background: var(--mint);
}

.feature-time {
  background: var(--coral-soft);
}

.feature-habit {
  background: var(--lime-soft);
}

.feature-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-number {
  font:
    700 0.75rem / 1 ui-monospace,
    monospace;
}

.feature-symbol {
  position: relative;
  width: 64px;
  height: 64px;
  border: 4px solid var(--ink);
  border-radius: 18px;
  background: var(--surface);
}

.symbol-package::after {
  position: absolute;
  right: -7px;
  bottom: -7px;
  width: 24px;
  height: 24px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  content: "✓";
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}

.symbol-time {
  border-radius: 50%;
}

.symbol-time::before {
  position: absolute;
  left: 27px;
  top: 10px;
  width: 4px;
  height: 24px;
  border-radius: 4px;
  background: var(--ink);
  content: "";
  transform: rotate(140deg);
  transform-origin: 50% 100%;
}

.symbol-habit {
  border: 0;
  background: transparent;
}

.symbol-habit::before {
  position: absolute;
  inset: 10px 2px;
  border: 6px solid var(--ink);
  border-top-color: transparent;
  border-right-color: transparent;
  border-radius: 0 0 0 34px;
  content: "";
  transform: rotate(-17deg);
}

.feature-card h3 {
  margin: 60px 0 12px;
  font-size: 1.65rem;
}

.feature-card > p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.chat-example {
  margin-top: auto;
  padding: 18px;
  border-radius: 17px;
  display: grid;
  gap: 9px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgb(39 52 106 / 6%);
  font-size: 0.86rem;
}

.chat-example span {
  color: var(--ink-soft);
}

.how-it-works {
  padding: 120px max(20px, calc((100% - 1160px) / 2));
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: start;
  background: var(--ink);
  color: #fff;
}

.how-it-works .eyebrow {
  color: var(--lime);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 24px 0;
  border-bottom: 1px solid rgb(255 255 255 / 15%);
  display: flex;
  gap: 20px;
}

.steps li > span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  background: var(--lime);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 700;
}

.steps strong {
  font-size: 1.05rem;
}

.steps p {
  margin: 5px 0 0;
  color: rgb(255 255 255 / 64%);
  font-size: 0.88rem;
}

.how-it-works.how-product-proof {
  padding-block: 104px;
  grid-template-columns: minmax(0, 0.94fr) minmax(390px, 1.06fr);
  gap: 92px;
  align-items: center;
}

.how-product-story {
  display: grid;
  gap: 34px;
}

.how-product-story .how-copy h2 {
  max-width: 560px;
}

.how-product-story .steps li:first-child {
  padding-top: 0;
}

.how-product-link {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.how-product-link::after {
  color: var(--lime);
  font-size: 1.35rem;
  content: "→";
}

.how-product-media {
  position: relative;
  min-height: 650px;
  border-radius: 34px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--mint);
}

.how-product-media::before,
.how-product-media::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.how-product-media::before {
  top: 42px;
  left: 42px;
  width: 18px;
  height: 18px;
  background: var(--coral);
}

.how-product-media::after {
  top: 72px;
  right: 54px;
  width: 16px;
  height: 16px;
  background: var(--lime);
}

.how-product-device {
  position: relative;
  z-index: 1;
  width: min(78%, 400px);
  margin: 0 0 -48px;
  padding: 8px;
  border-radius: 48px;
  overflow: hidden;
  background: #101217;
  box-shadow: 0 28px 64px rgb(10 15 38 / 24%);
  transform: rotate(1.4deg);
}

.how-product-device img {
  width: 100%;
  height: auto;
  border-radius: 40px;
}

.how-product-badge {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 68px;
  padding: 13px 17px;
  border-radius: 999px;
  background: var(--lime-soft);
  box-shadow: 0 14px 32px rgb(39 52 106 / 16%);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
  transform: rotate(-2deg);
}

.promise {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.plan-teaser {
  max-width: 1120px;
  margin: 0 auto;
  padding: 92px 30px 72px;
}

.plan-teaser-shell {
  border: 1px solid rgb(39 52 106 / 8%);
  border-radius: 32px;
  padding: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 48px;
  align-items: center;
  background: var(--mint);
}

.plan-teaser-copy h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.plan-teaser-copy > p {
  max-width: 640px;
  margin: 24px 0 28px;
  color: var(--ink-soft);
  line-height: 1.75;
}

.plan-teaser-actions {
  display: flex;
  gap: 22px;
  align-items: center;
}

.plan-detail-link {
  color: var(--ink);
  font-weight: 700;
  text-underline-offset: 4px;
}

.plan-teaser-trial {
  border-radius: 24px;
  padding: 28px;
  display: grid;
  gap: 10px;
  background: var(--surface);
  box-shadow: 0 16px 40px rgb(39 52 106 / 7%);
}

.plan-teaser-trial .eyebrow {
  margin-bottom: 4px;
}

.plan-teaser-trial strong {
  font-size: 1.35rem;
  line-height: 1.45;
}

.plan-teaser-trial span {
  color: var(--ink-soft);
  line-height: 1.7;
}

.plans-page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 120px;
}

.plans-hero {
  min-height: 560px;
  border: 1px solid rgb(39 52 106 / 8%);
  border-radius: 36px;
  padding: 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 56px;
  align-items: center;
  overflow: hidden;
  background: var(--coral-soft);
}

.plans-hero h1 {
  font-size: clamp(2.75rem, 4.2vw, 4rem);
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.plans-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
  line-height: 1.8;
}

.plans-hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  align-items: center;
}

.plans-hero-actions .button {
  min-height: 50px;
}

.plan-hero-art {
  position: relative;
  min-height: 390px;
}

.plan-mobile-path {
  display: none;
}

.plan-art-curve {
  position: absolute;
  top: 18px;
  right: -12px;
  width: 260px;
  height: 150px;
  border: 11px solid var(--ink);
  border-top: 0;
  border-left-color: transparent;
  border-radius: 0 0 150px 150px;
  transform: rotate(-8deg);
}

.plan-art-dot {
  position: absolute;
  z-index: 2;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.plan-art-dot-coral {
  top: 82px;
  left: 48px;
  background: var(--coral);
}

.plan-art-dot-lime {
  top: 24px;
  right: 32px;
  background: var(--lime);
}

.plan-preview-card {
  position: absolute;
  z-index: 1;
  min-width: 230px;
  border: 1px solid rgb(39 52 106 / 9%);
  border-radius: 24px;
  padding: 26px;
  display: grid;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.plan-preview-card small {
  color: var(--ink-soft);
  font-weight: 600;
}

.plan-preview-card strong {
  margin-top: 12px;
  font-size: 1.55rem;
}

.plan-preview-card span {
  margin-top: 3px;
  color: var(--ink-soft);
}

.plan-preview-free {
  top: 88px;
  left: 0;
}

.plan-preview-solo {
  right: 0;
  bottom: 34px;
  background: var(--mint);
}

.pricing-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.price-card {
  position: relative;
  border: 1px solid rgb(39 52 106 / 10%);
  border-radius: 28px;
  padding: 32px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 18px 50px rgb(39 52 106 / 7%);
}

.price-card::after {
  position: absolute;
  right: -44px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border: 18px solid var(--coral-soft);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.price-card-featured {
  background: var(--mint);
}

.price-card-featured::after {
  border-color: rgb(200 240 106 / 46%);
}

.price-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-card-topline .eyebrow {
  margin-bottom: 0;
}

.price-card-badge {
  position: relative;
  z-index: 1;
  padding: 6px 11px;
  border: 1px solid rgb(39 52 106 / 13%);
  border-radius: 999px;
  background: rgb(255 255 255 / 58%);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.plan-card-symbol {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border: 4px solid var(--ink);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.plan-card-symbol-free::before,
.plan-card-symbol-free::after {
  position: absolute;
  left: 12px;
  width: 23px;
  height: 4px;
  border-radius: 4px;
  background: var(--ink);
  content: "";
}

.plan-card-symbol-free::before {
  top: 15px;
}

.plan-card-symbol-free::after {
  top: 29px;
}

.plan-card-symbol-solo {
  border-radius: 50%;
  background: var(--lime);
}

.price-card h2 {
  margin: 8px 0;
}

.price-card h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.price-card h2 small {
  font-size: 1rem;
  font-weight: 600;
}

.price-card > p.price-card-trial {
  width: fit-content;
  margin: 0 0 14px;
  padding: 6px 11px;
  border: 1px solid rgb(39 52 106 / 14%);
  border-radius: 999px;
  background: rgb(255 255 255 / 56%);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.price-card > p:not(.eyebrow) {
  color: var(--ink-soft);
  line-height: 1.7;
}

.price-card ul {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  padding-left: 20px;
  color: var(--ink);
  line-height: 1.9;
}

.plan-pricing-section {
  margin-top: 72px;
  scroll-margin-top: 32px;
}

.plan-pricing-heading {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.plan-pricing-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.plan-page-grid {
  margin-top: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.plan-page-trial {
  position: relative;
  margin-top: 24px;
  border-radius: 28px;
  padding: 40px 42px;
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
}

.plan-trial-copy {
  position: relative;
  z-index: 1;
}

.trial-counting-mark {
  position: absolute;
  top: -56px;
  right: 190px;
  width: 210px;
  height: 140px;
  border: 12px solid rgb(200 240 106 / 30%);
  border-top: 0;
  border-left-color: transparent;
  border-radius: 0 0 130px 130px;
  transform: rotate(8deg);
}

.trial-counting-mark::after {
  position: absolute;
  right: 28px;
  bottom: -15px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--coral);
  content: "";
}

.plan-page-trial h2 {
  margin: 6px 0 12px;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}

.plan-page-trial p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: rgb(255 255 255 / 75%);
  line-height: 1.75;
}

.plan-page-trial .eyebrow {
  color: var(--lime);
}

.plan-page-trial .button {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
}

.plan-faq {
  margin-top: 92px;
  border-radius: 32px;
  padding: 56px;
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr);
  gap: 80px;
  align-items: start;
  background: var(--lime-soft);
}

.plan-faq-heading {
  position: sticky;
  top: 40px;
}

.plan-faq-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.plan-faq-intro {
  margin: 22px 0 0;
  color: var(--ink-soft);
  line-height: 1.75;
}

.plan-faq-list {
  display: grid;
  gap: 10px;
}

.plan-faq-list details {
  border: 1px solid rgb(39 52 106 / 8%);
  border-radius: 18px;
  padding: 0 22px;
  background: var(--surface);
}

.plan-faq-list summary {
  cursor: pointer;
  min-height: 64px;
  padding: 20px 0;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: 1.05rem;
  font-weight: 700;
  list-style: none;
}

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

.plan-faq-list summary::after {
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--coral);
  border-bottom: 2px solid var(--coral);
  flex: 0 0 auto;
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

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

.plan-faq-list details p {
  margin: -4px 34px 20px 0;
  color: var(--ink-soft);
  line-height: 1.8;
}

.plan-faq-list details a {
  font-weight: 700;
}

.promise > img {
  margin-bottom: 30px;
}

.promise > p {
  margin: 0 0 20px;
  color: var(--ink-soft);
}

.promise .button {
  margin-top: 34px;
}

.audience-page {
  overflow: hidden;
}

.audience-hero {
  width: min(1160px, calc(100% - 40px));
  min-height: 640px;
  margin: 0 auto 64px;
  padding: 72px;
  border: 1px solid rgb(39 52 106 / 8%);
  border-radius: 36px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 1.05fr);
  gap: 72px;
  align-items: center;
  background: var(--mint);
}

.audience-hero-copy {
  position: relative;
  z-index: 1;
}

.audience-hero h1 {
  font-size: clamp(3.2rem, 4.5vw, 4.4rem);
  line-height: 1.22;
  letter-spacing: -0.045em;
}

.audience-hero-copy > p:not(.eyebrow) {
  max-width: 540px;
  margin: 26px 0 32px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
}

.audience-hero-art {
  width: min(100%, 470px);
  justify-self: center;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8;
}

.audience-hero-art .art-node {
  stroke: none;
}

.audience-hero-art .art-node-coral {
  fill: var(--coral);
}

.audience-hero-art .art-node-lime {
  fill: var(--lime);
}

.audience-hero-art .art-node-mint {
  fill: var(--surface);
  stroke: var(--ink);
  stroke-width: 8;
}

.audience-hero-art .art-node-open {
  fill: var(--mint);
  stroke: var(--ink);
  stroke-width: 8;
}

.audience-fit {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 68px 0 108px;
}

.audience-heading,
.profession-heading {
  margin: 0 auto 44px;
  text-align: center;
}

.audience-heading h2,
.profession-heading h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  line-height: 1.16;
  letter-spacing: -0.04em;
}

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

.fit-card {
  min-height: 420px;
  padding: 30px;
  border: 1px solid rgb(39 52 106 / 8%);
  border-radius: 28px;
  display: flex;
  flex-direction: column;
}

.fit-card-package {
  background: var(--mint);
}

.fit-card-time {
  background: var(--coral-soft);
}

.fit-card-repeat {
  background: var(--lime-soft);
}

.fit-art {
  width: 150px;
  height: 112px;
  margin: 18px auto 58px;
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.fit-art .fit-accent {
  stroke: none;
}

.fit-art .fit-accent-mint {
  fill: var(--mint-strong);
}

.fit-art .fit-accent-coral {
  fill: var(--coral);
}

.fit-art .fit-accent-lime {
  fill: var(--lime);
}

.fit-mobile-number {
  display: none;
}

.fit-card-copy {
  margin-top: auto;
  text-align: center;
}

.fit-card h3 {
  margin: 0 0 14px;
  font-size: 1.55rem;
  line-height: 1.4;
}

.fit-card p {
  max-width: 260px;
  margin: 0 auto;
  color: var(--ink-soft);
  line-height: 1.75;
}

.fit-card small {
  display: block;
  margin-top: 34px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.65;
}

.audience-start {
  width: min(760px, calc(100% - 40px));
  margin: -58px auto 64px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.8;
  text-align: center;
}

.profession-section {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0 112px;
}

.profession-heading {
  margin-bottom: 46px;
}

.profession-heading .eyebrow {
  color: var(--mint-strong);
}

.profession-groups {
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.profession-group {
  min-width: 0;
  padding: 30px 34px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.profession-group summary {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  list-style: none;
}

.profession-group summary::-webkit-details-marker {
  display: none;
}

.profession-group summary > span {
  font-size: 1.18rem;
  font-weight: 700;
}

.profession-group summary small {
  color: var(--ink-muted, var(--ink-soft));
  font-size: 0.78rem;
}

.profession-list {
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 22px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
  list-style: none;
}

.profession-expand {
  margin: 36px auto 0;
  padding: 8px 0;
  border: 0;
  display: block;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.profession-expand[hidden] {
  display: none;
}

.shared-needs {
  padding: 100px max(20px, calc((100% - 1160px) / 2));
  background: var(--ink);
  color: #fff;
}

.shared-needs-inner {
  display: grid;
  grid-template-columns: minmax(520px, 1.1fr) minmax(0, 0.9fr);
  gap: 52px;
  align-items: center;
}

.shared-needs h2 {
  margin: 0;
  font-size: clamp(2.4rem, 3.25vw, 3rem);
  line-height: 1.16;
  letter-spacing: -0.045em;
}

.needs-list {
  position: relative;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.needs-list::before {
  position: absolute;
  top: 15px;
  right: 10%;
  left: 10%;
  height: 3px;
  border-radius: 3px;
  background: rgb(255 255 255 / 82%);
  content: "";
}

.needs-list li {
  position: relative;
  display: grid;
  gap: 18px;
  justify-items: center;
  color: rgb(255 255 255 / 84%);
  text-align: center;
}

.need-node {
  z-index: 1;
  width: 30px;
  height: 30px;
  border: 4px solid #fff;
  border-radius: 50%;
}

.need-node-coral {
  background: var(--coral);
}

.need-node-mint {
  background: var(--mint-strong);
}

.need-node-lime {
  background: var(--lime);
}

.need-node-open {
  background: var(--ink);
}

.audience-cta {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 108px 0 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.audience-cta .brand-wordmark {
  margin-bottom: 26px;
  font-size: 2.8rem;
}

.audience-cta h2 {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.8;
}

.audience-cta .button {
  margin-top: 28px;
}

.audience-cta .text-button {
  margin-top: 18px;
}

.site-footer {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 24px 0 38px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--ink-soft);
  font-size: 0.875rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand .brand-wordmark {
  font-size: 2rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.site-footer a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.legal-page {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 120px;
}

.legal-page h1 {
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 7vw, 4.6rem);
}

.legal-page .updated {
  margin-bottom: 52px;
  color: var(--ink-soft);
}

.legal-page h2 {
  margin: 42px 0 12px;
  font-size: 1.35rem;
}

.legal-page p,
.legal-page li {
  color: var(--ink-soft);
  line-height: 1.8;
}

.legal-page li + li {
  margin-top: 8px;
}

.content-page {
  width: min(920px, calc(100% - 40px));
}

.content-lead {
  margin-bottom: 52px;
  font-size: 1.12rem;
}

.answer-list {
  display: grid;
  gap: 16px;
}

.answer-preview .answer-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.answer-preview .answer-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
}

.answer-preview-link {
  margin-top: 28px;
}

.answer-card,
.guide-article {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px 30px;
  background: var(--surface);
  box-shadow: 0 12px 34px rgb(39 52 106 / 5%);
}

.answer-card:nth-child(3n + 1) {
  background: var(--mint);
}

.answer-card:nth-child(3n + 2) {
  background: var(--coral-soft);
}

.answer-card:nth-child(3n) {
  background: var(--lime-soft);
}

.answer-card h2,
.guide-article h2,
.content-callout h2 {
  margin-top: 0;
}

.answer-card p,
.guide-article > :last-child,
.content-callout p {
  margin-bottom: 0;
}

.content-callout {
  margin-top: 56px;
  border-radius: 28px;
  padding: 34px;
  background: var(--ink);
  color: #fff;
}

.content-callout p {
  color: rgb(255 255 255 / 78%);
}

.content-callout .button {
  margin-top: 24px;
}

.guide-index {
  margin: 0 0 44px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.guide-index a {
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.guide-index a:hover,
.guide-index a:focus-visible {
  background: var(--mint);
}

.guide-article {
  scroll-margin-top: 28px;
}

.guide-article + .guide-article {
  margin-top: 24px;
}

.guide-article:nth-of-type(2) {
  background: var(--mint);
}

.guide-article:nth-of-type(3) {
  background: var(--coral-soft);
}

.guide-article:nth-of-type(4) {
  background: var(--lime-soft);
}

.guide-article .eyebrow {
  margin-bottom: 8px;
}

.guide-article strong {
  color: var(--ink);
}

.product-tour-page {
  padding-bottom: 96px;
}

.product-tour-hero {
  width: min(1160px, calc(100% - 40px));
  min-height: 690px;
  margin: 0 auto 108px;
  padding: 68px 70px;
  border: 1px solid rgb(39 52 106 / 8%);
  border-radius: 36px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
  gap: 54px;
  align-items: center;
  overflow: hidden;
  background: var(--mint);
}

.product-tour-hero-copy {
  position: relative;
  z-index: 2;
}

.product-tour-hero h1 {
  font-size: clamp(4rem, 6vw, 5.25rem);
}

.product-tour-hero-copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 28px 0 32px;
  color: var(--ink-soft);
  font-size: 1.13rem;
  line-height: 1.8;
}

.product-tour-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.product-tour-actions > span,
.product-tour-cta > span {
  color: var(--ink-soft);
  font-size: 0.875rem;
}

.product-tour-hero-media {
  position: relative;
  min-height: 540px;
}

.tour-device {
  width: min(100%, 330px);
  margin: 0;
  padding: 8px;
  border-radius: 46px;
  overflow: hidden;
  background: #101217;
  box-shadow: 0 24px 54px rgb(39 52 106 / 16%);
}

.tour-device img {
  width: 100%;
  height: auto;
  border-radius: 38px;
}

.product-tour-hero-media .tour-device {
  position: absolute;
}

.tour-device-line {
  top: 74px;
  left: 0;
  z-index: 1;
  width: 330px;
  transform: rotate(-2deg);
}

.tour-device-overview {
  top: 0;
  right: 0;
  z-index: 2;
  width: 280px;
  transform: rotate(2deg);
}

.product-tour-intro {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto 72px;
  text-align: center;
}

.product-tour-intro h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.product-tour-intro > p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px auto 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.8;
}

.product-tour-steps {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.product-tour-step {
  min-height: 620px;
  padding: 52px 64px;
  border: 1px solid rgb(39 52 106 / 9%);
  border-radius: 34px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 58px;
  align-items: center;
  overflow: hidden;
  background: var(--surface);
}

.product-tour-step-copy {
  position: relative;
  z-index: 2;
}

.product-tour-step-reversed .product-tour-step-copy {
  order: 2;
}

.product-tour-step-reversed .product-tour-step-media {
  order: 1;
}

.product-tour-number {
  display: block;
  margin-bottom: 34px;
  color: var(--mint-strong);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-tour-step h2 {
  margin: 0;
  font-size: clamp(2.55rem, 4.3vw, 3.85rem);
  line-height: 1.12;
  letter-spacing: -0.05em;
}

.product-tour-step-copy > p:not(.eyebrow) {
  max-width: 430px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
  line-height: 1.8;
}

.product-tour-step .product-tour-step-media {
  min-height: 516px;
  padding: 32px 22px 0;
  border-radius: 30px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--mint);
}

.product-tour-step:nth-child(3n + 2) .product-tour-step-media {
  background: var(--coral-soft);
}

.product-tour-step:nth-child(3n) .product-tour-step-media {
  background: var(--lime-soft);
}

.product-tour-step-media .tour-device {
  width: min(100%, 320px);
  flex: 0 0 auto;
}

.product-tour-step-media-line .tour-device {
  width: min(100%, 390px);
}

.product-tour-motif {
  margin-top: 42px;
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.product-tour-motif span {
  display: block;
  background: var(--mint-strong);
}

.motif-count span,
.motif-progress span {
  width: 18px;
  height: 18px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: transparent;
}

.motif-count span:nth-child(2),
.motif-progress span:nth-child(3) {
  background: var(--coral);
}

.motif-list {
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
}

.motif-list span {
  width: 72px;
  height: 7px;
  border-radius: 7px;
}

.motif-list span:nth-child(2) {
  width: 54px;
}

.motif-list span:nth-child(3) {
  width: 38px;
}

.motif-bars span {
  width: 17px;
  border-radius: 7px 7px 2px 2px;
  background: var(--lime);
}

.motif-bars span:nth-child(1) {
  height: 20px;
}

.motif-bars span:nth-child(2) {
  height: 36px;
}

.motif-bars span:nth-child(3) {
  height: 54px;
}

.motif-summary {
  width: 62px;
  height: 62px;
  border: 13px solid var(--mint-strong);
  border-right-color: var(--coral);
  border-radius: 50%;
  transform: rotate(-35deg);
}

.motif-summary span {
  display: none;
}

.product-tour-cta {
  width: min(1100px, calc(100% - 40px));
  margin: 82px auto 0;
  padding: 72px 40px;
  border-radius: 34px;
  display: flex;
  align-items: center;
  flex-direction: column;
  background: var(--ink-deep);
  color: #fff;
  text-align: center;
}

.product-tour-cta .eyebrow {
  color: var(--mint-strong);
}

.product-tour-cta h2 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.25rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.product-tour-cta > p:not(.eyebrow) {
  margin: 22px 0 28px;
  color: rgb(255 255 255 / 76%);
  font-size: 1.03rem;
}

.product-tour-cta > span {
  margin-top: 16px;
  color: rgb(255 255 255 / 72%);
}

.product-tour-cta .text-button {
  margin-top: 20px;
  color: #fff;
}

@media (max-width: 900px) {
  .site-header {
    height: 80px;
  }

  .header-actions {
    gap: 8px;
  }

  .site-nav {
    position: absolute;
    z-index: 30;
    top: calc(100% + 12px);
    right: 0;
    width: min(280px, calc(100vw - 40px));
    padding: 10px;
    border: 1px solid rgb(39 52 106 / 10%);
    border-radius: 20px;
    display: grid;
    gap: 2px;
    background: var(--surface);
    box-shadow: 0 20px 50px rgb(39 52 106 / 16%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition:
      opacity 160ms ease,
      transform 160ms ease,
      visibility 160ms ease;
  }

  .site-header.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-header .site-nav .nav-link {
    min-height: 46px;
    padding: 0 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    color: var(--ink);
    font-size: 0.95rem;
  }

  .site-header .site-nav .nav-link:hover,
  .site-header .site-nav .nav-link:focus-visible {
    background: var(--mint);
  }

  .site-header .site-nav .nav-link::after {
    display: none;
  }

  .menu-toggle {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
  }

  .hero {
    min-height: auto;
    margin-bottom: 72px;
    padding: 56px 42px 44px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero-copy-block {
    max-width: 640px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 7vw, 4.4rem);
  }

  .hero-copy {
    margin: 20px 0 24px;
  }

  .hero-art,
  .plan-hero-art {
    width: min(560px, 100%);
    margin: 0 auto;
  }

  .hero-art {
    min-height: 320px;
  }

  .counting-line {
    top: 0;
    width: 220px;
    height: 105px;
  }

  .art-card {
    min-height: 118px;
    padding: 20px;
    gap: 14px;
  }

  .art-card-package {
    top: 48px;
    width: min(350px, 78%);
  }

  .art-card-time {
    top: 156px;
    right: 0;
    width: min(300px, 70%);
  }

  .art-card-habit {
    left: 54px;
    width: min(320px, 72%);
  }

  .plans-hero {
    min-height: auto;
    padding: 44px 44px 30px;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .plan-hero-art {
    width: min(500px, 100%);
    min-height: 290px;
  }

  .plan-art-curve {
    width: 220px;
    height: 126px;
    border-width: 9px;
  }

  .plan-preview-card {
    min-width: 205px;
    padding: 20px;
    border-radius: 20px;
  }

  .plan-preview-free {
    top: 54px;
  }

  .plan-preview-solo {
    bottom: 18px;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card {
    min-height: 320px;
    padding: 24px;
  }

  .feature-grid .feature-card:last-child {
    grid-column: 1 / -1;
  }

  .feature-card h3 {
    margin-top: 42px;
  }

  .how-it-works {
    padding: 88px max(32px, calc((100% - 1160px) / 2));
    grid-template-columns: minmax(220px, 0.85fr) minmax(0, 1.15fr);
    gap: 40px;
  }

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

  .plan-teaser {
    padding: 72px 20px 56px;
  }

  .plan-teaser-shell {
    padding: 36px;
    grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
    gap: 32px;
  }

  .plan-teaser-trial {
    padding: 24px;
  }

  .plan-faq {
    grid-template-columns: 1fr;
  }

  .plan-faq {
    gap: 48px;
  }

  .plan-faq-heading {
    position: static;
  }

  .audience-hero {
    min-height: auto;
    padding: 48px 42px 34px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

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

  .audience-hero-art {
    width: min(280px, 48%);
    margin-right: 5%;
    justify-self: end;
  }

  .audience-fit {
    padding: 44px 0 72px;
  }

  .audience-start {
    margin-top: -32px;
  }

  .audience-heading {
    margin-bottom: 28px;
  }

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

  .fit-card {
    min-height: 330px;
    padding: 24px;
  }

  .fit-art {
    width: 126px;
    height: 94px;
    margin: 8px auto 28px;
  }

  .fit-card h3 {
    font-size: 1.35rem;
  }

  .fit-card small {
    margin-top: 22px;
  }

  .fit-grid .fit-card:last-child {
    min-height: 260px;
    grid-column: 1 / -1;
  }

  .promise {
    padding-block: 112px;
  }

  .site-footer {
    gap: 20px;
    align-items: flex-start;
  }

  .site-footer nav {
    grid-template-columns: repeat(3, max-content);
    gap: 4px 18px;
    justify-content: end;
  }

  .profession-groups {
    grid-template-columns: 1fr;
  }

  .profession-section {
    padding: 38px 0 78px;
  }

  .profession-heading {
    margin-bottom: 30px;
  }

  .profession-group {
    padding: 18px 28px 22px;
  }

  .profession-group summary {
    min-height: 44px;
    align-items: center;
  }

  .profession-group summary::after {
    width: 22px;
    height: 22px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    content: "›";
    font-size: 1.45rem;
    line-height: 1;
    transform: rotate(90deg);
    transition: transform 160ms ease;
  }

  .profession-group[open] summary::after {
    transform: rotate(-90deg);
  }

  .shared-needs-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .shared-needs {
    padding-block: 72px;
  }

  .audience-cta {
    padding-block: 80px 72px;
  }
}

@media (min-width: 700px) and (max-width: 900px) {
  .plan-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-page-grid .price-card-free {
    grid-column: 1 / -1;
  }

  .plan-page-grid .price-card {
    padding: 28px;
  }
}

@media (max-width: 600px) {
  .site-header {
    width: calc(100% - 24px);
    height: 76px;
    z-index: 20;
  }

  .brand-wordmark {
    font-size: 2rem;
  }

  .text-button {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .site-nav {
    position: absolute;
    z-index: 30;
    top: calc(100% + 12px);
    right: 0;
    width: min(248px, calc(100vw - 24px));
    padding: 10px;
    border: 1px solid rgb(39 52 106 / 10%);
    border-radius: 20px;
    display: grid;
    gap: 2px;
    background: var(--surface);
    box-shadow: 0 20px 50px rgb(39 52 106 / 16%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    visibility: hidden;
    transition:
      opacity 160ms ease,
      transform 160ms ease,
      visibility 160ms ease;
  }

  .site-header.menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-header .site-nav .nav-link {
    min-height: 46px;
    padding: 0 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    color: var(--ink);
    font-size: 0.95rem;
  }

  .site-header .site-nav .nav-link:hover,
  .site-header .site-nav .nav-link:focus-visible {
    background: var(--mint);
  }

  .site-header .site-nav .nav-link::after {
    display: none;
  }

  .menu-toggle {
    display: grid;
    flex: 0 0 auto;
    place-items: center;
  }

  .button-small {
    min-height: 44px;
    padding-inline: 14px;
    font-size: 0.84rem;
  }

  .hero {
    width: min(100% - 24px, 1160px);
    min-height: auto;
    margin-bottom: 56px;
    padding: 56px 22px 36px;
    border-radius: 26px;
    gap: 36px;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 3.15rem);
    line-height: 1.08;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-art {
    min-height: 0;
    padding-top: 58px;
    display: grid;
    gap: 14px;
  }

  .art-card {
    position: relative;
    inset: auto;
    min-height: 132px;
    padding: 20px;
    gap: 14px;
  }

  .art-card-package {
    width: 100%;
    justify-self: start;
  }

  .art-card-time {
    width: calc(100% - 14px);
    justify-self: end;
  }

  .art-card-habit {
    width: calc(100% - 6px);
    justify-self: start;
  }

  .feature-section {
    padding-block: 56px 84px;
  }

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

  .feature-grid .feature-card:last-child {
    grid-column: auto;
  }

  .feature-card {
    min-height: 340px;
  }

  .how-it-works {
    padding: 72px 20px;
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .how-it-works h2 {
    max-width: 350px;
  }

  .steps li {
    padding-block: 18px;
    gap: 14px;
  }

  .steps li > span {
    width: 30px;
    height: 30px;
  }

  .plan-teaser {
    padding: 72px 12px 48px;
  }

  .plan-teaser-shell {
    grid-template-columns: 1fr;
    border-radius: 26px;
    padding: 30px 22px;
    gap: 28px;
  }

  .plan-teaser-copy h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .plan-teaser-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .plan-teaser-trial {
    padding: 22px;
  }

  .plans-page {
    width: calc(100% - 24px);
    padding-top: 20px;
  }

  .plans-hero {
    min-height: auto;
    border-radius: 26px;
    padding: 48px 22px 28px;
    gap: 22px;
  }

  .plans-hero h1 {
    font-size: clamp(2.5rem, 10.5vw, 3.05rem);
    line-height: 1.16;
  }

  .plans-hero-copy > p:not(.eyebrow) {
    margin-top: 24px;
    font-size: 1rem;
  }

  .plans-hero-actions {
    margin-top: 24px;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }

  .plans-hero-actions .button {
    width: 100%;
  }

  .plan-hero-art {
    min-height: 0;
    padding-top: 2px;
    display: block;
  }

  .plan-mobile-path {
    width: fit-content;
    max-width: 100%;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid rgb(39 52 106 / 9%);
    border-radius: 999px;
    display: flex;
    gap: 10px;
    align-items: center;
    background: rgb(255 255 255 / 62%);
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 700;
  }

  .plan-mobile-path-arrow {
    color: var(--coral);
    font-size: 1.15rem;
  }

  .plan-art-curve,
  .plan-art-dot,
  .plan-preview-card {
    display: none;
  }

  .plan-page-grid {
    margin-top: 24px;
  }

  .plan-pricing-section {
    margin-top: 52px;
  }

  .plan-pricing-heading {
    margin: 0;
    text-align: left;
  }

  .plan-page-trial {
    padding: 28px 24px;
    align-items: flex-start;
    flex-direction: column;
  }

  .trial-counting-mark {
    top: -42px;
    right: -28px;
  }

  .plan-faq {
    margin-top: 64px;
    padding: 34px 20px;
  }

  .promise {
    padding-block: 100px;
  }

  .audience-hero {
    width: calc(100% - 24px);
    min-height: auto;
    margin-bottom: 30px;
    padding: 36px 24px 22px;
    border-radius: 26px;
    display: block;
  }

  .audience-hero h1 {
    max-width: 340px;
    font-size: clamp(2.55rem, 11vw, 3rem);
    line-height: 1.25;
    letter-spacing: -0.04em;
  }

  .audience-hero-copy > p:not(.eyebrow) {
    margin: 22px 0 26px;
    font-size: 1rem;
  }

  .audience-hero .button {
    width: 100%;
  }

  .audience-hero-art {
    width: 142px;
    height: 118px;
    margin: 10px 0 0 auto;
    display: block;
    stroke-width: 12;
  }

  .audience-fit {
    width: calc(100% - 40px);
    padding: 48px 0 68px;
  }

  .audience-start {
    width: calc(100% - 40px);
    margin: -22px auto 46px;
    text-align: left;
  }

  .audience-heading {
    margin-bottom: 12px;
    text-align: left;
  }

  .audience-heading h2,
  .profession-heading h2 {
    font-size: 2rem;
  }

  .fit-grid {
    display: block;
  }

  .fit-grid .fit-card:last-child {
    min-height: 0;
  }

  .fit-card {
    min-height: 0;
    padding: 20px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    background: transparent;
  }

  .fit-mobile-number {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--ink);
    font-weight: 700;
  }

  .fit-card-package .fit-mobile-number {
    background: var(--coral);
  }

  .fit-card-time .fit-mobile-number {
    background: var(--mint-strong);
  }

  .fit-card-repeat .fit-mobile-number {
    background: var(--lime);
  }

  .fit-art {
    display: none;
  }

  .fit-card-copy {
    margin: 0;
    text-align: left;
  }

  .fit-card h3 {
    margin-bottom: 2px;
    font-size: 1.18rem;
  }

  .fit-card p {
    max-width: none;
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .fit-card small {
    display: none;
  }

  .profession-section {
    width: calc(100% - 40px);
    padding: 30px 0 72px;
  }

  .profession-heading {
    margin-bottom: 18px;
    text-align: left;
  }

  .profession-heading .eyebrow {
    margin-bottom: 10px;
  }

  .profession-groups {
    border-left: 0;
    grid-template-columns: 1fr;
  }

  .profession-group {
    padding: 20px 0;
    border-right: 0;
  }

  .profession-group summary {
    min-height: 48px;
    align-items: center;
  }

  .profession-group summary::after {
    width: 24px;
    height: 24px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    content: "›";
    font-size: 1.55rem;
    line-height: 1;
    transform: rotate(90deg);
    transition: transform 160ms ease;
  }

  .profession-group[open] summary::after {
    transform: rotate(-90deg);
  }

  .profession-group summary > span {
    margin-right: auto;
    font-size: 1.08rem;
  }

  .profession-group summary small {
    margin-right: 14px;
    font-size: 0.875rem;
  }

  .profession-list {
    margin-top: 8px;
    gap: 6px 18px;
    font-size: 0.92rem;
  }

  .profession-expand {
    min-height: 48px;
    margin-top: 20px;
  }

  .shared-needs {
    padding: 52px 20px 42px;
  }

  .shared-needs-inner {
    display: block;
  }

  .shared-needs h2 {
    margin-bottom: 28px;
    font-size: 2.05rem;
  }

  .needs-list {
    display: block;
  }

  .needs-list::before {
    display: none;
  }

  .needs-list li {
    min-height: 54px;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
    display: flex;
    flex-direction: row-reverse;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    text-align: left;
  }

  .need-node {
    width: 18px;
    height: 18px;
    border-width: 2px;
  }

  .audience-cta {
    width: calc(100% - 40px);
    padding: 62px 0 56px;
  }

  .audience-cta .brand-wordmark {
    margin-bottom: 18px;
    font-size: 2.4rem;
  }

  .audience-cta h2 {
    font-size: 1rem;
  }

  .audience-cta .button {
    width: 100%;
  }

  .site-footer {
    gap: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
  }
}

@media (max-width: 900px) {
  .product-tour-page {
    padding-bottom: 76px;
  }

  .product-tour-hero {
    min-height: auto;
    margin-bottom: 82px;
    padding: 54px 42px 42px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-tour-hero-copy {
    max-width: 650px;
  }

  .product-tour-hero h1 {
    font-size: clamp(3.6rem, 8vw, 4.8rem);
  }

  .product-tour-hero-media {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 22px;
    align-items: end;
  }

  .product-tour-hero-media .tour-device {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .tour-device-overview {
    max-width: 300px;
    justify-self: end;
  }

  .tour-device-line {
    max-width: 360px;
    justify-self: start;
  }

  .product-tour-intro {
    margin-bottom: 58px;
  }

  .product-tour-step {
    min-height: 570px;
    padding: 36px;
    grid-template-columns: minmax(0, 0.88fr) minmax(300px, 1.12fr);
    gap: 34px;
  }

  .product-tour-number {
    margin-bottom: 26px;
  }

  .product-tour-step h2 {
    font-size: clamp(2.15rem, 5vw, 3rem);
  }

  .product-tour-step .product-tour-step-media {
    min-height: 480px;
    padding-inline: 16px;
  }

  .product-tour-step-media .tour-device {
    width: min(100%, 290px);
  }

  .product-tour-step-media-line .tour-device {
    width: min(100%, 340px);
  }
}

@media (max-width: 600px) {
  .product-tour-page {
    padding-bottom: 52px;
  }

  .product-tour-hero {
    width: calc(100% - 24px);
    margin-bottom: 64px;
    padding: 46px 20px 28px;
    border-radius: 26px;
    gap: 30px;
  }

  .product-tour-hero h1 {
    font-size: clamp(3rem, 14vw, 3.7rem);
  }

  .product-tour-hero-copy > p:not(.eyebrow) {
    margin: 20px 0 24px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .product-tour-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-tour-actions .button {
    width: 100%;
  }

  .product-tour-hero-media {
    position: relative;
    min-height: 432px;
    display: block;
  }

  .product-tour-hero-media .tour-device {
    position: absolute;
  }

  .product-tour-hero-media .tour-device-line {
    top: 62px;
    left: -8px;
    z-index: 1;
    width: 72%;
    transform: rotate(-2deg);
  }

  .product-tour-hero-media .tour-device-overview {
    top: 0;
    right: -8px;
    z-index: 2;
    width: 55%;
    transform: rotate(2deg);
  }

  .tour-device {
    padding: 6px;
    border-radius: 36px;
  }

  .tour-device img {
    border-radius: 30px;
  }

  .product-tour-intro {
    width: calc(100% - 40px);
    margin-bottom: 44px;
    text-align: left;
  }

  .product-tour-intro h2 {
    font-size: 2.65rem;
  }

  .product-tour-intro > p:not(.eyebrow) {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .product-tour-steps {
    width: calc(100% - 24px);
    gap: 18px;
  }

  .product-tour-step {
    min-height: 0;
    padding: 30px 20px 0;
    border-radius: 26px;
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .product-tour-step-copy,
  .product-tour-step-reversed .product-tour-step-copy {
    order: 1;
  }

  .product-tour-step .product-tour-step-media,
  .product-tour-step-reversed .product-tour-step-media {
    order: 2;
  }

  .product-tour-number {
    margin-bottom: 24px;
    font-size: 1rem;
  }

  .product-tour-step h2 {
    font-size: 2.35rem;
  }

  .product-tour-step-copy > p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 1rem;
    line-height: 1.7;
  }

  .product-tour-motif {
    margin-top: 28px;
  }

  .product-tour-step .product-tour-step-media {
    min-height: 0;
    margin-inline: -8px;
    padding: 24px 12px 0;
    border-radius: 24px 24px 0 0;
  }

  .product-tour-step-media .tour-device {
    width: min(90%, 310px);
  }

  .product-tour-step-media-line .tour-device {
    width: min(96%, 350px);
  }

  .product-tour-cta {
    width: calc(100% - 24px);
    margin-top: 54px;
    padding: 54px 22px;
    border-radius: 26px;
  }

  .product-tour-cta h2 {
    font-size: 2.75rem;
  }

  .product-tour-cta .button {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .how-it-works.how-product-proof {
    padding: 82px 32px;
    grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1.08fr);
    gap: 44px;
  }

  .how-product-story {
    gap: 28px;
  }

  .how-product-story .how-copy h2 {
    font-size: clamp(2.3rem, 5.8vw, 3.25rem);
  }

  .how-product-media {
    min-height: 570px;
    border-radius: 28px;
  }

  .how-product-device {
    width: min(86%, 350px);
  }

  .how-product-badge {
    right: 14px;
    bottom: 54px;
    padding: 11px 13px;
    font-size: 0.8rem;
  }
}

@media (max-width: 600px) {
  .how-it-works.how-product-proof {
    padding: 72px 20px 0;
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .how-product-story {
    gap: 30px;
  }

  .how-product-story .how-copy h2 {
    max-width: 340px;
    font-size: 2.65rem;
  }

  .how-product-media {
    min-height: 520px;
    margin-inline: -8px;
    border-radius: 28px 28px 0 0;
  }

  .how-product-device {
    width: min(88%, 330px);
    margin-bottom: -38px;
    border-radius: 40px 40px 0 0;
    transform: none;
  }

  .how-product-device img {
    border-radius: 33px 33px 0 0;
  }

  .how-product-badge {
    right: 8px;
    bottom: 44px;
  }

  .content-page {
    width: calc(100% - 32px);
    padding-top: 52px;
  }

  .content-page h1 {
    font-size: 2.75rem;
    line-height: 1.12;
  }

  .content-lead {
    margin-bottom: 38px;
  }

  .answer-card,
  .guide-article,
  .content-callout {
    border-radius: 20px;
    padding: 24px 20px;
  }

  .guide-index {
    grid-template-columns: 1fr;
  }

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

/* Brand readability floor for mobile and LINE in-app browsers. */
.eyebrow,
.pilot-note,
.art-card small,
.art-card p,
.feature-number,
.chat-example,
.steps p,
footer,
.share-status {
  font-size: 0.875rem;
}

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