/* Yami POS — main styles (DESIGN.md) */

:root {
  --yami-green-900: #16382c;
  --yami-green-700: #1f4a3a;
  --yami-green-500: #2d5a47;
  --yami-cream: #f7f4ef;
  --yami-orange: #e88a4a;
  --yami-peach: #f0a070;
  --yami-logo-coral: #e85a2b;
  --yami-logo-blue: #2f6bff;
  --text-on-dark: #f7f4ef;
  --text-on-light: #1a2e26;
  --text-muted: #5c7268;
  --surface: #ffffff;
  --surface-soft: #f3f0ea;
  --border-subtle: rgba(31, 74, 58, 0.12);
  --cta-primary: var(--yami-logo-coral);
  --cta-secondary: var(--yami-green-700);
  --link: var(--yami-logo-blue);
  --focus-ring: var(--yami-logo-blue);
  --font-display: "Outfit", "Noto Sans TC", sans-serif;
  --font-body: "Noto Sans TC", "Outfit", sans-serif;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-on-light);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--link);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--yami-logo-coral);
}

:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Logo image */
.logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.logo-img--nav {
  height: 36px;
  width: auto;
}

.logo-img--hero {
  height: clamp(2.75rem, 6vw, 4rem);
  width: auto;
}

.logo-img--footer {
  height: 32px;
  width: auto;
}


/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  color: inherit;
  text-decoration: none;
}

.btn--primary {
  background: var(--cta-primary);
  color: #fff;
}

.btn--primary:hover {
  background: #d14c22;
  color: #fff;
}

.btn--ghost {
  background: rgba(22, 56, 44, 0.28);
  border-color: rgba(247, 244, 239, 0.35);
  color: var(--text-on-dark);
}

.btn--ghost:hover {
  background: rgba(22, 56, 44, 0.45);
  color: var(--text-on-dark);
}

.btn--ghost-dark {
  background: transparent;
  border-color: rgba(31, 74, 58, 0.28);
  color: var(--text-on-light);
}

.btn--ghost-dark:hover {
  border-color: var(--yami-green-700);
  color: var(--yami-green-700);
}

.btn--sm {
  min-height: 2.4rem;
  padding: 0.45rem 1rem;
  font-size: 0.92rem;
}

.text-link {
  font-weight: 700;
  color: var(--yami-green-700);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  background: rgba(247, 244, 239, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.site-header__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
}

.site-logo__pos,
.hero__brand-pos {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--yami-green-700);
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: var(--text-on-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.site-nav a:not(.btn):hover {
  color: var(--yami-logo-coral);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  position: relative;
  cursor: pointer;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--yami-green-700);
  margin: 0 auto;
  transition: transform 0.25s var(--ease);
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: relative;
}

.nav-toggle__bar::before {
  top: -6px;
}

.nav-toggle__bar::after {
  top: 4px;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem 2rem;
  padding: 3.5rem 1.25rem 3rem;
  max-width: none;
  overflow: hidden;
  background:
    radial-gradient(120% 80% at 85% 15%, rgba(240, 160, 112, 0.18), transparent 45%),
    linear-gradient(155deg, var(--yami-green-900) 0%, var(--yami-green-700) 48%, var(--yami-green-500) 100%);
  color: var(--text-on-dark);
}

.hero__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__dots {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image: radial-gradient(circle, rgba(247, 244, 239, 0.55) 1px, transparent 1.2px);
  background-size: 18px 18px;
  animation: dots-drift 28s linear infinite;
}

.hero__arc {
  position: absolute;
  border: 1.5px solid rgba(247, 244, 239, 0.12);
  border-radius: 50%;
  animation: arc-breathe 10s var(--ease) infinite alternate;
}

.hero__arc--1 {
  width: min(70vw, 720px);
  height: min(70vw, 720px);
  top: -18%;
  right: -12%;
}

.hero__arc--2 {
  width: min(50vw, 480px);
  height: min(50vw, 480px);
  top: -6%;
  right: 4%;
  animation-delay: 1.2s;
}

.hero__content,
.hero__visual {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero__content {
  margin-left: max(1rem, calc((100vw - 1120px) / 2));
}

.hero__visual {
  margin-right: max(0.5rem, calc((100vw - 1120px) / 2));
  justify-self: end;
}

.hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.hero__brand-pos {
  color: rgba(247, 244, 239, 0.78);
  font-size: 1rem;
}

.hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--text-on-dark);
}

.hero__lead {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  font-size: 1.08rem;
  color: rgba(247, 244, 239, 0.88);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.store-badges {
  margin-top: 1.5rem;
}

.store-badges__label {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.55);
}

.store-badges--light .store-badges__label,
.store-badges--footer .store-badges__label {
  color: var(--text-muted);
}

.store-badges--footer .store-badges__label {
  color: rgba(247, 244, 239, 0.5);
}

.store-badges__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 3rem;
  padding: 0.45rem 0.95rem 0.45rem 0.75rem;
  border-radius: 0.75rem;
  text-decoration: none;
  border: 1px solid rgba(247, 244, 239, 0.28);
  background: rgba(22, 56, 44, 0.35);
  color: var(--text-on-dark);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}

.store-badge:hover {
  transform: translateY(-2px);
  color: var(--text-on-dark);
  text-decoration: none;
  background: rgba(22, 56, 44, 0.55);
  border-color: rgba(247, 244, 239, 0.45);
}

.store-badges--light .store-badge {
  background: var(--yami-green-900);
  border-color: transparent;
  color: #fff;
}

.store-badges--light .store-badge:hover {
  background: var(--yami-green-700);
  color: #fff;
}

.store-badges--footer .store-badge {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(247, 244, 239, 0.18);
  color: var(--text-on-dark);
  min-height: 2.6rem;
  padding: 0.35rem 0.75rem 0.35rem 0.6rem;
}

.store-badges--footer .store-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-on-dark);
}

.store-badge__icon {
  flex-shrink: 0;
}

.store-badge__text {
  display: grid;
  line-height: 1.15;
  text-align: left;
}

.store-badge__small {
  font-size: 0.62rem;
  letter-spacing: 0.02em;
  opacity: 0.8;
}

.store-badge__big {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
}

.store-badges--footer .store-badge__big {
  font-size: 0.85rem;
}

.store-badges--footer {
  margin-top: 0.85rem;
}


.hero__visual img {
  width: min(100%, 480px);
  margin-inline: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.22));
  animation: visual-float 7s var(--ease) infinite alternate;
}

@keyframes dots-drift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 18px 36px;
  }
}

@keyframes arc-breathe {
  from {
    transform: scale(1);
    opacity: 0.7;
  }
  to {
    transform: scale(1.04);
    opacity: 1;
  }
}

@keyframes visual-float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

/* Sections */
.section {
  padding: 5rem 1.25rem;
}

.section__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section__header {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.section__header h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--text-on-light);
}

.section__header p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section__more {
  margin: 2rem 0 0;
  text-align: center;
}

.section--features {
  background:
    linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%);
}

.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
}

.feature-list__item {
  padding: 0;
  border: 0;
  background: transparent;
}

.feature-list__pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.25rem 0.85rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: rgba(31, 74, 58, 0.88);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.feature-list__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-on-light);
}

.feature-list__item p {
  margin: 0;
  color: var(--text-muted);
}

/* Pricing teaser — interactive plan containers */
.section--pricing {
  background:
    radial-gradient(80% 60% at 10% 0%, rgba(232, 138, 74, 0.1), transparent 50%),
    linear-gradient(180deg, var(--yami-cream), #fff 70%);
}

.plan-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.plan {
  padding: 1.75rem 1.5rem;
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.plan h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
}

.plan__price {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
}

.plan__amount {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--yami-green-700);
}

.plan__period {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.plan__desc {
  margin: 0 0 0.5rem;
  color: var(--text-muted);
  flex: 1;
}

.plan--featured {
  border-color: var(--yami-orange);
  background: #fff;
  box-shadow: 0 0 0 1px rgba(232, 138, 74, 0.25);
}

.plan__tag {
  margin: 0;
  align-self: flex-start;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--yami-logo-coral);
  letter-spacing: 0.04em;
}

.plan .btn {
  align-self: flex-start;
}

/* Contact */
.section--contact {
  background:
    linear-gradient(165deg, var(--yami-green-900), var(--yami-green-700));
  color: var(--text-on-dark);
}

.section--contact .section__header h2,
.section--contact h2 {
  color: var(--text-on-dark);
}

.section__inner--split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem 3rem;
  align-items: start;
}

.contact-intro h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.contact-intro p {
  margin: 0 0 1.75rem;
  color: rgba(247, 244, 239, 0.85);
}

.contact-channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-channels li {
  display: grid;
  gap: 0.15rem;
}

.contact-channels span {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.55);
}

.contact-channels a {
  color: var(--text-on-dark);
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
}

.contact-channels a:hover {
  color: var(--yami-peach);
}

.contact-form-wrap {
  padding: 1.5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-on-light);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.contact-form__full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border-subtle);
  border-radius: 0.65rem;
  padding: 0.7rem 0.85rem;
  font: inherit;
  color: var(--text-on-light);
  background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--yami-logo-blue);
  outline: none;
  box-shadow: 0 0 0 3px rgba(47, 107, 255, 0.18);
}

.contact-form .btn {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 0.25rem;
}

.form-notice {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.65rem;
  font-weight: 600;
}

.form-notice--ok {
  background: #e7f5ee;
  color: var(--yami-green-700);
}

.form-notice--error {
  background: #fdeceb;
  color: #a1281c;
}

/* Footer */
.site-footer {
  background: var(--yami-green-900);
  color: rgba(247, 244, 239, 0.78);
  padding: 2.5rem 1.25rem 1.5rem;
}

.site-footer__inner {
  max-width: 1120px;
  margin: 0 auto 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.5rem;
}

.site-footer a {
  color: var(--text-on-dark);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--yami-peach);
}

.site-footer__brand p {
  margin: 0.75rem 0 0;
  font-size: 0.92rem;
}

.site-logo--footer .site-logo__pos {
  color: rgba(247, 244, 239, 0.7);
}

.site-footer__links,
.site-footer__support {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.site-footer__copy {
  max-width: 1120px;
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(247, 244, 239, 0.12);
  font-size: 0.85rem;
  color: rgba(247, 244, 239, 0.5);
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.feature-list__item[data-reveal]:nth-child(2),
.plan[data-reveal]:nth-child(2) {
  transition-delay: 0.08s;
}

.feature-list__item[data-reveal]:nth-child(3),
.plan[data-reveal]:nth-child(3) {
  transition-delay: 0.16s;
}

.site-nav a[aria-current="page"] {
  color: var(--yami-logo-coral);
}

/* Inner pages */
.page-hero {
  padding: 3.5rem 1.25rem 2rem;
  background:
    radial-gradient(70% 80% at 90% 0%, rgba(232, 138, 74, 0.12), transparent 50%),
    linear-gradient(180deg, var(--yami-cream), #fff);
}

.page-hero--dark {
  background:
    radial-gradient(80% 70% at 85% 10%, rgba(240, 160, 112, 0.16), transparent 45%),
    linear-gradient(155deg, var(--yami-green-900), var(--yami-green-700));
  color: var(--text-on-dark);
}

.page-hero__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.page-hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--yami-logo-coral);
}

.page-hero--dark .page-hero__eyebrow {
  color: var(--yami-peach);
}

.page-hero h1 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.page-hero p {
  margin: 0;
  max-width: 40rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.page-hero--dark p {
  color: rgba(247, 244, 239, 0.85);
}

.page-hero--dark h1 {
  color: var(--text-on-dark);
}

.billing-toggle {
  display: inline-flex;
  margin-top: 1.5rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(31, 74, 58, 0.08);
  gap: 0.25rem;
}

.billing-toggle__btn {
  border: 0;
  background: transparent;
  min-height: 2.4rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text-muted);
  cursor: pointer;
}

.billing-toggle__btn span {
  color: var(--yami-logo-coral);
  font-size: 0.8rem;
}

.billing-toggle__btn.is-active {
  background: #fff;
  color: var(--text-on-light);
  box-shadow: 0 1px 3px rgba(22, 56, 44, 0.12);
}

.plan__year-note {
  margin: -0.25rem 0 0;
  font-size: 0.88rem;
  color: var(--yami-logo-coral);
  font-weight: 600;
}

.feature-list--page {
  margin-bottom: 3rem;
}

.feature-extra {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.feature-extra h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.feature-extra__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.5rem;
  color: var(--text-muted);
}

.feature-extra__list li {
  position: relative;
  padding-left: 1.1rem;
}

.feature-extra__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--yami-green-500);
}

/* Module intro page */
.module-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.85rem;
  margin-top: 1.5rem;
}

.module-jump a {
  color: var(--yami-green-700);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.95rem;
  border-bottom: 1.5px solid rgba(31, 74, 58, 0.25);
  padding-bottom: 0.1rem;
}

.module-jump a:hover {
  color: var(--yami-logo-coral);
  border-bottom-color: var(--yami-logo-coral);
}

.section--modules {
  padding-top: 1.5rem;
  background: linear-gradient(180deg, #fff 0%, var(--surface-soft) 100%);
}

.module-intro {
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--border-subtle);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.75rem 2.5rem;
  align-items: start;
}

.module-intro:last-of-type {
  border-bottom: 0;
}

.module-intro__pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.25rem 0.85rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: rgba(31, 74, 58, 0.88);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
}

.module-intro__role {
  margin: 0 0 0.35rem;
  color: var(--yami-logo-coral);
  font-weight: 700;
  font-size: 0.92rem;
}

.module-intro__head h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-on-light);
}

.module-intro__lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.module-intro__points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.module-intro__points li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text-on-light);
  line-height: 1.6;
}

.module-intro__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--yami-orange);
}

.module-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding-top: 0.5rem;
}

@media (max-width: 860px) {
  .module-intro {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }
}

/* About page */
.section--about {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #fff;
}

.about-block h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-on-light);
}

.about-block p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.about-block p:last-child {
  margin-bottom: 0;
}

.section--timeline {
  background: var(--surface-soft);
}

.about-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-timeline__item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin: 0;
  padding: 0.9rem 1rem;
  background: #fff;
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  border-left: 4px solid #94a3b8;
}

.about-timeline__year {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.5rem;
  padding: 0.3rem 0.55rem;
  border-radius: 0.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 1.2;
  color: #fff;
  background: #94a3b8;
}

.about-timeline__text {
  color: var(--text-on-light);
  line-height: 1.55;
  font-size: 0.95rem;
  padding-top: 0.15rem;
}

.about-timeline--success {
  border-left-color: var(--yami-green-500);
}

.about-timeline--success .about-timeline__year {
  background: var(--yami-green-500);
}

.about-timeline--primary {
  border-left-color: var(--yami-logo-blue);
}

.about-timeline--primary .about-timeline__year {
  background: var(--yami-logo-blue);
}

.about-timeline--danger {
  border-left-color: var(--yami-logo-coral);
}

.about-timeline--danger .about-timeline__year {
  background: var(--yami-logo-coral);
}

.about-timeline--warning {
  border-left-color: var(--yami-orange);
}

.about-timeline--warning .about-timeline__year {
  background: var(--yami-orange);
}

.about-company-en {
  margin: 1.5rem 0 0;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.section--about-cta {
  background: linear-gradient(155deg, var(--yami-green-900), var(--yami-green-700));
  color: var(--text-on-dark);
}

.about-cta {
  text-align: center;
}

.about-cta h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-on-dark);
}

.about-cta p {
  margin: 0 0 1.5rem;
  color: rgba(247, 244, 239, 0.85);
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

@media (max-width: 640px) {
  .about-timeline__item {
    flex-direction: column;
    gap: 0.4rem;
  }
}



.section--contact-page {
  padding-top: 2.5rem;
}

.compare {
  margin-top: 3.5rem;
}

.compare h2 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
}

.compare__scroll {
  overflow-x: auto;
  border: 1px solid var(--border-subtle);
  border-radius: 0.85rem;
  background: #fff;
}

.compare__table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.compare__table th,
.compare__table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  vertical-align: top;
}

.compare__table thead th {
  background: var(--surface-soft);
  font-weight: 700;
  color: var(--yami-green-700);
}

.compare__table tbody th {
  font-weight: 600;
  color: var(--text-on-light);
  width: 42%;
}

.compare__table td {
  text-align: center;
  color: var(--text-muted);
}

.compare__table td.is-planned {
  color: #8a9a92;
  font-size: 0.88rem;
}

.compare__table tbody tr:last-child th,
.compare__table tbody tr:last-child td {
  border-bottom: 0;
}

.section__inner--narrow {
  max-width: 820px;
}

.section--faq {
  padding-top: 2rem;
  background: #fff;
}

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

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

.faq-item summary {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
  padding: 1.1rem 0;
  list-style: none;
  color: var(--text-on-light);
  font-weight: 700;
  line-height: 1.45;
}

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

.faq-item summary::after {
  content: "+";
  margin-left: auto;
  color: var(--yami-logo-coral);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

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

.faq-item__num {
  flex: 0 0 auto;
  color: var(--yami-green-500);
  font-family: var(--font-display);
  font-size: 0.9rem;
  min-width: 1.7rem;
}

.faq-item__q {
  flex: 1;
  padding-right: 0.5rem;
}

.faq-item__a {
  padding: 0 0 1.2rem 2.45rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item__a p {
  margin: 0 0 0.5rem;
}

.faq-item__a p:last-child {
  margin-bottom: 0;
}

.faq-more {
  margin: 2rem 0 0;
  color: var(--text-muted);
}

@media (max-width: 640px) {
  .faq-item__a {
    padding-left: 0;
  }
}



/* Responsive */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 2.75rem;
    padding-bottom: 2.5rem;
    text-align: left;
  }

  .hero__content,
  .hero__visual {
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    justify-self: stretch;
  }

  .hero__visual {
    order: -1;
  }

  .hero__visual img {
    width: min(100%, 340px);
  }

  .feature-list,
  .plan-row,
  .section__inner--split,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(247, 244, 239, 0.98);
    border-bottom: 1px solid var(--border-subtle);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .site-nav .btn {
    margin-top: 0.75rem;
    justify-content: center;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero__title br {
    display: none;
  }
}

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

  .hero__dots,
  .hero__arc,
  .hero__visual img,
  .btn,
  [data-reveal] {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
