:root {
  --green: #09b86f;
  --green-dark: #057a4c;
  --teal: #00a7a5;
  --yellow: #ffe066;
  --ink: #10201a;
  --muted: #5f6f69;
  --line: #dce8e2;
  --bg: #f4fbf7;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(16, 32, 26, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Inter", Arial, sans-serif;
}

button {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.auth-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 20%, rgba(9, 184, 111, 0.18), transparent 28%),
    linear-gradient(135deg, #f4fbf7 0%, #eef8f4 52%, #ffffff 100%);
}

.auth-shell {
  display: flex;
  width: min(1040px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  flex-direction: column;
  justify-content: center;
  padding: 32px 0;
}

.auth-brand {
  margin-bottom: 0;
}

.auth-topbar {
  display: flex;
  width: min(100%, 520px);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.auth-panel {
  width: min(100%, 520px);
  padding: 34px;
  border: 1px solid rgba(220, 232, 226, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 70px rgba(16, 32, 26, 0.13);
}

.auth-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.auth-panel h1 {
  margin: 10px 0 14px;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.auth-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

.auth-google,
.auth-secondary {
  display: inline-flex;
  width: 100%;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.auth-google {
  color: var(--white);
  background: var(--green-dark);
}

.auth-google:hover {
  background: #04643f;
}

.auth-google:disabled,
.auth-secondary:disabled {
  cursor: wait;
  opacity: 0.72;
}

.google-mark {
  display: inline-flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--white);
  font-weight: 900;
}

.auth-error {
  min-height: 22px;
  margin-top: 14px !important;
  color: #b42318 !important;
  font-size: 0.92rem !important;
}

.auth-next {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fcfa;
}

.auth-next strong {
  color: var(--ink);
}

.auth-next span {
  color: var(--muted);
  line-height: 1.55;
}

.auth-secondary {
  border: 1px solid var(--green-dark);
  color: var(--green-dark);
  background: transparent;
}

.app-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 16% 12%, rgba(9, 184, 111, 0.16), transparent 30%),
    radial-gradient(circle at 86% 20%, rgba(0, 167, 165, 0.12), transparent 28%),
    #eef7f3;
}

.app-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 0 36px;
}

.app-loading {
  display: grid;
  min-height: 70vh;
  place-items: center;
  align-content: center;
  gap: 14px;
  color: var(--muted);
  font-weight: 700;
}

.app-loader {
  width: 34px;
  height: 34px;
  border: 4px solid rgba(9, 184, 111, 0.2);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: app-spin 0.8s linear infinite;
}

@keyframes app-spin {
  to {
    transform: rotate(360deg);
  }
}

.app-topbar {
  position: sticky;
  top: 0;
  z-index: 12;
  display: grid;
  grid-template-columns: minmax(16px, 1fr) minmax(0, 1180px) minmax(16px, 1fr);
  width: 100%;
  min-height: 76px;
  align-items: center;
  margin: 0;
  padding: 0 16px;
  border: 0;
  border-bottom: 1px solid rgba(220, 232, 226, 0.8);
  border-radius: 0;
  background: rgba(244, 251, 247, 0.88);
  box-shadow: none;
  backdrop-filter: blur(18px);
}

.app-topbar > .brand,
.app-topbar > .language-switch,
.app-topbar > .app-actions-cluster {
  grid-row: 1;
}

.app-topbar > .brand {
  grid-column: 2;
  margin-right: auto;
}

.app-actions-cluster {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  grid-column: 2;
  margin-left: auto;
}

.language-switch.compact {
  background: rgba(255, 255, 255, 0.82);
}

.app-tabs-nav {
  display: inline-flex;
  justify-self: center;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef7f3;
}

.app-tabs-nav button,
.app-tabs-nav .nav-tab-link,
.app-ghost,
.mini-button {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  color: var(--ink);
  background: transparent;
  font-weight: 800;
}

.app-tabs-nav button,
.app-tabs-nav .nav-tab-link {
  display: inline-grid;
  min-width: 112px;
  min-height: 38px;
  place-items: center;
  padding: 0 16px;
  color: var(--muted);
}

.app-tabs-nav button.active,
.app-tabs-nav .nav-tab-link.active {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 18px rgba(16, 32, 26, 0.08);
}

.app-ghost {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  line-height: 1;
  white-space: nowrap;
}

.app-topbar .brand,
.app-topbar .app-actions-cluster {
  max-width: none;
}

.app-ghost ion-icon,
.map-location-button ion-icon {
  width: 18px;
  height: 18px;
}

.app-hero,
.onboarding-hero {
  display: grid;
  width: min(1180px, calc(100% - 28px));
  gap: 24px;
  margin: 18px 0 16px;
  margin-right: auto;
  margin-left: auto;
}

.app-hero {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 28px 70px rgba(16, 32, 26, 0.12);
  backdrop-filter: blur(20px);
}

.app-hero {
  grid-template-columns: minmax(0, 1fr) 280px;
  align-items: end;
}

.app-hero h1,
.onboarding-hero h1 {
  max-width: 760px;
  margin: 8px 0 12px;
  color: var(--ink);
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.app-hero p,
.onboarding-hero p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.status-card,
.app-panel,
.role-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 62px rgba(16, 32, 26, 0.12);
  backdrop-filter: blur(18px);
}

.status-card {
  display: grid;
  gap: 7px;
  padding: 22px;
  background: linear-gradient(160deg, #ffffff 0%, #ecfff6 100%);
}

.status-card span,
.role-pill,
.offer-kicker {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-card strong {
  color: var(--ink);
  font-size: 1.35rem;
}

.status-card small {
  color: var(--muted);
  font-weight: 700;
}

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

.role-card {
  display: grid;
  gap: 14px;
  min-height: 250px;
  padding: 28px;
  cursor: pointer;
  text-align: left;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.94) 0%, rgba(238, 247, 243, 0.94) 100%);
}

.role-card:hover,
.role-card.active {
  border-color: rgba(9, 184, 111, 0.65);
  background: #ecfff6;
  box-shadow: 0 24px 64px rgba(9, 184, 111, 0.17);
}

.role-card span {
  color: var(--green-dark);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
}

.role-card strong {
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.02;
}

.role-card small {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.58;
}

.app-panel {
  padding: 22px;
}

.profile-form {
  margin-top: 18px;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.panel-heading h2 {
  margin: 5px 0 0;
  color: var(--ink);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.08;
}

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

.field-grid.single {
  grid-template-columns: 1fr;
}

.field-grid label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.field-grid input,
.field-grid select,
.field-grid textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: none;
  color: var(--ink);
  background: #f9fcfa;
  font: inherit;
  font-weight: 650;
}

.field-hint {
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.map-location-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(5, 122, 76, 0.28);
  border-radius: 12px;
  cursor: pointer;
  color: var(--green-dark);
  background: #eef9f3;
  font: inherit;
  font-weight: 900;
}

.offer-map-preview {
  position: relative;
  overflow: hidden;
  height: 190px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #eef7f3;
}

.map-info-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  bottom: auto;
  z-index: 2;
  display: inline-grid;
  width: max-content;
  max-width: min(78%, 360px);
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 32px rgba(16, 32, 26, 0.14);
  backdrop-filter: blur(14px);
}

.map-info-overlay span,
.map-info-overlay small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.map-info-overlay strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

.detail-note-card {
  display: grid;
  gap: 6px;
  margin: 12px 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fcfa;
}

.detail-note-card .detail-section-label {
  margin: 0;
}

.offer-map-preview iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.offer-map-preview.compact {
  height: 160px;
  margin-top: 12px;
}

.offer-photo {
  overflow: hidden;
  height: 170px;
  margin-top: 12px;
  border-radius: 18px;
  background: #eef7f3;
}

.offer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.field-grid textarea {
  resize: vertical;
}

.field-grid input:focus,
.field-grid select:focus,
.field-grid textarea:focus {
  border-color: rgba(9, 184, 111, 0.75);
  box-shadow: 0 0 0 3px rgba(9, 184, 111, 0.12);
}

.app-primary {
  width: 100%;
  min-height: 52px;
  margin-top: 18px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  color: var(--white);
  background: var(--green-dark);
  font: inherit;
  font-weight: 900;
}

.app-primary:hover {
  background: #04643f;
}

.app-primary:disabled,
.app-ghost:disabled,
.mini-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-message {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--green-dark);
  font-weight: 800;
}

.app-view {
  display: none;
}

.app-view.active {
  display: block;
  width: min(1180px, calc(100% - 28px));
  margin: 0 auto;
}

.role-grid,
.profile-form,
.account-settings-shell {
  width: min(1180px, calc(100% - 28px));
  margin-right: auto;
  margin-left: auto;
}

.dashboard-grid,
.marketplace-grid {
  display: grid;
  grid-template-columns: minmax(390px, 0.92fr) minmax(460px, 1.08fr);
  gap: 18px;
  align-items: start;
}

.dashboard-grid.courier-grid,
.marketplace-grid.courier-grid {
  grid-template-columns: minmax(390px, 0.82fr) minmax(460px, 1.18fr);
}

.marketplace-left,
.marketplace-map-panel {
  display: grid;
  gap: 18px;
}

.account-settings-shell {
  width: min(760px, 100%);
  margin: 28px auto 0;
}

.marketplace-map-panel {
  position: sticky;
  top: 100px;
}

.offer-form,
.offers-panel {
  min-height: 360px;
}

.offers-list {
  display: grid;
  gap: 12px;
}

.marketplace-offer {
  width: 100%;
  margin: 0;
}

.marketplace-offer.active {
  border-color: rgba(9, 184, 111, 0.45);
  background: #ecfff6;
}

.marketplace-offer .offer-kicker {
  display: block;
  margin-bottom: 6px;
  font-size: 0.7rem;
}

.marketplace-offer strong {
  font-size: 1.2rem;
}

.marketplace-offer span,
.marketplace-offer em,
.muted-text {
  color: var(--muted);
}

.marketplace-offer em {
  margin-top: 4px;
}

.mini-button {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(5, 122, 76, 0.28);
  color: var(--green-dark);
  background: #eef9f3;
}

.mini-button.strong {
  color: var(--white);
  border-color: var(--green-dark);
  background: var(--green-dark);
}

.mini-button.quiet {
  color: #7a271a;
  border-color: rgba(180, 35, 24, 0.2);
  background: #fff7f5;
}

.offer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.offer-contact span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(5, 122, 76, 0.18);
  border-radius: 8px;
  color: var(--green-dark);
  background: #eef9f3;
  font-size: 0.82rem;
  font-weight: 850;
}

.offer-detail-panel h2 {
  margin: 4px 0 12px;
  font-size: 1.75rem;
  line-height: 1.05;
}

.detail-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.app-money-panel {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0;
}

.app-money-panel div {
  display: grid;
  gap: 5px;
  padding: 12px;
  border-radius: 16px;
  background: #f8fcfa;
}

.app-money-panel span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.app-money-panel b {
  color: var(--ink);
  font-size: 1.12rem;
}

.app-money-panel.highlight-owner .owner-money,
.app-money-panel.highlight-courier .courier-money {
  border: 1px solid rgba(9, 184, 111, 0.35);
  background: #ecfff6;
}

.app-money-panel.highlight-owner .owner-money b,
.app-money-panel.highlight-courier .courier-money b,
.app-money-panel .is-positive b {
  color: var(--green-dark);
}

.detail-section-label {
  display: block;
  margin: 12px 0 7px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-location-block {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #f8fcfa;
}

.detail-address {
  margin: 0;
  color: var(--ink);
  font-weight: 850;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.compact-action {
  width: auto;
  min-width: 160px;
  margin-top: 0;
  padding: 0 18px;
}

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

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

.order-economics div {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: 16px;
  background: #f8fcfa;
}

.order-economics div:nth-child(2) {
  border: 1px solid rgba(9, 184, 111, 0.35);
  background: #ecfff6;
}

.order-economics span,
.settings-section-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.order-economics b {
  color: var(--ink);
  font-size: 1.08rem;
}

.order-economics .is-positive b {
  color: var(--green-dark);
}

.settings-section {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.app-setting-options label {
  min-height: 68px;
  border-radius: 16px;
}

.setup-warning {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid rgba(180, 35, 24, 0.18);
  border-radius: 8px;
  color: #7a271a;
  background: #fff7f5;
}

.settings-email {
  margin: -8px 0 18px;
  color: var(--muted);
  font-weight: 800;
}

.role-toggle {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.role-toggle label {
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  background: #f9fcfa;
  font-weight: 850;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(220, 232, 226, 0.8);
  background: rgba(244, 251, 247, 0.88);
  backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.wordmark {
  display: inline-flex;
  align-items: flex-end;
  color: var(--ink);
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.wordmark-accent {
  color: var(--green);
  margin-right: -4px;
}

.wordmark-dot {
  display: inline-block;
  width: 0.28em;
  height: 0.28em;
  margin: 0 0 0.12em 0.07em;
  border-radius: 50%;
  background: var(--green);
}

.wordmark-light {
  color: var(--white);
}

.wordmark-section {
  margin-bottom: 18px;
  font-size: 2rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: max-content;
}

.app-footer .wordmark {
  color: #123b2e;
}

.footer-mark {
  width: 34px;
  height: 34px;
}

.nav-links {
  display: flex;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--green-dark);
}

.nav-links a.is-active,
.footer-links a.is-active {
  color: var(--green-dark);
}

.nav-links a.is-active {
  font-weight: 900;
}

.nav-actions,
.download-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.82);
}

.language-switch a {
  display: inline-grid;
  min-width: 34px;
  height: 32px;
  place-items: center;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.language-switch a.active {
  color: var(--white);
  background: var(--ink);
}

.nav-cta,
.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  padding: 0 18px;
  color: var(--white);
  background: var(--ink);
}

.download-page .nav-cta,
.purpose-page .nav-cta {
  border: 1px solid var(--green);
  color: var(--green-dark);
  background: rgba(9, 184, 111, 0.1);
  box-shadow: none;
}

.download-page .site-header .wordmark,
.purpose-page .site-header .wordmark {
  color: #123b2e;
}

.btn {
  padding: 0 22px;
}

.btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 34px rgba(9, 184, 111, 0.28);
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--white);
}

.hero {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  min-height: clamp(620px, calc(100vh - 150px), 760px);
  margin: 0 auto;
  padding: 72px 0 42px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.split-section h2,
.cta-section h2,
.download-card h1 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 780px;
  font-size: 6.25rem;
  font-weight: 900;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.phone-card {
  position: absolute;
  right: -10px;
  bottom: 10px;
  display: flex;
  height: 560px;
  max-height: calc(100vh - 96px);
  flex-direction: column;
  width: min(315px, 78%);
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 28px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 70px rgba(16, 32, 26, 0.22);
  backdrop-filter: blur(20px);
  overflow: hidden;
}

.phone-top,
.deal-card,
.market-strip,
.cta-section,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.phone-top {
  margin-bottom: 12px;
  font-weight: 900;
}

.phone-brand {
  display: inline-flex;
  align-items: center;
}

.phone-logo {
  width: 34px;
  height: 34px;
}

.phone-status {
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--green-dark);
  background: #e6fff2;
  font-size: 0.74rem;
  font-weight: 900;
}

.app-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 12px;
  border-radius: 8px;
  padding: 4px;
  background: #eef7f3;
}

.app-tabs span {
  display: grid;
  min-height: 32px;
  place-items: center;
  border-radius: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.app-tabs .active {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 8px 18px rgba(16, 32, 26, 0.08);
}

.deal-card {
  width: 100%;
  min-height: 68px;
  margin-bottom: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: var(--white);
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.deal-card.hot {
  border-color: rgba(9, 184, 111, 0.35);
  background: #ecfff6;
}

.deal-card strong,
.deal-card span {
  display: block;
}

.deal-card span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.82rem;
}

.deal-card em {
  display: block;
  margin-top: 4px;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 900;
}

.deal-card b {
  color: var(--green-dark);
}

.deal-money {
  display: grid;
  gap: 4px;
  justify-items: end;
  text-align: right;
}

.deal-money span {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}

.deal-money b {
  color: var(--green-dark);
  font-size: 0.82rem;
  white-space: nowrap;
}

.map-strip {
  position: relative;
  height: 94px;
  margin: 14px 0 12px;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.32) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.34) 1px, transparent 1px),
    linear-gradient(135deg, #dff4ec, #dcedff);
  background-size: 28px 28px, 28px 28px, auto;
}

.map-label {
  position: absolute;
  top: 9px;
  left: 10px;
  z-index: 3;
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 900;
}

.map-road {
  position: absolute;
  height: 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 1px rgba(16, 32, 26, 0.08);
}

.road-one {
  top: 25px;
  left: 12px;
  width: 82%;
  transform: rotate(-7deg);
}

.road-two {
  top: 54px;
  left: -12px;
  width: 92%;
  transform: rotate(15deg);
}

.road-three {
  right: -8px;
  bottom: 16px;
  width: 58%;
  transform: rotate(-16deg);
}

.road-four {
  top: -4px;
  left: 104px;
  width: 72%;
  transform: rotate(82deg);
}

.route-line {
  position: absolute;
  left: 58px;
  top: 30px;
  width: 104px;
  height: 36px;
  border: 4px solid var(--green);
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 24px 0 0;
  transform: rotate(5deg);
}

.map-pin {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 8px 18px rgba(9, 184, 111, 0.28);
}

.pin-one {
  top: 25px;
  right: 46px;
}

.pin-two {
  left: 48px;
  bottom: 18px;
  background: var(--ink);
}

.pin-three {
  right: 24px;
  bottom: 24px;
  background: var(--teal);
}

.accept-demo {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--ink);
  font: inherit;
  font-weight: 900;
}

.order-detail {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  padding: 14px;
  background: rgba(255, 255, 255, 0.98);
  opacity: 0;
  overflow-y: auto;
  pointer-events: none;
  transform: translateX(100%);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease;
}

.phone-card.detail-open .order-detail {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  visibility: visible;
}

.detail-top {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: 900;
}

.detail-back {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: var(--ink);
  background: #eef7f3;
  cursor: pointer;
  font: inherit;
  font-size: 1.4rem;
  font-weight: 900;
}

.detail-money-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.92fr;
  gap: 8px;
}

.detail-money-panel div {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(16, 32, 26, 0.06);
}

.detail-money-panel .is-positive {
  border-color: transparent;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-dark), var(--green));
}

.detail-money-panel span,
.detail-money-panel b {
  display: block;
}

.detail-money-panel span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
}

.detail-money-panel .is-positive span {
  color: rgba(255, 255, 255, 0.8);
}

.detail-money-panel b {
  margin-top: 5px;
  color: var(--ink);
  font-size: 0.82rem;
  line-height: 1;
  white-space: nowrap;
}

.detail-money-panel .is-positive b {
  color: var(--white);
  font-size: 1.24rem;
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.detail-facts div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  background: var(--white);
}

.detail-facts span,
.detail-facts b {
  display: block;
}

.detail-facts span {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 900;
}

.detail-facts b {
  margin-top: 4px;
  font-size: 0.72rem;
  line-height: 1.15;
}

.detail-section-label {
  display: block;
  margin: 0 0 5px;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
}

.detail-photo {
  position: relative;
  height: 88px;
  margin-top: 8px;
  border-radius: 8px;
  overflow: hidden;
  background: #e4f6ee;
}

.detail-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.detail-photo span {
  position: absolute;
  top: 8px;
  left: 10px;
  z-index: 2;
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 900;
}

.order-detail p {
  margin: 0 0 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  color: var(--muted);
  background: var(--white);
  font-size: 0.8rem;
  line-height: 1.36;
}

.detail-map {
  position: relative;
  flex: 0 0 auto;
  height: 104px;
  margin: 8px 0;
  background: #e4f1ee;
}

.detail-map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  filter: saturate(0.95) contrast(0.96);
}

.map-caption {
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  border-radius: 8px;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(16, 32, 26, 0.12);
}

.map-caption strong,
.map-caption span {
  display: block;
}

.map-caption strong {
  color: var(--ink);
  font-size: 0.76rem;
}

.map-caption span {
  margin-top: 2px;
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 900;
}

.app-bottom-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
  margin-top: auto;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
}

.app-bottom-nav span {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 8px;
  background: #f4f8f6;
}

.app-bottom-nav .active {
  color: var(--green-dark);
  background: #e6fff2;
}

.nav-icon {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.icon-search {
  border: 2px solid currentColor;
  border-radius: 50%;
}

.icon-search::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: -3px;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: rotate(45deg);
}

.icon-receipt {
  border: 2px solid currentColor;
  border-radius: 3px;
}

.icon-receipt::before,
.icon-receipt::after {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.icon-receipt::before {
  top: 4px;
}

.icon-receipt::after {
  top: 9px;
}

.icon-profile::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.icon-profile::after {
  content: "";
  position: absolute;
  left: 1px;
  right: 1px;
  bottom: 1px;
  height: 7px;
  border-radius: 999px 999px 4px 4px;
  background: currentColor;
}

.market-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 78px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  gap: 14px;
  background: var(--white);
  box-shadow: 0 14px 40px rgba(16, 32, 26, 0.08);
}

.market-strip div {
  flex: 1;
  padding: 16px;
}

.market-strip strong,
.market-strip span {
  display: block;
}

.market-strip strong {
  font-size: 1.55rem;
}

.market-strip span {
  margin-top: 5px;
  color: var(--muted);
  font-weight: 700;
}

.section,
.split-section,
.cta-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
}

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

.section h2,
.split-section h2,
.cta-section h2 {
  font-size: 4.4rem;
  font-weight: 900;
}

.steps-grid {
  display: grid;
  margin-top: 36px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-card,
.benefit-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
}

.step-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--green-dark);
  background: #e6fff2;
  font-weight: 900;
}

.step-card h3,
.benefit-list h3 {
  margin: 24px 0 10px;
  font-size: 1.3rem;
}

.step-card p,
.benefit-list p,
.benefit-copy p,
.download-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
  gap: 40px;
  align-items: start;
}

.benefit-copy p {
  margin-top: 24px;
  max-width: 620px;
  font-size: 1.06rem;
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-list h3 {
  margin-top: 0;
}

.city-section {
  padding-top: 48px;
}

.city-grid {
  display: grid;
  margin-top: 34px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.city-grid span {
  min-height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 900;
}

.cta-section {
  margin-bottom: 40px;
  border-radius: 8px;
  padding: 46px;
  gap: 30px;
  color: var(--white);
  background: radial-gradient(circle at 10% 15%, rgba(255, 224, 102, 0.28), transparent 28%),
    linear-gradient(135deg, #10201a, #075b48 58%, #00a7a5);
}

.cta-section .eyebrow,
.cta-section h2 {
  color: var(--white);
}

.cta-section .btn-primary {
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--yellow);
  box-shadow: none;
}

.footer {
  width: min(1180px, calc(100% - 32px));
  min-height: 84px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.footer.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.7fr) minmax(180px, 1fr) minmax(160px, 1fr);
  gap: 32px;
  padding: 42px 0 32px;
  align-items: start;
}

.footer-brand p {
  max-width: 360px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-weight: 400;
}

.footer-links {
  display: grid;
  gap: 18px;
}

.footer-links div span {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.footer-links a:hover {
  color: var(--green-dark);
}

.footer-legal {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 400;
}

.download-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 32px 0 20px;
}

.download-features article {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  background: #f8fdf8;
}

.download-features h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  line-height: 1.4;
}

.download-features p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.download-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 224, 102, 0.2), transparent 28%),
    linear-gradient(180deg, #f3f8ee 0%, #f7fbf6 48%, #eef8f3 100%);
}

.download-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 76px;
}

.download-top {
  justify-content: space-between;
}

.download-landing .language-switch a.active {
  color: var(--white);
  background: var(--green);
}

.download-card {
  margin-top: 80px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 72px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.download-card h1 {
  max-width: 680px;
  font-size: 5.2rem;
  font-weight: 900;
}

.download-card p {
  max-width: 620px;
  margin: 22px 0 30px;
  font-size: 1.08rem;
}

.download-launch-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  min-height: 620px;
  margin-top: 38px;
  border: 1px solid rgba(220, 232, 226, 0.84);
  border-radius: 8px;
  padding: clamp(36px, 6vw, 74px);
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 253, 247, 0.84) 42%, rgba(246, 253, 247, 0.34) 100%),
    url("/assets/taroma-return-light.png");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.download-launch-hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: -1;
  border: 1px solid rgba(9, 184, 111, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.download-landing [data-reveal] {
  animation: download-rise 720ms ease both;
}

.download-landing [data-reveal]:nth-of-type(2) {
  animation-delay: 120ms;
}

.download-copy h1 {
  max-width: 700px;
  margin: 0;
  color: #123b2e;
  font-size: clamp(3rem, 6.2vw, 5.2rem);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
}

.download-copy p {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.download-signal-panel {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 420px;
  align-content: center;
}

.signal-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0.9;
  pointer-events: none;
}

.signal-orbit span {
  position: absolute;
  inset: 16%;
  border: 1px solid rgba(9, 184, 111, 0.18);
  border-radius: 50%;
  animation: signal-pulse 4s ease-in-out infinite;
}

.signal-orbit span:nth-child(2) {
  inset: 27%;
  animation-delay: 0.8s;
}

.signal-orbit span:nth-child(3) {
  inset: 38%;
  animation-delay: 1.6s;
}

.signal-card,
.signal-grid a {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 62px rgba(16, 32, 26, 0.12);
  backdrop-filter: blur(16px);
}

.signal-card {
  padding: 28px;
}

.signal-card span,
.signal-grid small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  margin-top: 8px;
  color: #123b2e;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.92;
}

.signal-card small {
  display: block;
  max-width: 390px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.55;
}

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

.signal-grid a {
  display: grid;
  gap: 8px;
  min-height: 118px;
  align-content: center;
  justify-items: center;
  padding: 20px;
  text-align: center;
  color: inherit;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.app-platform-card {
  overflow: hidden;
}

.app-platform-card::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 92px;
  inset: auto -38px -42px auto;
  border-radius: 999px;
  background: rgba(9, 184, 111, 0.08);
  pointer-events: none;
  z-index: 0;
}

.app-platform-card > * {
  position: relative;
  z-index: 1;
}

.signal-grid a:hover {
  border-color: rgba(9, 184, 111, 0.34);
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}

.signal-grid span {
  color: var(--green-dark);
  font-size: 1.5rem;
  font-weight: 900;
}

.platform-icon {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(5, 122, 76, 0.13));
}

.platform-icon-android {
  width: 60px;
  height: 60px;
}

.platform-icon-ios {
  width: 56px;
  height: 56px;
}

.purpose-section,
.concept-section,
.purpose-story,
.purpose-progress,
.purpose-essay,
.tariff-section,
.roadmap-section,
.principles-section,
.faq-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  margin-top: 28px;
  border: 1px solid rgba(5, 122, 76, 0.12);
  border-radius: 8px;
  padding: clamp(30px, 5vw, 58px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 249, 242, 0.86)),
    radial-gradient(circle at 94% 8%, rgba(255, 224, 102, 0.16), transparent 28%);
  box-shadow: 0 24px 64px rgba(16, 32, 26, 0.08);
}

.purpose-section h2,
.concept-section h2,
.purpose-story h2,
.purpose-progress h2,
.purpose-essay h2,
.tariff-section h2,
.roadmap-section h2,
.principles-section h2,
.faq-section h2 {
  margin: 0;
  color: #123b2e;
  font-size: clamp(2rem, 3.3vw, 3.45rem);
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.purpose-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 10%, rgba(255, 224, 102, 0.18), transparent 28%),
    linear-gradient(180deg, #f3f8ee 0%, #f7fbf6 46%, #eef8f3 100%);
}

.purpose-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  overflow: hidden;
  margin-top: 38px;
  border: 1px solid rgba(220, 232, 226, 0.84);
  border-radius: 8px;
  padding: clamp(38px, 7vw, 82px);
  background-image:
    linear-gradient(100deg, rgba(255, 255, 255, 0.97) 0%, rgba(246, 253, 247, 0.9) 48%, rgba(246, 253, 247, 0.42) 100%),
    url("/assets/taroma-return-light.png");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.purpose-hero::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  inset: 34px 34px auto auto;
  border: 1px solid rgba(9, 184, 111, 0.2);
  border-radius: 999px;
  pointer-events: none;
  animation: signal-ring 7s ease-in-out infinite;
}

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

.purpose-hero h1 {
  max-width: 860px;
  margin: 0;
  color: #123b2e;
  font-size: clamp(2.75rem, 5.4vw, 5.25rem);
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.purpose-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.purpose-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.concept-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
}

.concept-section .section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.concept-stage {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: 480px;
  gap: 16px;
  align-content: center;
  padding: clamp(18px, 4vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(5, 122, 76, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgba(9, 184, 111, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(18, 59, 46, 0.94), rgba(5, 122, 76, 0.84));
}

.concept-orbit {
  position: absolute;
  inset: 34px;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
}

.concept-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  animation: concept-sweep 9s linear infinite;
}

.concept-orbit span:nth-child(2) {
  inset: 13%;
  animation-duration: 12s;
  animation-direction: reverse;
}

.concept-orbit span:nth-child(3) {
  inset: 27%;
  animation-duration: 7s;
}

.concept-node {
  position: relative;
  z-index: 1;
  width: min(360px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.14);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.concept-node:hover {
  animation-play-state: paused;
  background: var(--white);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.18);
  transform: translateY(-6px) scale(1.015);
}

.concept-node span {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.concept-node strong {
  display: block;
  margin-top: 10px;
  color: #123b2e;
  font-size: clamp(1.25rem, 2.1vw, 1.85rem);
  line-height: 1.06;
  overflow-wrap: anywhere;
}

.concept-node p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.concept-node-home {
  justify-self: start;
  animation: concept-float 5.8s ease-in-out infinite;
}

.concept-node-move {
  justify-self: end;
  animation: concept-float 6.4s ease-in-out 0.4s infinite;
}

.concept-node-system {
  justify-self: center;
  animation: concept-float 7s ease-in-out 0.9s infinite;
}

.purpose-pulse-card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid rgba(5, 122, 76, 0.14);
  border-radius: 8px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(239, 251, 244, 0.72)),
    radial-gradient(circle at 90% 10%, rgba(255, 224, 102, 0.24), transparent 34%);
  box-shadow: 0 28px 70px rgba(16, 32, 26, 0.12);
}

.purpose-pulse-card small {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.purpose-pulse-card strong {
  display: block;
  margin-top: 12px;
  color: #123b2e;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
}

.purpose-pulse-card p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.purpose-live-dot {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 12px rgba(9, 184, 111, 0.13);
  animation: live-dot 1.8s ease-in-out infinite;
}

.purpose-copy {
  display: grid;
  gap: 18px;
}

.purpose-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.74;
}

.purpose-essay {
  grid-template-columns: 1fr;
}

.purpose-essay-grid,
.purpose-proof,
.principle-grid,
.faq-grid {
  display: grid;
  gap: 14px;
}

.purpose-essay-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.purpose-essay-grid article,
.purpose-proof-card,
.principle-grid article,
.faq-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(5, 122, 76, 0.12);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  overflow-wrap: anywhere;
}

.purpose-essay-grid article::after,
.principle-grid article::after,
.faq-grid article::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  inset: auto -34px -34px auto;
  border-radius: 999px;
  background: rgba(9, 184, 111, 0.08);
}

.purpose-essay-grid span {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.purpose-essay-grid h3,
.principle-grid h3,
.faq-grid h3 {
  margin: 18px 0 0;
  color: #123b2e;
  font-size: 1.25rem;
}

.purpose-essay-grid p,
.principle-grid p,
.faq-grid p,
.progress-note,
.tariff-note {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.68;
}

.purpose-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.purpose-proof-card {
  min-height: 220px;
  background:
    linear-gradient(145deg, rgba(18, 59, 46, 0.92), rgba(5, 122, 76, 0.84)),
    radial-gradient(circle at 90% 0%, rgba(255, 224, 102, 0.18), transparent 34%);
  color: var(--white);
}

.purpose-proof-card span {
  display: block;
  color: #ffe066;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 0.96;
}

.purpose-proof-card p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.64;
}

.principles-section,
.faq-section {
  grid-template-columns: 1fr;
}

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

.purpose-final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 18px;
  margin-top: 28px;
  border-radius: 8px;
  padding: clamp(34px, 6vw, 68px);
  color: var(--white);
  background:
    linear-gradient(110deg, rgba(18, 59, 46, 0.94) 0%, rgba(5, 122, 76, 0.82) 58%, rgba(9, 184, 111, 0.62) 100%),
    url("/assets/taroma-system-return.png");
  background-position: center;
  background-size: cover;
  box-shadow: 0 28px 76px rgba(16, 32, 26, 0.18);
}

.purpose-final-cta::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  inset: auto 28px -160px auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  pointer-events: none;
}

.purpose-final-cta h2,
.purpose-final-cta p,
.purpose-final-cta .wordmark,
.purpose-final-cta .btn {
  position: relative;
  z-index: 1;
}

.purpose-final-cta h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.92;
}

.purpose-final-cta p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
}

.purpose-final-cta .btn {
  width: fit-content;
}

.progress-board {
  display: grid;
  gap: 18px;
}

.progress-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.progress-top span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.progress-top strong {
  color: #123b2e;
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.88;
}

.progress-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(9, 184, 111, 0.12);
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), #ffe066);
  animation: progress-breathe 4.2s ease-in-out infinite;
}

.progress-items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.progress-items span {
  border: 1px solid rgba(9, 184, 111, 0.16);
  border-radius: 999px;
  padding: 9px 12px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  font-weight: 900;
}

.progress-items .done,
.progress-items .active {
  color: var(--green-dark);
  background: rgba(9, 184, 111, 0.1);
}

.tariff-grid,
.roadmap-list {
  display: grid;
  gap: 14px;
}

.tariff-grid {
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.tariff-grid article,
.roadmap-list article {
  border: 1px solid rgba(5, 122, 76, 0.12);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.76);
  overflow-wrap: anywhere;
}

.tariff-grid span,
.roadmap-list span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tariff-grid strong {
  display: block;
  margin-top: 16px;
  color: #123b2e;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.tariff-grid p,
.roadmap-list p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.roadmap-list article {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 8px 18px;
  align-items: start;
}

.roadmap-list h3 {
  margin: 0;
  align-self: center;
}

.roadmap-list p {
  grid-column: 2;
}

.roadmap-list article > span {
  display: inline-grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 8px;
  color: #123b2e;
  background:
    linear-gradient(135deg, #ffe066, rgba(9, 184, 111, 0.28));
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  text-transform: none;
}

@keyframes progress-breathe {
  0%,
  100% {
    filter: saturate(1);
  }

  50% {
    filter: saturate(1.4);
  }
}

@keyframes live-dot {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(9, 184, 111, 0.12);
  }

  50% {
    transform: scale(0.82);
    box-shadow: 0 0 0 18px rgba(9, 184, 111, 0.04);
  }
}

@keyframes signal-ring {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.72;
  }

  50% {
    transform: scale(1.18);
    opacity: 0.32;
  }
}

@keyframes concept-sweep {
  from {
    transform: rotate(0deg) scale(0.98);
  }

  to {
    transform: rotate(360deg) scale(1.02);
  }
}

@keyframes concept-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.download-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.download-process article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(5, 122, 76, 0.12);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(238, 249, 242, 0.88)),
    radial-gradient(circle at 100% 0%, rgba(255, 224, 102, 0.2), transparent 34%);
  box-shadow: 0 22px 56px rgba(16, 32, 26, 0.08);
}

.download-process article::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 136px;
  height: 136px;
  border: 1px solid rgba(9, 184, 111, 0.16);
  border-radius: 50%;
}

.download-process article > span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #143126;
  background: #ffe066;
  font-weight: 900;
}

.download-process h3 {
  margin: 42px 0 12px;
  font-size: 1.28rem;
}

.download-process p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

@keyframes download-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes signal-pulse {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.82;
    transform: scale(1.05);
  }
}

.app-footer {
  margin-top: 0;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.app-footer-inner {
  display: grid;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 28px;
  grid-template-columns: minmax(230px, 1.1fr) minmax(0, 2fr);
  gap: 42px;
}

.app-footer-links {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .download-launch-hero,
  .app-footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: 4.9rem;
  }

  .section h2,
  .split-section h2,
  .cta-section h2 {
    font-size: 3.4rem;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-image {
    height: 500px;
  }

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

  .city-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .download-launch-hero {
    min-height: auto;
    padding: 42px;
  }

  .purpose-hero,
  .concept-section,
  .purpose-section {
    grid-template-columns: 1fr;
  }

  .purpose-story,
  .purpose-progress,
  .purpose-essay,
  .tariff-section,
  .roadmap-section,
  .principles-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .purpose-essay-grid,
  .purpose-proof,
  .tariff-grid,
  .principle-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .concept-stage {
    min-height: auto;
  }

  .concept-node {
    justify-self: stretch;
    width: 100%;
  }

  .download-process {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .nav {
    min-height: 68px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 14px;
  }

  .nav-actions {
    gap: 8px;
  }

  .wordmark {
    font-size: 1.65rem;
  }

  .language-switch a {
    min-width: 30px;
  }

  .hero {
    min-height: auto;
    gap: 34px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .section h2,
  .split-section h2,
  .cta-section h2 {
    font-size: 2.6rem;
  }

  .hero-copy {
    font-size: 1.02rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .hero-image {
    height: 360px;
  }

  .phone-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(320px, 100%);
    margin: -150px auto 0;
  }

  .map-strip {
    height: 72px;
  }

  .detail-map {
    height: 100px;
  }

  .deal-card {
    min-height: 62px;
  }

  .market-strip,
  .cta-section,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  .market-strip div {
    padding: 10px;
  }

  .section,
  .split-section,
  .cta-section {
    padding: 58px 0;
  }

  .cta-section {
    padding: 30px;
  }

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

  .download-launch-hero {
    margin-top: 34px;
    padding: 28px;
  }

  .purpose-hero {
    margin-top: 34px;
    padding: 30px;
  }

  .purpose-hero h1,
  .purpose-final-cta h2 {
    font-size: 3rem;
  }

  .roadmap-list article {
    grid-template-columns: 1fr;
  }

  .roadmap-list p {
    grid-column: auto;
  }

  .download-copy h1 {
    font-size: 3rem;
  }

  .download-signal-panel {
    min-height: 360px;
  }

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

  .app-footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .site-header .nav-cta {
    display: none;
  }

  .wordmark {
    font-size: 1.5rem;
  }

  .hero h1 {
    font-size: 2.95rem;
  }

  .section h2,
  .split-section h2,
  .cta-section h2 {
    font-size: 2.2rem;
  }

  .download-copy h1 {
    font-size: 2.55rem;
  }

  .download-launch-hero {
    padding: 22px;
  }

  .purpose-hero,
  .concept-section,
  .purpose-story,
  .purpose-progress,
  .purpose-essay,
  .tariff-section,
  .roadmap-section,
  .principles-section,
  .faq-section,
  .purpose-final-cta {
    padding: 24px;
  }
}

@media (max-width: 900px) {
  .app-topbar {
    grid-template-columns: 1fr auto;
  }

  .app-actions-cluster {
    grid-column: 2;
  }

  .app-tabs-nav {
    grid-column: 1 / -1;
    width: 100%;
  }

  .app-tabs-nav button {
    flex: 1;
    min-width: 0;
  }

  .app-hero {
    grid-template-columns: 1fr;
  }

  .role-grid,
  .dashboard-grid,
  .marketplace-grid,
  .field-grid,
  .role-toggle {
    grid-template-columns: 1fr;
  }

  .marketplace-map-panel {
    position: static;
  }

  .role-card {
    min-height: 210px;
  }
}

@media (max-width: 560px) {
  .app-shell {
    width: 100%;
    padding-top: 0;
    padding-bottom: 92px;
  }

  .app-topbar {
    top: 0;
    gap: 10px;
    padding: 10px;
  }

  .app-topbar .wordmark {
    font-size: 1.42rem;
  }

  .app-actions-cluster {
    gap: 6px;
  }

  .app-ghost {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .app-topbar .app-tabs-nav {
    position: fixed;
    right: 10px;
    bottom: 12px;
    left: 10px;
    z-index: 20;
    grid-column: auto;
    width: auto;
    box-shadow: 0 18px 48px rgba(16, 32, 26, 0.18);
  }

  .app-hero,
  .onboarding-hero {
    margin-top: 22px;
  }

  .app-hero h1,
  .onboarding-hero h1 {
    font-size: 2.5rem;
  }

  .app-panel,
  .role-card,
  .status-card {
    padding: 18px;
  }

  .panel-heading {
    display: grid;
  }

  .app-money-panel {
    grid-template-columns: 1fr;
  }
}

/* Landing redesign */
.landing-body {
  --landing-edge: max(20px, calc((100vw - 1240px) / 2));
  background: #f3f8ee;
}

.landing-body .site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 0;
  background: linear-gradient(180deg, rgba(7, 26, 19, 0.58), rgba(7, 26, 19, 0));
  box-shadow: none;
  backdrop-filter: none;
  transition: background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.landing-body .nav {
  width: min(1240px, calc(100% - 32px));
}

.landing-body .site-header .wordmark,
.landing-body .site-header .nav-links {
  color: var(--white);
}

.landing-body .site-header .nav-links a {
  color: rgba(255, 255, 255, 0.78);
}

.landing-body .site-header .nav-links a:hover {
  color: var(--white);
}

.landing-body .site-header .nav-links a.is-active {
  color: var(--white);
}

.landing-body .site-header .language-switch {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.landing-body .site-header .language-switch a {
  color: rgba(255, 255, 255, 0.7);
}

.landing-body .site-header .language-switch a.active {
  color: #143126;
  background: var(--white);
}

.landing-body .nav-cta {
  color: #143126;
  background: var(--white);
}

.landing-body .site-header.is-scrolled {
  border-bottom: 1px solid rgba(205, 228, 218, 0.92);
  background: rgba(248, 253, 247, 0.92);
  box-shadow: 0 16px 42px rgba(16, 32, 26, 0.08);
  backdrop-filter: blur(18px);
}

.landing-body .site-header.is-scrolled .wordmark {
  color: #123b2e;
}

.landing-body .site-header.is-scrolled .nav-links a {
  color: #49675c;
}

.landing-body .site-header.is-scrolled .nav-links a:hover {
  color: var(--green-dark);
}

.landing-body .site-header.is-scrolled .nav-links a.is-active {
  color: var(--green-dark);
}

.landing-body .site-header.is-scrolled .language-switch {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.86);
}

.landing-body .site-header.is-scrolled .language-switch a {
  color: var(--muted);
}

.landing-body .site-header.is-scrolled .language-switch a.active {
  color: var(--white);
  background: var(--green);
  box-shadow: none;
}

.landing-body .site-header.is-scrolled .nav-cta {
  border: 1px solid var(--green);
  color: var(--green-dark);
  background: rgba(9, 184, 111, 0.1);
  box-shadow: none;
}

.download-page .site-header .language-switch a.active,
.purpose-page .site-header .language-switch a.active {
  color: var(--white);
  background: var(--green);
  box-shadow: none;
}

.download-page .site-header .nav-cta,
.purpose-page .site-header .nav-cta {
  border: 1px solid var(--green);
  color: var(--green-dark);
  background: rgba(9, 184, 111, 0.1);
  box-shadow: none;
}

.landing-page {
  overflow: hidden;
  background:
    linear-gradient(180deg, #f3f8ee 0%, #f7fbf6 36%, #eef8f3 100%);
}

.landing-page .hero {
  --hero-scene: url("/assets/taroma-hero.png");
  position: relative;
  isolation: isolate;
  display: grid;
  width: 100%;
  min-height: calc(100vh - 76px);
  margin: 0;
  padding: clamp(112px, 10vw, 148px) var(--landing-edge) 48px;
  align-items: center;
  grid-template-columns: minmax(0, 0.96fr) minmax(410px, 0.86fr);
  gap: clamp(30px, 5vw, 74px);
  overflow: hidden;
  color: var(--white);
}

.landing-page .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(7, 26, 19, 0.94) 0%, rgba(7, 26, 19, 0.76) 42%, rgba(7, 26, 19, 0.24) 100%),
    linear-gradient(180deg, rgba(8, 44, 33, 0.12), rgba(8, 44, 33, 0.88)),
    var(--hero-scene);
  background-position: center;
  background-size: cover;
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.03);
}

.landing-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.38;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
  mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
}

.landing-page .hero-content {
  position: relative;
  z-index: 2;
  max-width: 790px;
}

.landing-page .hero .eyebrow {
  color: #ffe066;
}

.landing-page .hero h1 {
  max-width: 820px;
  color: var(--white);
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.92;
}

.landing-page .hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.04rem, 1.4vw, 1.2rem);
}

.landing-page .btn-primary {
  background: #12c983;
  box-shadow: 0 18px 42px rgba(18, 201, 131, 0.34);
}

.landing-page .btn-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
}

.landing-page .trust-row span {
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.story-slider {
  display: grid;
  max-width: 680px;
  gap: 9px;
  margin-top: 32px;
}

.story-dot {
  display: grid;
  grid-template-columns: auto 1fr 58px;
  align-items: center;
  gap: 13px;
  min-height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  font: inherit;
  text-align: left;
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.story-dot:hover {
  transform: translateX(4px);
}

.story-dot[aria-pressed="true"] {
  border-color: rgba(255, 224, 102, 0.78);
  background: rgba(255, 255, 255, 0.18);
}

.story-index {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: #143126;
  background: #ffe066;
  font-size: 0.78rem;
  font-weight: 900;
}

.story-dot strong,
.story-dot small {
  display: block;
}

.story-dot strong {
  font-size: 0.98rem;
}

.story-dot small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.35;
}

.story-meter {
  position: relative;
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
}

.story-meter::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #ffe066;
  transform: scaleX(0);
  transform-origin: left;
}

.story-dot[aria-pressed="true"] .story-meter::before {
  animation: story-meter 4.6s linear both;
}

.landing-page .hero-visual {
  position: relative;
  z-index: 2;
  min-height: 620px;
}

.landing-page .hero-visual::before {
  content: none;
}

.landing-page .phone-card {
  color: var(--ink);
  z-index: 5;
  right: clamp(0px, 2vw, 22px);
  bottom: 30px;
  width: min(342px, 76%);
  height: 570px;
  max-height: min(570px, calc(100vh - 100px));
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 96px rgba(2, 15, 11, 0.42);
  transform: rotate(2deg);
  animation: phone-float 6.4s ease-in-out infinite;
}

.landing-page .phone-card::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 2;
  width: 76px;
  height: 6px;
  border-radius: 999px;
  background: rgba(16, 32, 26, 0.14);
  transform: translateX(-50%);
}

.landing-page .market-strip {
  position: relative;
  z-index: 3;
  display: grid;
  width: min(1100px, calc(100% - 40px));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: -28px auto 58px;
  border-color: rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 70px rgba(16, 32, 26, 0.14);
  backdrop-filter: blur(16px);
}

.landing-page .market-strip div {
  position: relative;
  overflow: hidden;
  padding: 20px;
}

.landing-page .market-strip div::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 14px;
  left: 18px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #09b86f, #ffe066);
  transform: scaleX(0.78);
  transform-origin: left;
}

.landing-page .section,
.landing-page .split-section,
.landing-page .cta-section {
  width: min(1240px, calc(100% - 40px));
}

.landing-page .section h2,
.landing-page .split-section h2,
.landing-page .cta-section h2 {
  font-size: clamp(2.7rem, 5.8vw, 5.1rem);
  line-height: 0.96;
}

.landing-page .section-heading {
  max-width: 840px;
}

.landing-page .steps-grid {
  gap: 18px;
  align-items: stretch;
}

.landing-page .step-card,
.landing-page .benefit-list div {
  position: relative;
  overflow: hidden;
  border-color: rgba(5, 122, 76, 0.12);
  background: linear-gradient(155deg, #ffffff 0%, #f1fbf4 100%);
  box-shadow: 0 18px 46px rgba(16, 32, 26, 0.08);
}

.landing-page .step-card {
  min-height: 260px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.landing-page .step-card:nth-child(2) {
  transform: translateY(28px);
}

.landing-page .step-card:nth-child(3) {
  transform: translateY(10px);
}

.landing-page .step-card:hover {
  box-shadow: 0 24px 60px rgba(16, 32, 26, 0.13);
}

.landing-page .step-card::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -48px;
  width: 144px;
  height: 144px;
  border-radius: 50%;
  background: rgba(9, 184, 111, 0.1);
}

.landing-page .split-section {
  position: relative;
  overflow: hidden;
  margin-top: 44px;
  border: 1px solid rgba(5, 122, 76, 0.12);
  border-radius: 8px;
  padding: 72px;
  background-image:
    linear-gradient(96deg, rgba(247, 251, 246, 0.98) 0%, rgba(247, 251, 246, 0.92) 47%, rgba(247, 251, 246, 0.36) 100%),
    url("/assets/taroma-home-pickup.png");
  background-position: center right;
  background-size: cover;
  box-shadow: 0 26px 78px rgba(16, 32, 26, 0.1);
}

.landing-page .benefit-copy,
.landing-page .benefit-list {
  position: relative;
  z-index: 1;
}

.landing-page .benefit-list div {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
}

.landing-page .city-grid span {
  position: relative;
  overflow: hidden;
  min-height: 92px;
  border-color: rgba(5, 122, 76, 0.12);
  background: linear-gradient(155deg, #ffffff, #edf9f1);
  box-shadow: 0 14px 36px rgba(16, 32, 26, 0.07);
}

.landing-page .city-grid span::after {
  content: "";
  position: absolute;
  right: 16px;
  bottom: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #09b86f;
  box-shadow: 0 0 0 8px rgba(9, 184, 111, 0.12);
}

.landing-page .city-section {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid rgba(5, 122, 76, 0.1);
  border-radius: 8px;
  padding: 72px;
  background-image:
    linear-gradient(90deg, rgba(247, 251, 246, 0.98) 0%, rgba(247, 251, 246, 0.94) 48%, rgba(247, 251, 246, 0.45) 100%),
    url("/assets/taroma-collector-route.png");
  background-position: center;
  background-size: cover;
  box-shadow: 0 24px 70px rgba(16, 32, 26, 0.1);
}

.landing-page .city-section .section-heading,
.landing-page .city-grid {
  position: relative;
  z-index: 1;
}

.landing-page .city-section .section-heading {
  max-width: 720px;
}

.landing-page .cta-section {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  border-radius: 8px;
  background-image:
    linear-gradient(105deg, rgba(255, 255, 255, 0.9) 0%, rgba(242, 252, 246, 0.76) 54%, rgba(242, 252, 246, 0.28) 100%),
    url("/assets/taroma-return-light.png");
  background-position: center;
  background-size: cover;
  box-shadow: 0 28px 80px rgba(16, 32, 26, 0.16);
}

.landing-page .cta-section .btn-primary {
  color: #143126;
  background: #ffe066;
}

@keyframes story-meter {
  to {
    transform: scaleX(1);
  }
}

@keyframes phone-float {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }

  50% {
    transform: translateY(-12px) rotate(1.2deg);
  }
}

@media (max-width: 1100px) {
  .landing-page .hero {
    grid-template-columns: 1fr;
  }

  .landing-page .hero-content {
    max-width: 780px;
  }

  .landing-page .hero-visual {
    min-height: 650px;
  }
}

@media (max-width: 980px) {
  .landing-page .market-strip {
    margin-top: 26px;
    grid-template-columns: 1fr;
  }

  .landing-page .steps-grid {
    grid-template-columns: 1fr;
  }

  .landing-page .step-card,
  .landing-page .step-card:nth-child(2),
  .landing-page .step-card:nth-child(3) {
    min-height: auto;
    transform: none;
  }

  .landing-page .split-section {
    grid-template-columns: 1fr;
    padding: 44px;
    background-position: center;
  }

  .landing-page .city-section {
    padding: 44px;
    background-image:
      linear-gradient(90deg, rgba(247, 251, 246, 0.98) 0%, rgba(247, 251, 246, 0.94) 66%, rgba(247, 251, 246, 0.72) 100%),
      url("/assets/taroma-collector-route.png");
  }

  .landing-page .city-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .landing-page .cta-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .landing-body {
    --landing-edge: 16px;
  }

  .landing-page .hero {
    min-height: auto;
    padding-top: 42px;
    gap: 30px;
  }

  .landing-page .hero h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .story-dot {
    grid-template-columns: auto 1fr;
  }

  .story-meter {
    grid-column: 1 / -1;
    width: 100%;
  }

  .landing-page .hero-visual {
    display: grid;
    min-height: auto;
  }

  .landing-page .phone-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(330px, 100%);
    height: 560px;
    max-height: none;
    margin: -94px auto 0;
    animation: none;
    transform: none;
  }

  .landing-page .market-strip {
    width: min(calc(100% - 32px), 520px);
  }

  .landing-page .section,
  .landing-page .split-section,
  .landing-page .cta-section {
    width: min(calc(100% - 32px), 620px);
  }

  .landing-page .split-section,
  .landing-page .cta-section,
  .landing-page .city-section {
    padding: 30px;
  }

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

@media (max-width: 430px) {
  .landing-page .hero h1 {
    font-size: 2.95rem;
  }

  .landing-page .section h2,
  .landing-page .split-section h2,
  .landing-page .cta-section h2 {
    font-size: 2.35rem;
  }

  .landing-page .phone-card {
    width: min(318px, 100%);
    margin-top: -70px;
  }
}

/* Landing composition pass */
.landing-page [data-reveal] {
  opacity: 1;
  transform: none;
}

.landing-body.reveal-ready .landing-page [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.landing-body.reveal-ready .landing-page [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.landing-page .hero-visual::before {
  content: none;
}

.landing-page .hero-visual::after {
  content: none;
}

.flow-section {
  position: relative;
  padding-top: 96px;
}

.flow-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.flow-board::before {
  content: "";
  position: absolute;
  inset: -22px;
  z-index: 0;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(9, 184, 111, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(9, 184, 111, 0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.flow-line {
  position: absolute;
  top: 50px;
  right: 10%;
  left: 10%;
  z-index: 1;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(9, 184, 111, 0.16);
}

.flow-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, var(--green), #ffe066, transparent);
  animation: flow-scan 4.8s linear infinite;
}

.flow-line span {
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 3px solid var(--white);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(9, 184, 111, 0.12);
  transform: translate(-50%, -50%);
}

.flow-line span:nth-child(1) {
  left: 0;
}

.flow-line span:nth-child(2) {
  left: 50%;
}

.flow-line span:nth-child(3) {
  left: 100%;
}

.flow-step {
  position: relative;
  z-index: 2;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid rgba(5, 122, 76, 0.14);
  border-radius: 8px;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(238, 249, 242, 0.88)),
    radial-gradient(circle at 100% 0%, rgba(255, 224, 102, 0.22), transparent 34%);
  box-shadow: 0 24px 62px rgba(16, 32, 26, 0.09);
}

.flow-step::after {
  content: "";
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(9, 184, 111, 0.18);
  border-radius: 50%;
}

.flow-step > span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #143126;
  background: #ffe066;
  font-weight: 900;
}

.flow-step h3 {
  margin: 56px 0 12px;
  font-size: 1.34rem;
}

.flow-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.experience-section,
.value-section {
  width: min(1340px, calc(100% - 40px));
  margin: 0 auto;
}

.experience-section {
  display: grid;
  grid-template-columns: minmax(620px, 1.26fr) minmax(320px, 0.74fr);
  gap: 56px;
  align-items: start;
  padding: 92px 0 70px;
}

.experience-section .role-carousel {
  grid-column: 1;
}

.experience-section .experience-copy {
  grid-column: 2;
}

.experience-copy h2,
.value-copy h2 {
  margin: 0;
  font-size: clamp(2.7rem, 5.8vw, 5.1rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.experience-copy {
  position: relative;
  z-index: 2;
  max-width: 460px;
}

.experience-copy h2 {
  font-size: clamp(2.35rem, 3.8vw, 3.95rem);
}

.experience-copy p,
.value-copy p {
  max-width: 610px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
}

.role-carousel {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(5, 122, 76, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 249, 242, 0.78)),
    radial-gradient(circle at 86% 12%, rgba(255, 224, 102, 0.18), transparent 26%);
  box-shadow: 0 28px 78px rgba(16, 32, 26, 0.12);
}

.role-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(370px, 1fr) auto;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.role-slide.leaving {
  opacity: 0;
  transform: translateX(-38%);
}

.role-carousel[data-slide-direction="prev"] .role-slide {
  transform: translateX(-100%);
}

.role-carousel[data-slide-direction="prev"] .role-slide.leaving {
  transform: translateX(38%);
}

.role-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.role-slide figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 0 0 8px 8px;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%);
}

.role-slide figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(16, 32, 26, 0.38));
}

.role-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.role-slide-copy {
  display: grid;
  gap: 8px;
  padding: 26px 34px 30px;
}

.role-slide-copy span {
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.role-slide-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.3vw, 2.05rem);
  line-height: 1.05;
}

.role-slide-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.role-carousel-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 6px;
  background: rgba(20, 49, 38, 0.72);
  box-shadow: 0 18px 42px rgba(16, 32, 26, 0.18);
  backdrop-filter: blur(14px);
}

.role-carousel-controls button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font: inherit;
  font-size: 1.35rem;
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.role-carousel-controls button:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-1px);
}

.role-carousel-controls svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.role-slide-status {
  position: relative;
  display: grid;
  min-width: 96px;
  min-height: 42px;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 3px;
  overflow: hidden;
  border-radius: 999px;
  padding: 1px 15px 0px 25px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  font-weight: 900;
}

.role-slide-status span {
  font-size: 1rem;
}

.role-slide-status small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 900;
}

.role-slide-status i {
  position: absolute;
  right: 12px;
  bottom: 7px;
  left: 12px;
  height: 3px;
  border-radius: 999px;
  background: #ffe066;
  transform: scaleX(0);
  transform-origin: left;
}

.value-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.76fr) minmax(520px, 1.24fr);
  gap: 44px;
  align-items: center;
  padding: 72px 0 92px;
}

.value-console {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(5, 122, 76, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(230, 249, 239, 0.82)),
    radial-gradient(circle at 90% 10%, rgba(255, 224, 102, 0.2), transparent 30%),
    linear-gradient(135deg, #f8fff9, #dff6ea);
  box-shadow: 0 26px 72px rgba(16, 32, 26, 0.1);
}

.value-card {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
}

.value-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.value-top span,
.value-top strong {
  display: block;
}

.value-top span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.value-top strong {
  color: #143126;
  font-size: clamp(2.6rem, 6vw, 5.5rem);
  line-height: 0.9;
  text-align: right;
}

.value-card input[type="range"] {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) var(--range-progress, 25%), rgba(9, 184, 111, 0.13) 0);
  accent-color: var(--green);
  -webkit-appearance: none;
  appearance: none;
}

.value-scale {
  display: flex;
  justify-content: space-between;
  margin-top: -16px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

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

.value-results div {
  min-height: 126px;
  border: 1px solid rgba(5, 122, 76, 0.12);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 36px rgba(16, 32, 26, 0.06);
}

.value-results span,
.value-results strong {
  display: block;
}

.value-results span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.value-results strong {
  margin-top: 18px;
  color: #143126;
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
  line-height: 1;
}

.value-results .value-highlight {
  color: var(--white);
  background: linear-gradient(135deg, #0d7b57, #0a5f45);
}

.value-results .value-highlight span,
.value-results .value-highlight strong {
  color: var(--white);
}

.value-status {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(9, 184, 111, 0.16);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.74);
}

.value-status span {
  color: #0a5f45;
  font-size: 1.05rem;
  font-weight: 900;
}

.value-status small {
  color: var(--muted);
  line-height: 1.5;
}

.value-card input[type="range"]::-webkit-slider-runnable-track {
  height: 10px;
  border-radius: 999px;
  background: transparent;
}

.value-card input[type="range"]::-webkit-slider-thumb {
  width: 26px;
  height: 26px;
  margin-top: -8px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(9, 184, 111, 0.28);
  -webkit-appearance: none;
  appearance: none;
}

.value-card input[type="range"]::-moz-range-track {
  height: 10px;
  border-radius: 999px;
  background: transparent;
}

.value-card input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: 4px solid var(--white);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 10px 24px rgba(9, 184, 111, 0.28);
}

.compact-cta {
  width: min(1240px, calc(100% - 40px));
  min-height: auto;
  margin: 0 auto 42px;
  padding: 34px 38px;
  color: #123b2e;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 34px;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 253, 247, 0.88) 43%, rgba(246, 253, 247, 0.5) 70%, rgba(246, 253, 247, 0.16) 100%),
    url("/assets/taroma-return-light.png");
  background-position: center;
  background-size: cover;
}

.compact-cta h2 {
  max-width: none;
  color: #123b2e;
  font-size: clamp(2rem, 3vw, 2.9rem);
  white-space: normal;
}

.compact-cta .wordmark-light {
  color: #123b2e;
}

.compact-cta-copy p {
  max-width: 560px;
  margin: 12px 0 0;
  color: #49675c;
  line-height: 1.58;
}

.cta-actions {
  display: grid;
  min-width: 240px;
  justify-items: end;
  gap: 12px;
}

.launch-cta-button {
  display: inline-flex;
  min-width: 230px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 0 18px 0 24px;
  color: var(--white);
  background: linear-gradient(135deg, #0f8f64, #0b6148);
  box-shadow: 0 18px 38px rgba(9, 118, 83, 0.25);
}

.landing-page .compact-cta .launch-cta-button {
  color: var(--white);
  background: linear-gradient(135deg, #0f8f64, #0b6148);
}

.launch-cta-button span {
  font-weight: 900;
}

.launch-cta-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.35;
}

@keyframes flow-scan {
  from {
    transform: translateX(-100%);
  }

  to {
    transform: translateX(100%);
  }
}

@keyframes role-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

@media (max-width: 980px) {
  .flow-board,
  .experience-section,
  .value-section {
    grid-template-columns: 1fr;
  }

  .experience-section .role-carousel,
  .experience-section .experience-copy {
    grid-column: auto;
  }

  .flow-line {
    display: none;
  }

  .flow-step {
    min-height: auto;
  }

  .flow-step h3 {
    margin-top: 28px;
  }

  .role-carousel {
    min-height: 620px;
  }

  .compact-cta {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    justify-items: start;
  }

  .value-results {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .landing-page .hero {
    padding-top: 96px;
  }

  .landing-page .hero-visual::before,
  .landing-page .hero-visual::after {
    display: none;
  }

  .flow-section,
  .experience-section,
  .value-section {
    width: min(calc(100% - 32px), 620px);
    padding: 58px 0;
  }

  .experience-copy h2,
  .value-copy h2 {
    font-size: 2.6rem;
  }

  .role-carousel {
    min-height: 610px;
  }

  .role-slide {
    grid-template-rows: 218px auto;
  }

  .role-slide figure {
    clip-path: none;
  }

  .role-slide-copy {
    padding: 18px;
  }

  .role-carousel-controls {
    top: 14px;
    right: 14px;
    bottom: auto;
    transform: scale(0.92);
    transform-origin: top right;
  }

  .value-top {
    display: grid;
  }

  .compact-cta {
    width: min(calc(100% - 32px), 620px);
    padding: 28px;
  }

  .compact-cta h2 {
    white-space: normal;
  }

  .launch-cta-button {
    justify-self: start;
  }
}

@media (max-width: 430px) {
  .role-carousel {
    min-height: 650px;
  }

  .role-slide {
    grid-template-rows: 198px auto;
  }

  .value-card {
    padding: 22px;
  }

  .value-top strong {
    font-size: 3rem;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landing-page *,
  .landing-page *::before,
  .landing-page *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
