:root {
  color-scheme: light;
  --paper: #fbfaf7;
  --ground: #f3f1eb;
  --ink: #17253a;
  --muted: #48566a;
  --teal: #075057;
  --deep: #073e43;
  --rule: #d9ddd9;
  --amber: #f4c95d;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
.brand-lockup {
  min-width: 0;
}
.brand-tagline {
  display: block;
  max-width: 34ch;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: normal;
  overflow-wrap: break-word;
  padding-bottom: 10px;
}
.placement-review-link {
  color: white;
  display: block;
  padding: 8px;
}
.brand-study {
  border: 1px solid var(--rule);
  margin: 12px 0 40px;
  background: var(--paper);
}
.brand-study-mobile {
  max-width: 390px;
}
.consumer-brand-header {
  padding: 22px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--rule);
}
.consumer-brand-name {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.consumer-study-content {
  padding: 24px;
}
.consumer-study-content h2 {
  font-size: 1.8rem;
}
.brand-study-mobile .consumer-brand-header {
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 700px) {
  .header {
    align-items: flex-start !important;
    padding-top: 12px;
    padding-bottom: 8px;
  }
  .header > .brand-lockup {
    max-width: calc(100% - 78px);
  }
  .header .brand {
    font-size: 0.95rem;
  }
  .header .brand-tagline {
    font-size: 0.78rem;
  }
  .mobile-menu {
    margin-top: 5px;
  }
  .mobile-menu[open] {
    margin-top: 5px !important;
  }
  .mobile-nav {
    top: 100% !important;
  }
  .consumer-brand-header {
    flex-direction: column;
    gap: 4px;
  }
}
body {
  margin: 0;
}
a {
  color: var(--teal);
  text-underline-offset: 0.25em;
}
button,
select {
  font: inherit;
}
a,
button,
summary,
select {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
summary:focus-visible,
select:focus-visible {
  outline: 3px solid #117079;
  outline-offset: 5px;
}
p,
li {
  line-height: 1.7;
}
p {
  max-width: 65ch;
}
h1,
h2,
h3 {
  font-family: Archivo, "Arial Narrow", "Segoe UI", sans-serif;
  letter-spacing: -0.035em;
  line-height: 1.1;
}
h1 {
  font-size: clamp(2.65rem, 5vw, 4.6rem);
  font-weight: 650;
  margin: 0 0 1.5rem;
  max-width: 14ch;
}
h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 620;
  margin: 0 0 1.25rem;
}
h3 {
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  font-weight: 620;
}
img,
svg {
  max-width: 100%;
}
.wrap {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
}
.preview {
  background: var(--deep);
  color: #fff;
  font-size: 0.78rem;
  padding: 9px 20px;
  text-align: center;
  line-height: 1.6;
}
.skip {
  position: absolute;
  top: -100px;
  padding: 16px;
  background: white;
  z-index: 10;
}
.skip:focus {
  top: 0;
}
.header {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--rule);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 720;
  color: var(--ink);
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  min-height: 48px;
}
.brand svg {
  width: 30px;
  height: 30px;
  flex: none;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav a,
.mobile-nav a {
  font-size: 0.93rem;
  text-decoration: none;
  min-height: 48px;
  display: flex;
  align-items: center;
}
.nav a[aria-current="page"] {
  text-decoration: underline;
}
.nav .signin {
  border: 1px solid var(--teal);
  padding: 0 20px;
  border-radius: 6px;
}
.mobile-menu {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.13fr 1fr;
  gap: 75px;
  align-items: center;
  padding: 88px 0 94px;
}
.hero .intro {
  font-size: 1.16rem;
  color: var(--muted);
  margin-bottom: 28px;
  max-width: 44ch;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 52px;
  padding: 14px 22px;
  background: var(--teal);
  color: #fff;
  text-decoration: none;
  font-weight: 650;
  border-radius: 6px;
  border: 1px solid var(--teal);
}
.button:hover {
  background: var(--deep);
}
.button.light {
  background: var(--paper);
  color: var(--teal);
}
.small {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.7;
}
.hero .small {
  margin-top: 16px;
}
.example {
  padding: 30px;
  background: var(--ground);
  border-radius: 12px;
  transform: rotate(1deg);
}
.example-inner {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 28px;
  transform: rotate(-1deg);
  box-shadow: 0 14px 26px #17253a08;
}
.example-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.83rem;
  color: var(--muted);
  margin-bottom: 28px;
}
.dot {
  width: 9px;
  height: 9px;
  display: inline-block;
  background: var(--teal);
  border-radius: 50%;
  margin-right: 8px;
}
.example h2 {
  font-size: 1.7rem;
  max-width: 15ch;
  margin-bottom: 20px;
}
.date {
  font-size: 2rem;
  font-weight: 620;
  letter-spacing: -0.035em;
  margin: 4px 0 26px;
}
.remind {
  border-top: 1px solid var(--rule);
  padding-top: 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.remind svg {
  width: 23px;
  flex: none;
  color: var(--teal);
}
.remind p {
  margin: 0;
  font-size: 0.9rem;
}
.remind strong {
  display: block;
}
.example-foot {
  margin: 20px 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}
.section {
  padding: 76px 0;
  border-top: 1px solid var(--rule);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 36ch;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}
.benefits h3 {
  margin: 0 0 14px;
}
.benefits p {
  color: var(--muted);
  margin: 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  counter-reset: step;
}
.step:before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  color: var(--teal);
  font-weight: 650;
  font-size: 1rem;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}
.step h3 {
  margin: 24px 0 12px;
}
.step p {
  color: var(--muted);
  margin: 0;
}
.situations {
  background: var(--ground);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.rows {
  margin: 0;
}
.row {
  padding: 22px 0;
  border-top: 1px solid var(--rule);
}
.row:first-child {
  padding-top: 0;
  border: 0;
}
.row h3 {
  margin: 0 0 8px;
}
.row p {
  margin: 0;
  color: var(--muted);
}
.trust {
  background: var(--deep);
  color: var(--paper);
  padding: 64px;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 65px;
}
.trust h2 {
  max-width: 15ch;
}
.trust p {
  margin: 0 0 20px;
  color: #e1e7e5;
}
.trust a {
  color: #fff;
}
.guide-list {
  border-top: 1px solid var(--rule);
}
.guide {
  display: grid;
  grid-template-columns: 180px 1fr 32px;
  gap: 22px;
  padding: 27px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: var(--ink);
  align-items: center;
}
.guide:hover h3 {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.guide h3 {
  margin: 0 0 9px;
  font-size: 1.5rem;
}
.guide p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.guide .tag {
  font-size: 0.84rem;
  color: var(--muted);
}
.arrow {
  font-size: 1.5rem;
  color: var(--teal);
}
.faq {
  max-width: 800px;
}
.faq details {
  border-bottom: 1px solid var(--rule);
}
.faq summary {
  font-weight: 600;
  font-size: 1.06rem;
  padding: 24px 4px;
  cursor: pointer;
  min-height: 64px;
}
.faq details p {
  padding: 0 4px 20px;
  color: var(--muted);
  margin: 0;
}
.closing {
  padding: 70px 0;
  text-align: center;
}
.closing h2 {
  margin-bottom: 25px;
}
.closing p {
  margin: 0 auto 24px;
}
.footer {
  border-top: 1px solid var(--rule);
  padding: 44px 0 24px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  max-width: 600px;
}
.footer-links a {
  font-size: 0.88rem;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}
.footer-bottom {
  padding-top: 30px;
  margin-top: 22px;
  border-top: 1px solid var(--rule);
  display: flex;
  justify-content: space-between;
  gap: 25px;
  color: var(--muted);
  font-size: 0.8rem;
}
.page-title {
  padding: 65px 0 40px;
  max-width: 780px;
}
.page-title h1 {
  max-width: 18ch;
  font-size: clamp(2.7rem, 4.5vw, 4rem);
}
.page-title p {
  font-size: 1.15rem;
  color: var(--muted);
}
.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 30px;
  display: inline-block;
  padding: 8px 0;
}
.reading {
  max-width: 740px;
  padding-bottom: 72px;
}
.reading h2 {
  font-size: 1.8rem;
  margin-top: 42px;
}
.reading h3 {
  margin-top: 32px;
}
.notice {
  border-left: 4px solid var(--teal);
  padding: 16px 22px;
  background: var(--ground);
  margin: 24px 0;
}
.notice p {
  margin: 0;
}
.article-meta {
  color: var(--muted);
  font-size: 0.9rem;
}
.article-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 40px;
  padding-bottom: 56px;
}
.article-list .guide {
  display: block;
  min-width: 0;
  border: 0;
  padding: 0;
}
.guide-picture {
  display: block;
}
.guide-picture img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
}
.article-list h2,
.article-list h3 {
  font-size: 1.55rem;
  line-height: 1.3;
  margin: 22px 0 12px;
  overflow-wrap: anywhere;
}
.article-list p {
  margin: 0 0 12px;
}
.article-list .article-meta {
  font-size: 0.85rem;
}
.article-wrap {
  max-width: 860px;
  padding-top: 36px;
}
.blog-article {
  max-width: 100%;
  font-size: 1.125rem;
  line-height: 1.75;
  overflow-wrap: anywhere;
}
.blog-article .page-title {
  padding: 8px 0 20px;
}
.blog-article .page-title h1 {
  max-width: 24ch;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
}
.blog-article figure {
  margin: 36px 0;
}
.blog-article img {
  display: block;
  width: 100%;
  height: auto;
}
.blog-article figcaption {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 12px;
}
.article-table {
  overflow-x: auto;
  margin: 28px 0;
}
.article-table table {
  border-collapse: collapse;
  width: 100%;
  min-width: 540px;
  font-size: 1rem;
}
.article-table th,
.article-table td {
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--rule);
  padding: 14px 16px;
}
.article-table th {
  background: var(--ground);
}
.article-return {
  border-top: 1px solid var(--rule);
  padding-top: 28px;
  margin-top: 40px;
}
.article-return a {
  display: inline-block;
  padding: 12px 0;
}
@media (max-width: 700px) {
  .article-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
  }
  .article-wrap {
    padding-top: 18px;
  }
}
.filter {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 20px 0 30px;
  flex-wrap: wrap;
}
.filter select {
  min-height: 48px;
  border: 1px solid var(--muted);
  border-radius: 5px;
  background: var(--paper);
  color: var(--ink);
  padding: 8px 35px 8px 12px;
}
.filter label {
  font-weight: 600;
}
.empty {
  padding: 32px 0;
  color: var(--muted);
}
[hidden] {
  display: none !important;
}
.help-links {
  margin-bottom: 65px;
}
.help-links .row a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
}
.handoff {
  max-width: 720px;
  margin: 60px auto 90px;
  padding: 40px;
  border: 1px solid var(--rule);
  border-radius: 10px;
}
.handoff h1 {
  font-size: 2.7rem;
  max-width: 20ch;
}
.handoff .button {
  margin-top: 20px;
}
.state-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  border-top: 1px solid var(--rule);
  padding-top: 20px;
  margin-top: 28px;
}
.state-links a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 950px) {
  .wrap {
    padding: 0 28px;
  }
  .hero {
    gap: 28px;
  }
  .nav {
    gap: 16px;
  }
  .hero h1 {
    font-size: 3.3rem;
  }
  .example {
    padding: 18px;
  }
  .example-inner {
    padding: 22px;
  }
  .split {
    gap: 40px;
  }
  .trust {
    padding: 42px;
    gap: 40px;
  }
  .benefits {
    gap: 24px;
  }
}
@media (max-width: 700px) {
  .wrap {
    padding: 0 22px;
  }
  .header {
    min-height: 82px;
    position: relative;
  }
  .nav {
    display: none;
  }
  .mobile-menu {
    display: block;
  }
  .mobile-menu summary {
    min-width: 58px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--rule);
    border-radius: 5px;
    cursor: pointer;
    list-style: none;
    font-size: 0.9rem;
  }
  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }
  .mobile-menu[open] {
    align-self: flex-start;
    margin-top: 17px;
  }
  .mobile-nav {
    position: absolute;
    top: 81px;
    left: 0;
    right: 0;
    background: var(--paper);
    z-index: 5;
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 12px 20px #17253a0d;
    padding: 12px 20px 20px;
  }
  .mobile-nav a {
    min-height: 52px;
    border-bottom: 1px solid var(--rule);
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 0 55px;
    gap: 32px;
  }
  .hero h1 {
    font-size: 3rem;
    max-width: 13ch;
  }
  .hero .intro {
    font-size: 1.05rem;
  }
  .hero .button {
    width: 100%;
  }
  .example {
    transform: none;
    margin: 0 2px;
  }
  .example-inner {
    transform: none;
  }
  .section {
    padding: 48px 0;
  }
  .benefits,
  .steps,
  .split,
  .trust {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .benefits {
    gap: 26px;
  }
  .benefits h3 {
    font-size: 1.4rem;
  }
  .steps {
    gap: 30px;
  }
  .step:before {
    padding-bottom: 12px;
  }
  .step h3 {
    margin-top: 16px;
  }
  .section-head {
    display: block;
    margin-bottom: 28px;
  }
  .section-head p {
    margin-top: 16px;
  }
  .trust {
    padding: 30px 24px;
    gap: 8px;
  }
  .trust h2 {
    font-size: 2rem;
  }
  .guide {
    grid-template-columns: 1fr 25px;
    gap: 12px;
  }
  .guide .tag {
    grid-column: 1 / -1;
  }
  .guide h3 {
    font-size: 1.3rem;
  }
  .guide p {
    font-size: 0.9rem;
  }
  .footer-top,
  .footer-bottom {
    display: block;
  }
  .footer-links {
    margin-top: 20px;
    gap: 6px 24px;
  }
  .footer-bottom p {
    margin: 0 0 10px;
  }
  .closing {
    padding: 52px 0;
  }
  .page-title {
    padding: 40px 0 25px;
  }
  .page-title h1 {
    font-size: 2.7rem;
  }
  .handoff {
    padding: 26px 22px;
    margin: 35px 0 55px;
  }
  .handoff h1 {
    font-size: 2.25rem;
  }
  .preview {
    font-size: 0.72rem;
  }
  .brand {
    font-size: 1.05rem;
    gap: 8px;
  }
  .filter {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
}
.homepage h1,
.homepage h2,
.homepage h3 {
  font-family: Archivo, "Segoe UI", system-ui, sans-serif;
}
.journey {
  scroll-margin-top: 20px;
}
.journey-members {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 24px;
}
.journey-members > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--muted);
}
.journey-members svg,
.person-initial svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.journey-toolbar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}
.journey-toolbar label {
  font-size: 0.9rem;
  font-weight: 650;
}
.journey-toolbar select,
.journey button {
  font: inherit;
  min-height: 48px;
  border-radius: 5px;
  padding: 10px 16px;
  border: 1px solid #a6b8b6;
  background: var(--paper);
  color: var(--deep);
  cursor: pointer;
}
.journey-toolbar select {
  max-width: 100%;
}
.journey-toolbar .journey-play {
  background: var(--amber);
  border-color: #c28c16;
  color: var(--ink);
  font-weight: 650;
  margin-left: auto;
}
.journey button:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 4px;
}
.journey button:disabled {
  opacity: 0.5;
  cursor: default;
}
.journey-boundary {
  max-width: 95ch;
  margin-bottom: 26px;
}
.journey-story {
  margin: 25px 0;
  padding: 26px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: #f3f5f0;
}
.journey-story-title {
  margin: 0 0 20px;
}
.journey-route {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(var(--journey-steps, 5), 1fr);
  margin: 0 0 26px;
  padding: 0;
}
.journey-choices {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(170px, 100%), 1fr));
  gap: 12px;
  margin: 0 0 18px;
}
.journey-choices > div {
  padding: 14px;
  background: var(--paper);
  border: 1px solid #b5c9c1;
  border-radius: 5px;
}
.journey-choices dt {
  color: var(--muted);
  font-size: 0.8rem;
  margin-bottom: 8px;
}
.journey-choices dd {
  margin: 0;
  color: var(--deep);
  font-size: 0.95rem;
  font-weight: 650;
}
.journey-route li {
  position: relative;
}
.journey-route li:not(:last-child):after {
  content: "";
  position: absolute;
  left: 50%;
  right: -50%;
  top: 23px;
  height: 2px;
  background: #b8cbc6;
}
.journey-route button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  background: transparent;
  width: 100%;
  border: 0;
  padding: 0 4px;
  font-size: 0.83rem;
}
.route-node {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  width: 46px;
  background: #f3f5f0;
  border: 2px solid #a6b8b6;
  border-radius: 50%;
  color: var(--deep);
  font-weight: 650;
}
.journey-route [aria-current="step"] .route-node {
  background: var(--amber);
  border-color: #9a630c;
  color: var(--ink);
}
.journey-route [aria-current="step"] {
  font-weight: 700;
}
.journey-scene {
  margin-bottom: 30px;
}
.journey-enhanced .journey-scene {
  margin: 0;
  min-height: 355px;
}
.scene-story {
  max-width: 85ch;
}
.journey-date {
  font-size: 0.84rem;
  color: var(--muted);
  margin: 0 0 8px;
}
.scene-story h4 {
  font-family: "Segoe UI", system-ui, sans-serif;
  font-size: 1.55rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 10px;
}
.scene-story > p:last-child {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0 0 22px;
  max-width: 85ch;
}
.message-route {
  display: grid;
  grid-template-columns: 1fr 70px 1.4fr;
  align-items: center;
  padding: 18px 0;
}
.route-source {
  background: var(--deep);
  color: white;
  padding: 22px;
  border-radius: 6px;
}
.route-source-label,
.route-source-caption {
  display: block;
  font-size: 0.83rem;
  color: #e1e7e5;
}
.route-source strong {
  display: block;
  font-size: 1.3rem;
  margin: 10px 0;
}
.flow-connector {
  position: relative;
  height: 2px;
  background: #79958c;
}
.flow-connector:after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #79958c;
}
.travelling-signal {
  display: none;
}
.journey-enhanced .has-signal .travelling-signal {
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: -4px;
  left: 0;
  border-radius: 50%;
  background: #9a630c;
  animation: reminder-route 850ms cubic-bezier(0.16, 1, 0.3, 1) 1;
  animation-fill-mode: forwards;
}
@keyframes reminder-route {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(60px);
    opacity: 0;
  }
}
.recipient-list {
  display: grid;
  gap: 10px;
  border-left: 2px solid #79958c;
  padding-left: 20px;
}
.journey-recipient {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 5px;
}
.person-initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 50%;
  background: #e1ebe5;
  color: var(--deep);
  font-size: 0.9rem;
  font-weight: 650;
}
.journey-recipient strong {
  font-size: 1rem;
}
.journey-recipient p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 4px 0 0;
}
.channel-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 9px 0 0;
}
.channel-list li {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #e8f0ed;
  padding: 4px 7px;
  font-size: 0.78rem;
  color: var(--deep);
}
.channel-list svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}
.recipient-note {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 0;
}
.journey-bottom {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.journey-controls {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.journey-status {
  color: var(--muted);
  font-size: 0.82rem;
  max-width: 45ch;
}
.is-done .route-source {
  background: #215348;
}
@media (max-width: 700px) {
  .journey-toolbar {
    align-items: stretch;
  }
  .journey-toolbar label {
    width: 100%;
  }
  .journey-toolbar select {
    width: 100%;
  }
  .journey-toolbar .journey-play {
    margin: 0;
    width: 100%;
  }
  .journey-story {
    padding: 18px;
  }
  .journey-route {
    gap: 16px 0;
    grid-template-columns: repeat(4, 1fr);
  }
  .journey-route li:nth-child(4n):after {
    display: none;
  }
  .journey-route button {
    font-size: 0.7rem;
    padding: 0 1px;
    overflow-wrap: anywhere;
  }
  .route-node {
    height: 34px;
    width: 34px;
  }
  .journey-route li:not(:last-child):after {
    top: 17px;
  }
  .journey-enhanced .journey-scene {
    min-height: 0;
  }
  .message-route {
    grid-template-columns: 1fr;
    padding: 6px 0;
  }
  .flow-connector {
    width: 2px;
    height: 28px;
    margin-left: 30px;
  }
  .flow-connector:after {
    top: auto;
    bottom: 0;
    left: -4px;
    border-top: 7px solid #79958c;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 0;
  }
  .journey-enhanced .has-signal .travelling-signal {
    left: -4px;
    top: 0;
    animation-name: reminder-route-mobile;
  }
  .recipient-list {
    padding: 0;
    border-left: 0;
  }
  .journey-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
  .journey-status {
    margin: 0;
  }
}
@keyframes reminder-route-mobile {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(22px);
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .journey .travelling-signal {
    animation: none !important;
    display: none !important;
  }
}
.homepage .hero {
  padding: 44px 0;
  gap: 48px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
}
.homepage h1 {
  font-size: clamp(2.5rem, 4.3vw, 3.9rem);
  max-width: 18ch;
  line-height: 1.07;
  font-weight: 720;
  overflow-wrap: anywhere;
}
.homepage .hero .intro {
  margin-bottom: 22px;
  max-width: 44ch;
  font-size: 1.13rem;
}
.homepage .button {
  background: var(--amber);
  border-color: #c28c16;
  color: var(--ink);
}
.homepage .button:hover {
  background: #edbc40;
}
.homepage .button:focus-visible {
  outline: 3px solid var(--deep);
  outline-offset: 4px;
}
.homepage .section {
  padding: 38px 0;
}
.homepage h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
}
.homepage h3 {
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.homepage .section-head {
  margin-bottom: 26px;
}
.homepage .section-head p {
  font-size: 0.95rem;
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e8f0ed;
  color: var(--deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.feature-icon svg {
  width: 27px;
  height: 27px;
}
.renewal-preview {
  padding: 24px;
  border: 1px solid #c9d4d3;
  border-radius: 8px;
}
.renewal-preview .example-label {
  margin-bottom: 20px;
}
.sample-chip {
  background: #e8f0ed;
  color: var(--deep);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
}
.renewal-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.renewal-heading h2 {
  font-size: 1.5rem;
  margin: 0 0 6px;
}
.renewal-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.renewal-facts {
  margin: 0;
}
.renewal-facts > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--rule);
  align-items: center;
}
.renewal-facts dt {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}
.renewal-facts dt svg,
.continuity svg {
  width: 21px;
  height: 21px;
  flex: none;
  color: var(--deep);
}
.renewal-facts dd {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: right;
}
.next-step {
  background: #fff1ca;
  border-left: 3px solid #9a630c;
  padding: 13px 16px;
  margin-top: 10px;
}
.next-step strong {
  font-size: 0.85rem;
}
.next-step p {
  font-size: 0.94rem;
  margin: 4px 0 0;
}
.continuity {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 15px;
}
.continuity p {
  font-size: 0.83rem;
  color: var(--muted);
  margin: 0;
}
.renewal-preview .example-foot {
  text-align: left;
  font-size: 0.72rem;
  margin-top: 14px;
}
.homepage .benefits {
  gap: 26px;
}
.homepage .benefits > div {
  padding-right: 20px;
  border-right: 1px solid var(--rule);
}
.homepage .benefits > div:last-child {
  border-right: 0;
}
.homepage .benefits .feature-icon {
  margin-bottom: 14px;
}
.homepage .benefits p {
  font-size: 0.94rem;
}
.situation-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.situation-strip > a {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--rule);
  text-decoration: none;
}
.situation-strip h3 {
  color: var(--ink);
  margin: 3px 0 8px;
}
.situation-strip p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 12px;
}
.situation-strip a span:last-child {
  font-size: 0.85rem;
}
.situation-strip a:hover h3 {
  text-decoration: underline;
}
.homepage .trust {
  padding: 32px 38px;
  gap: 44px;
}
.homepage .guide {
  padding: 21px 0;
}
.homepage .closing {
  padding: 42px 0;
}
@media (max-width: 700px) {
  .homepage .hero {
    grid-template-columns: minmax(0, 1fr);
    padding: 30px 0;
    gap: 24px;
  }
  .homepage h1 {
    font-size: 2.7rem;
  }
  .homepage .hero .intro {
    font-size: 1rem;
  }
  .homepage .section {
    padding: 30px 0;
  }
  .renewal-preview {
    padding: 19px;
  }
  .homepage .benefits {
    gap: 20px;
  }
  .homepage .benefits > div {
    border-right: 0;
    border-bottom: 1px solid var(--rule);
    padding: 0 0 18px;
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 15px;
  }
  .homepage .benefits .feature-icon {
    grid-row: span 2;
  }
  .homepage .benefits h3 {
    margin: 0 0 7px;
  }
  .homepage .benefits p {
    grid-column: 2;
  }
  .situation-strip {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .homepage .trust {
    padding: 26px;
    gap: 12px;
  }
}

/* D11: one repeatable alert group within four lifecycle stages. */
.journey-phases {
  grid-template-columns: repeat(4, 1fr);
}
.alert-cycle {
  margin: 0 auto 30px;
  max-width: 720px;
  padding: 20px 24px 16px;
  border: 1px solid #b5c9c1;
  border-radius: 12px;
  background: var(--paper);
}
.alert-cycle-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--deep);
}
.alert-cycle-count {
  font-size: 0.85rem;
}
.alert-cycle-choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.alert-cycle-choices button {
  min-height: 70px;
  padding: 10px 6px;
  background: transparent;
  color: var(--deep);
  border: 1px solid #a6b8b6;
  border-radius: 6px;
  font-weight: 700;
}
.alert-cycle-choices button span {
  display: block;
  font-weight: 400;
  font-size: 0.78rem;
  margin-top: 5px;
}
.alert-cycle-choices [aria-current="step"] {
  background: var(--amber);
  border-color: #9a630c;
  color: var(--ink);
}
.alert-cycle-repeat {
  text-align: center;
}
.alert-cycle-repeat svg {
  display: block;
  width: 88%;
  height: 28px;
  margin: 8px auto 0;
  fill: none;
  stroke: var(--deep);
  stroke-width: 1.5;
}
.alert-cycle-repeat p {
  margin: 8px 0 4px;
  font-size: 0.85rem;
}
.alert-cycle-repeat button {
  min-height: 48px;
  background: transparent;
  color: var(--deep);
  text-decoration: underline;
  text-underline-offset: 4px;
  border: 0;
}
@media (max-width: 600px) {
  .alert-cycle {
    padding: 16px 12px 12px;
  }
  .alert-cycle-choices {
    gap: 6px;
  }
  .journey-phases button {
    font-size: 0.75rem;
  }
}
.alert-cycle-choices {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.alert-cycle-choices button {
  min-width: 0;
  overflow-wrap: anywhere;
}
.journey-phases {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.journey-phases button {
  overflow-wrap: anywhere;
}

.start-map {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 70px;
  align-items: center;
  margin-bottom: 20px;
}
.start-options {
  list-style: none;
  padding: 0 32px 0 0;
  margin: 0;
  position: relative;
  border-right: 1px solid #779b91;
}
.start-options li {
  position: relative;
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line, #d9ddd9);
}
.start-options li:last-child {
  border-bottom: 0;
}
.start-options li:after {
  content: "";
  position: absolute;
  right: -32px;
  width: 24px;
  height: 1px;
  top: 50%;
  background: #779b91;
}
.start-options h3 {
  margin: 0 0 7px;
}
.start-options p {
  margin: 0;
}
.start-options .feature-icon {
  flex-shrink: 0;
}
.start-planned {
  display: inline-block;
  margin-top: 10px;
  padding: 3px 9px;
  background: var(--amber);
  color: var(--ink);
  font-size: 0.8rem;
}
.start-review {
  position: relative;
  padding: 28px 0;
}
.start-review:before {
  content: "";
  position: absolute;
  width: 52px;
  left: -70px;
  top: 50%;
  border-top: 1px solid #779b91;
}
.start-review h3 {
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 16px 0;
}
.start-review .button {
  display: inline-block;
  background: var(--amber);
  color: var(--ink);
  padding: 13px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 650;
}
@media (max-width: 700px) {
  .start-map {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }
  .start-options {
    padding-right: 20px;
  }
  .start-options li:after {
    right: -20px;
    width: 14px;
  }
  .start-review {
    padding: 0 0 0 18px;
    border-left: 1px solid #779b91;
  }
  .start-review:before {
    display: none;
  }
}

.hero-delivery {
  margin: 0 0 20px;
  color: var(--deep);
}
.hero-delivery > p {
  font-size: 0.8rem;
  margin: 0 0 10px;
}
.hero-delivery ul {
  list-style: none;
  margin: 0 0 12px 8px;
  padding: 0 0 0 20px;
  border-left: 1px solid #779b91;
}
.hero-delivery li {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 14px;
  padding: 7px 0;
  font-size: 0.8rem;
}
.hero-delivery li:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 17px;
  width: 13px;
  border-top: 1px solid #779b91;
}
.hero-delivery li:after {
  content: "";
  position: absolute;
  left: -11px;
  top: 14px;
  width: 5px;
  height: 5px;
  border-right: 1px solid #779b91;
  border-top: 1px solid #779b91;
  transform: rotate(45deg);
}
.hero-delivery li > strong {
  min-width: 38px;
}
.hero-channel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
}
.hero-channel-list > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.hero-channel-list svg {
  width: 16px;
  height: 16px;
  flex: none;
}
.hero-delivery .hero-delivery-note {
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.5;
}
