:root {
  color-scheme: light;
  --page: #f6f8f4;
  --surface: #ffffff;
  --surface-soft: #f0f5f0;
  --surface-blue: #f2f7ff;
  --ink: #142019;
  --ink-soft: #536158;
  --ink-muted: #7d8a82;
  --line: #dfe7e0;
  --line-strong: #cbd8cf;
  --brand: #117753;
  --brand-dark: #0a5b3f;
  --brand-soft: #e2f4eb;
  --blue: #2468d8;
  --blue-soft: #e8f0ff;
  --orange: #d66a2c;
  --orange-soft: #fff0e4;
  --violet: #7457c8;
  --violet-soft: #eeeaff;
  --cyan: #177c8c;
  --cyan-soft: #e3f5f7;
  --rose: #c94f68;
  --rose-soft: #fdebf0;
  --shadow-sm: 0 8px 24px rgb(20 32 25 / 7%);
  --shadow-md: 0 20px 60px rgb(20 32 25 / 11%);
  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 16px;
  --container: 1180px;
  --header-height: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
a {
  font: inherit;
}

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

svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #ffffff;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: rgb(246 248 244 / 88%);
  backdrop-filter: blur(14px);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 5px 24px rgb(20 32 25 / 6%);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--brand);
  color: #ffffff;
  place-items: center;
  box-shadow: 0 7px 18px rgb(17 119 83 / 22%);
}

.brand-mark svg {
  width: 23px;
  height: 23px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand > span:last-child {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.brand strong {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand small {
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--brand);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.header-action:hover {
  background: var(--brand);
  transform: translateY(-1px);
}

.header-action svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height) - 48px);
  overflow: hidden;
  padding: 72px 0 56px;
  background: var(--page);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 48vw;
  height: 100%;
  background-image:
    linear-gradient(rgb(17 119 83 / 7%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(17 119 83 / 7%) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to left, #000000 0%, transparent 92%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100svh - var(--header-height) - 176px);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.hero h1 {
  margin: 0;
  font-size: 78px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero h1 span {
  color: var(--brand);
}

.hero-lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 750;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.button svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  background: var(--brand);
  color: #ffffff;
  box-shadow: 0 12px 26px rgb(17 119 83 / 19%);
}

.button-primary:hover {
  background: var(--brand-dark);
  box-shadow: 0 16px 32px rgb(17 119 83 / 24%);
  transform: translateY(-2px);
}

.button-secondary {
  border-color: var(--line-strong);
  background: var(--surface);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
  transform: translateY(-2px);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 14px;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-points svg {
  width: 17px;
  height: 17px;
  color: var(--brand);
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  position: relative;
  display: flex;
  min-height: 650px;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.visual-backdrop {
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  border: 1px solid rgb(17 119 83 / 13%);
  border-radius: 50%;
}

.visual-backdrop::before,
.visual-backdrop::after {
  position: absolute;
  border: 1px solid rgb(17 119 83 / 10%);
  border-radius: inherit;
  content: "";
  inset: 40px;
}

.visual-backdrop::after {
  inset: 96px;
}

.backdrop-line {
  position: absolute;
  width: 72px;
  height: 1px;
  background: rgb(17 119 83 / 25%);
}

.line-one {
  top: 92px;
  left: -26px;
  transform: rotate(-28deg);
}

.line-two {
  right: -22px;
  bottom: 116px;
  transform: rotate(34deg);
}

.backdrop-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border: 2px solid var(--brand);
  border-radius: 50%;
  background: var(--page);
}

.dot-one {
  top: 118px;
  right: 42px;
}

.dot-two {
  bottom: 86px;
  left: 44px;
}

.device {
  position: relative;
  width: 330px;
  padding: 12px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 42px;
  background: #18241d;
  box-shadow:
    0 40px 90px rgb(20 32 25 / 28%),
    inset 0 0 0 1px rgb(255 255 255 / 7%);
  animation: device-float 6s ease-in-out infinite;
}

.device::after {
  position: absolute;
  top: 110px;
  right: -4px;
  width: 4px;
  height: 72px;
  border-radius: 0 4px 4px 0;
  background: #0f1813;
  content: "";
}

.device-top {
  display: flex;
  height: 30px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
}

.device-island {
  width: 76px;
  height: 20px;
  border-radius: 999px;
  background: #080d0a;
}

.app-screen {
  overflow: hidden;
  min-height: 604px;
  padding: 17px 14px 14px;
  border-radius: 31px;
  background: #f5f7f4;
}

.app-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.app-titlebar > div {
  display: grid;
}

.app-titlebar small {
  color: var(--ink-muted);
  font-size: 10px;
}

.app-titlebar strong {
  font-size: 20px;
  line-height: 1.3;
}

.app-titlebar button {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  place-items: center;
}

.app-titlebar button svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-titlebar button span {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 7px;
  height: 7px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #e65d4d;
}

.app-search {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink-muted);
  font-size: 10px;
}

.app-search svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.app-banner {
  position: relative;
  display: flex;
  min-height: 144px;
  overflow: hidden;
  align-items: center;
  margin-top: 14px;
  padding: 18px;
  border-radius: var(--radius);
  background: #173d31;
  color: #ffffff;
}

.banner-copy {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: 170px;
}

.banner-copy span {
  color: #91e5c4;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.banner-copy strong {
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.35;
}

.banner-copy small {
  margin-top: 6px;
  color: rgb(255 255 255 / 65%);
  font-size: 9px;
}

.artwork {
  position: absolute;
  right: -12px;
  bottom: -18px;
  width: 144px;
  height: 144px;
}

.shape {
  position: absolute;
  display: block;
}

.shape-a {
  right: 12px;
  bottom: 18px;
  width: 92px;
  height: 92px;
  border-radius: 50% 50% 12px 50%;
  background: #ffd166;
  transform: rotate(12deg);
}

.shape-b {
  right: 54px;
  bottom: 66px;
  width: 56px;
  height: 56px;
  border: 8px solid #f07c4b;
  border-radius: 50%;
}

.shape-c {
  right: 88px;
  bottom: 12px;
  width: 44px;
  height: 74px;
  border-radius: 24px 24px 8px 8px;
  background: #4db8aa;
  transform: rotate(-18deg);
}

.app-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 2px 10px;
}

.app-section-head strong {
  font-size: 13px;
}

.app-section-head span {
  color: var(--brand);
  font-size: 9px;
  font-weight: 700;
}

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

.mini-product {
  display: grid;
  overflow: hidden;
  padding: 0 0 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.mini-cover {
  display: grid;
  height: 78px;
  margin-bottom: 8px;
  color: rgb(255 255 255 / 88%);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.2em;
  place-items: center;
}

.cover-green {
  background:
    linear-gradient(135deg, transparent 44%, rgb(255 255 255 / 14%) 45% 55%, transparent 56%),
    #5f8d7b;
}

.cover-orange {
  background:
    radial-gradient(circle at 68% 38%, rgb(255 255 255 / 34%) 0 13%, transparent 14%),
    #d77b4b;
}

.mini-product strong,
.mini-product small {
  overflow: hidden;
  padding: 0 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-product strong {
  font-size: 10px;
}

.mini-product small {
  color: var(--ink-muted);
  font-size: 8px;
}

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

.app-quick-grid > div {
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 5px;
  padding: 10px 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink-soft);
  font-size: 8px;
  text-align: center;
}

.app-quick-grid svg {
  width: 17px;
  height: 17px;
  color: var(--brand);
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-note {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid rgb(20 32 25 / 8%);
  border-radius: var(--radius);
  background: rgb(255 255 255 / 94%);
  box-shadow: var(--shadow-md);
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.note-top {
  top: 128px;
  left: -4px;
}

.note-bottom {
  right: -4px;
  bottom: 122px;
}

.note-icon {
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  place-items: center;
}

.note-icon-blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.note-icon svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.highlight-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

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

.highlight-grid > div {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  border-right: 1px solid var(--line);
}

.highlight-grid > div:last-child {
  border-right: 0;
}

.highlight-grid strong {
  color: var(--brand);
  font-size: 15px;
}

.highlight-grid span {
  color: var(--ink-soft);
  font-size: 14px;
}

.section {
  padding: 104px 0;
}

.features-section {
  background: var(--page);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 46px;
}

.section-heading h2,
.download-heading h2,
.journey-copy h2,
.faq-heading h2,
.closing-inner h2 {
  margin: 0;
  color: var(--ink);
  font-size: 44px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.18;
}

.section-heading > p:last-child,
.journey-copy > p,
.faq-heading > p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

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

.feature-card {
  min-height: 238px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.feature-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  place-items: center;
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-green {
  background: var(--brand-soft);
  color: var(--brand);
}

.icon-blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.icon-orange {
  background: var(--orange-soft);
  color: var(--orange);
}

.icon-violet {
  background: var(--violet-soft);
  color: var(--violet);
}

.icon-cyan {
  background: var(--cyan-soft);
  color: var(--cyan);
}

.icon-rose {
  background: var(--rose-soft);
  color: var(--rose);
}

.feature-card h3 {
  margin: 22px 0 9px;
  font-size: 19px;
  font-weight: 800;
}

.feature-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.8;
}

.journey-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.journey-grid {
  display: grid;
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
}

.journey-copy > p {
  max-width: 580px;
}

.journey-list {
  margin-top: 36px;
}

.journey-list article {
  display: grid;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 44px minmax(0, 1fr);
}

.journey-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.journey-list article > span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.journey-list h3 {
  margin: 0;
  font-size: 17px;
}

.journey-list p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.journey-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  box-shadow: var(--shadow-md);
}

.panel-header {
  display: grid;
  gap: 7px;
  padding: 28px;
  background: var(--ink);
  color: #ffffff;
}

.panel-header span {
  color: #95d9bf;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.panel-header strong {
  font-size: 22px;
  line-height: 1.4;
}

.panel-list {
  display: grid;
  gap: 0;
  padding: 8px 24px;
}

.panel-list > div {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.panel-list > div:last-child {
  border-bottom: 0;
}

.panel-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: var(--brand-soft);
  color: var(--brand);
  place-items: center;
}

.panel-icon-blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.panel-icon-orange {
  background: var(--orange-soft);
  color: var(--orange);
}

.panel-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.panel-list > div > span:last-child {
  display: grid;
  gap: 3px;
}

.panel-list strong {
  font-size: 15px;
}

.panel-list small {
  color: var(--ink-muted);
  font-size: 12px;
}

.download-section {
  background: #eef4ef;
}

.download-heading {
  display: grid;
  align-items: end;
  gap: 40px;
  margin-bottom: 42px;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.48fr);
}

.download-heading > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.8;
}

.download-layout {
  display: grid;
  align-items: stretch;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.75fr);
}

.download-app {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: center;
  padding: 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.download-app-copy {
  display: flex;
  align-items: center;
  gap: 18px;
}

.download-app-icon {
  display: grid;
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  border-radius: 18px;
  background: var(--brand);
  color: #ffffff;
  place-items: center;
  box-shadow: 0 14px 28px rgb(17 119 83 / 20%);
}

.download-app-icon svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.download-app h3 {
  margin: 0;
  font-size: 28px;
}

.download-app-copy p {
  margin: 5px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.store-actions {
  display: grid;
  gap: 12px;
  margin-top: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.store-button {
  display: flex;
  min-height: 70px;
  align-items: center;
  gap: 13px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #f9fbf9;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.store-button:hover {
  border-color: var(--brand);
  background: var(--brand-soft);
  transform: translateY(-2px);
}

.store-button svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  color: var(--brand);
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.store-button > span {
  display: grid;
}

.store-button small {
  color: var(--ink-muted);
  font-size: 11px;
}

.store-button strong {
  font-size: 16px;
}

.download-note {
  margin: 18px 0 0;
  color: var(--ink-muted);
  font-size: 12px;
}

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

.qr-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.qr-card-head {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 12px;
}

.qr-card-head h3 {
  margin: 0;
  font-size: 17px;
}

.qr-card-head p {
  margin: 2px 0 0;
  color: var(--ink-muted);
  font-size: 12px;
}

.qr-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: var(--radius);
  background: var(--brand-soft);
  color: var(--brand);
  place-items: center;
}

.qr-icon-blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.qr-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.qr-image {
  width: min(100%, 220px);
  height: auto;
  margin: 24px auto 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.qr-code-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

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

.faq-grid {
  display: grid;
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.faq-heading > p {
  max-width: 410px;
}

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

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

.faq-list summary {
  position: relative;
  padding: 24px 44px 24px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 750;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--ink-soft);
  border-bottom: 2px solid var(--ink-soft);
  content: "";
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}

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

.faq-list details p {
  max-width: 690px;
  margin: -4px 0 24px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.85;
}

.closing-section {
  padding: 68px 0;
  background: var(--ink);
  color: #ffffff;
}

.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.closing-inner .eyebrow {
  color: #8bdfbf;
}

.closing-inner h2 {
  max-width: 760px;
  color: #ffffff;
}

.closing-inner .button-primary {
  flex: 0 0 auto;
  background: #ffffff;
  color: var(--ink);
  box-shadow: none;
}

.closing-inner .button-primary:hover {
  background: #dff4eb;
  color: var(--brand-dark);
}

.site-footer {
  padding: 48px 0;
  border-top: 1px solid #26362d;
  background: #101914;
  color: rgb(255 255 255 / 70%);
}

.footer-inner {
  display: grid;
  align-items: start;
  gap: 36px;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr);
}

.brand-footer {
  color: #ffffff;
}

.brand-footer small {
  color: #8bdfbf;
}

.footer-brand p {
  max-width: 360px;
  margin: 18px 0 0;
  color: rgb(255 255 255 / 55%);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
}

.footer-links a {
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #8bdfbf;
}

.footer-legal {
  display: grid;
  justify-items: end;
  gap: 6px;
  text-align: right;
}

.footer-legal p,
.footer-legal a,
.footer-legal small {
  margin: 0;
  font-size: 12px;
}

.footer-legal a {
  color: #8bdfbf;
}

.footer-legal small {
  color: rgb(255 255 255 / 42%);
}

.toast {
  position: fixed;
  z-index: 200;
  right: 24px;
  bottom: 24px;
  max-width: min(360px, calc(100vw - 48px));
  padding: 13px 16px;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: var(--radius);
  background: rgb(20 32 25 / 96%);
  box-shadow: var(--shadow-md);
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: 0.1s;
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

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

@media (max-width: 1050px) {
  .hero {
    padding-top: 52px;
  }

  .hero-grid {
    gap: 36px;
    grid-template-columns: minmax(0, 1fr) 390px;
  }

  .hero h1 {
    font-size: 68px;
  }

  .hero-visual {
    min-height: 610px;
    transform: scale(0.92);
  }

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

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

  .download-app {
    min-height: auto;
  }
}

@media (min-width: 861px) and (max-height: 820px) {
  .hero {
    min-height: auto;
    padding: 40px 0;
  }

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

  .hero h1 {
    font-size: 64px;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 17px;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-points {
    margin-top: 22px;
  }

  .hero-visual {
    height: 560px;
    min-height: 560px;
    transform: scale(0.86);
    transform-origin: center;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 64px;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 52px 0 36px;
  }

  .hero::before {
    top: auto;
    bottom: 0;
    width: 100%;
    height: 60%;
  }

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

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

  .hero h1 {
    font-size: 64px;
  }

  .hero-visual {
    min-height: 640px;
    transform: none;
  }

  .journey-grid,
  .faq-grid {
    gap: 44px;
    grid-template-columns: 1fr;
  }

  .faq-heading {
    position: static;
  }

  .download-heading {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .closing-inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-links {
    justify-content: flex-end;
  }

  .footer-legal {
    justify-items: start;
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-action {
    min-height: 38px;
    padding: 0 13px;
    font-size: 13px;
  }

  .header-action svg {
    display: none;
  }

  .hero {
    padding-top: 40px;
  }

  .hero h1 {
    font-size: 50px;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
  }

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

  .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
  }

  .hero-visual {
    min-height: 590px;
    margin: 6px -8px 0;
  }

  .visual-backdrop {
    width: 420px;
    height: 420px;
  }

  .device {
    width: 300px;
    border-radius: 38px;
  }

  .app-screen {
    min-height: 548px;
    border-radius: 28px;
  }

  .app-banner {
    min-height: 132px;
    padding: 15px;
  }

  .banner-copy strong {
    font-size: 16px;
  }

  .floating-note {
    padding: 9px 10px;
    font-size: 10px;
  }

  .note-top {
    top: 76px;
    left: -2px;
  }

  .note-bottom {
    right: -2px;
    bottom: 72px;
  }

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

  .highlight-grid > div {
    min-height: 72px;
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .highlight-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading h2,
  .download-heading h2,
  .journey-copy h2,
  .faq-heading h2,
  .closing-inner h2 {
    font-size: 32px;
  }

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

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

  .journey-list article {
    gap: 12px;
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .journey-panel {
    border-radius: var(--radius);
  }

  .download-app {
    padding: 26px;
  }

  .download-app-copy {
    align-items: flex-start;
  }

  .download-app-icon {
    width: 56px;
    height: 56px;
    border-radius: 15px;
  }

  .download-app h3 {
    font-size: 22px;
  }

  .store-actions,
  .qr-grid {
    grid-template-columns: 1fr;
  }

  .qr-card {
    padding: 24px;
  }

  .qr-image {
    max-width: 200px;
  }

  .faq-list summary {
    font-size: 16px;
  }

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

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

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Dark theme aligned with frontend/baseuniapp/pages/my/index.vue */
:root {
  color-scheme: dark;
  --page: #10120c;
  --surface: rgb(255 255 255 / 8%);
  --surface-soft: rgb(255 255 255 / 5%);
  --surface-blue: rgb(116 163 255 / 12%);
  --ink: rgb(255 255 255 / 90%);
  --ink-soft: rgb(255 255 255 / 60%);
  --ink-muted: rgb(255 255 255 / 40%);
  --line: rgb(255 255 255 / 12%);
  --line-strong: rgb(255 255 255 / 20%);
  --brand: #ffb38c;
  --brand-dark: #f09c70;
  --brand-soft: rgb(255 179 140 / 12%);
  --blue: #74a3ff;
  --blue-soft: rgb(116 163 255 / 14%);
  --orange: #ffc18b;
  --orange-soft: rgb(255 193 139 / 14%);
  --violet: #b9a2ff;
  --violet-soft: rgb(185 162 255 / 14%);
  --cyan: #7febb4;
  --cyan-soft: rgb(127 235 180 / 14%);
  --rose: #f4686b;
  --rose-soft: rgb(244 104 107 / 14%);
  --shadow-sm: 0 10px 30px rgb(0 0 0 / 24%);
  --shadow-md: 0 24px 70px rgb(0 0 0 / 36%);
}

body {
  background: var(--page);
  color: var(--ink);
}

.site-header {
  background: rgb(16 18 12 / 84%);
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgb(16 18 12 / 96%);
  box-shadow: 0 8px 28px rgb(0 0 0 / 28%);
}

.brand {
  color: var(--ink);
}

.brand-mark {
  background: linear-gradient(135deg, #ffb38c 0%, #ffd7bb 100%);
  color: #3e1a00;
  box-shadow: 0 8px 22px rgb(255 179 140 / 18%);
}

.brand small,
.eyebrow,
.footer-legal a {
  color: var(--brand);
}

.desktop-nav {
  color: var(--ink-soft);
}

.desktop-nav a:hover {
  color: var(--brand);
}

.desktop-nav a::after {
  background: var(--brand);
}

.header-action {
  background: linear-gradient(90deg, #ffb38c 0%, #ffd7bb 100%);
  color: #3e1a00;
}

.header-action:hover {
  background: linear-gradient(90deg, #ffd0b2 0%, #ffe4cf 100%);
}

.hero {
  background: var(--page);
}

.hero::before {
  background-image:
    linear-gradient(rgb(255 179 140 / 7%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 179 140 / 7%) 1px, transparent 1px);
}

.hero-lead,
.section-heading > p:last-child,
.journey-copy > p,
.faq-heading > p,
.download-heading > p,
.feature-card p,
.journey-list p {
  color: var(--ink-soft);
}

.button-primary {
  background: linear-gradient(90deg, #ffb38c 0%, #ffd7bb 100%);
  color: #3e1a00;
  box-shadow: 0 12px 28px rgb(255 179 140 / 16%);
}

.button-primary:hover {
  background: linear-gradient(90deg, #ffd0b2 0%, #ffe4cf 100%);
  box-shadow: 0 16px 34px rgb(255 179 140 / 22%);
}

.button-secondary {
  border-color: var(--line);
  background: rgb(255 255 255 / 8%);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgb(255 179 140 / 48%);
  background: rgb(255 179 140 / 12%);
  color: var(--brand);
}

.hero-points {
  color: var(--ink-soft);
}

.hero-points svg {
  color: var(--cyan);
}

.visual-backdrop {
  border-color: rgb(255 179 140 / 14%);
}

.visual-backdrop::before,
.visual-backdrop::after {
  border-color: rgb(255 179 140 / 10%);
}

.backdrop-line {
  background: rgb(255 179 140 / 24%);
}

.backdrop-dot {
  border-color: var(--brand);
  background: var(--page);
}

.device {
  border-color: rgb(255 255 255 / 10%);
  background: #050604;
  box-shadow:
    0 44px 90px rgb(0 0 0 / 56%),
    inset 0 0 0 1px rgb(255 255 255 / 6%);
}

.device::after {
  background: #000000;
}

.device-top {
  color: rgb(255 255 255 / 74%);
}

.device-island {
  background: #000000;
}

.app-screen {
  background: linear-gradient(180deg, #382005 0%, #10120c 255px, #10120c 100%);
  color: var(--ink);
}

.floating-note {
  border-color: var(--line);
  background: rgb(31 29 23 / 92%);
  color: var(--ink);
  box-shadow: var(--shadow-md);
}

.note-icon {
  background: var(--cyan-soft);
  color: var(--cyan);
}

.note-icon-blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.highlight-band {
  border-color: var(--line);
  background: #0c0e09;
}

.highlight-grid > div {
  border-color: var(--line);
}

.highlight-grid strong {
  color: var(--brand);
}

.highlight-grid span {
  color: var(--ink-soft);
}

.features-section {
  background: var(--page);
}

.feature-card {
  border-color: var(--line);
  background: rgb(255 255 255 / 6%);
}

.feature-card:hover {
  border-color: var(--line-strong);
  background: rgb(255 255 255 / 8%);
  box-shadow: var(--shadow-sm);
}

.feature-card h3,
.journey-list h3,
.panel-header strong,
.panel-list strong,
.download-app h3,
.qr-card-head h3,
.faq-list summary,
.closing-inner h2 {
  color: var(--ink);
}

.icon-green {
  background: var(--cyan-soft);
  color: var(--cyan);
}

.icon-blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.icon-orange {
  background: var(--orange-soft);
  color: var(--orange);
}

.icon-violet {
  background: var(--violet-soft);
  color: var(--violet);
}

.icon-cyan {
  background: var(--cyan-soft);
  color: var(--cyan);
}

.icon-rose {
  background: var(--rose-soft);
  color: var(--rose);
}

.journey-section {
  border-color: var(--line);
  background: #0c0e09;
}

.journey-list article {
  border-color: var(--line);
}

.journey-list article > span {
  color: var(--brand);
}

.journey-panel {
  border-color: var(--line);
  background: rgb(255 255 255 / 5%);
  box-shadow: var(--shadow-md);
}

.panel-header {
  background: linear-gradient(135deg, rgb(255 179 140 / 18%), rgb(116 163 255 / 8%)), rgb(255 255 255 / 5%);
}

.panel-header span {
  color: var(--brand);
}

.panel-list > div {
  border-color: var(--line);
}

.panel-list small,
.download-app-copy p,
.qr-card-head p,
.download-note,
.faq-list details p {
  color: var(--ink-muted);
}

.panel-icon {
  background: var(--cyan-soft);
  color: var(--cyan);
}

.panel-icon-blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.panel-icon-orange {
  background: var(--orange-soft);
  color: var(--orange);
}

.download-section {
  background: #0d100a;
}

.download-app {
  border-color: var(--line);
  background:
    linear-gradient(180deg, rgb(255 179 140 / 5%), transparent 52%),
    rgb(255 255 255 / 6%);
  box-shadow: var(--shadow-sm);
}

.download-app-icon {
  background: linear-gradient(135deg, #ffb38c 0%, #ffd7bb 100%);
  color: #3e1a00;
  box-shadow: 0 14px 30px rgb(255 179 140 / 14%);
}

.store-button {
  border-color: var(--line);
  background: rgb(255 255 255 / 6%);
}

.store-button:hover {
  border-color: rgb(255 179 140 / 42%);
  background: rgb(255 179 140 / 10%);
}

.store-button svg {
  color: var(--brand);
}

.store-button small {
  color: var(--ink-muted);
}

.store-button strong {
  color: var(--ink);
}

.qr-card {
  border-color: var(--line);
  background:
    linear-gradient(180deg, rgb(116 163 255 / 6%), transparent 48%),
    rgb(255 255 255 / 6%);
  box-shadow: var(--shadow-sm);
}

.qr-icon {
  background: var(--cyan-soft);
  color: var(--cyan);
}

.qr-icon-blue {
  background: var(--blue-soft);
  color: var(--blue);
}

.qr-image {
  border-color: rgb(255 255 255 / 10%);
  background: #ffffff;
}

.qr-code-note {
  color: var(--ink-soft);
}

.faq-section {
  background: var(--page);
}

.faq-list {
  border-color: var(--line);
}

.faq-list details {
  border-color: var(--line);
}

.faq-list summary::after {
  border-color: var(--ink-muted);
}

.closing-section {
  background: #090a07;
}

.closing-inner .eyebrow {
  color: var(--brand);
}

.closing-inner .button-primary {
  background: linear-gradient(90deg, #ffb38c 0%, #ffd7bb 100%);
  color: #3e1a00;
}

.closing-inner .button-primary:hover {
  background: linear-gradient(90deg, #ffd0b2 0%, #ffe4cf 100%);
  color: #3e1a00;
}

.site-footer {
  border-color: var(--line);
  background: #080907;
  color: var(--ink-soft);
}

.footer-brand p,
.footer-legal small {
  color: var(--ink-muted);
}

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

.toast {
  border-color: var(--line);
  background: rgb(33 29 22 / 98%);
  color: var(--ink);
}

/* Personal center preview */
.profile-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.profile-titlebar > div:first-child {
  display: grid;
}

.profile-titlebar small {
  color: var(--ink-muted);
  font-size: 10px;
}

.profile-titlebar strong {
  font-size: 20px;
  line-height: 1.3;
}

.profile-tools {
  display: flex;
  gap: 8px;
}

.profile-tools span {
  display: grid;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgb(255 255 255 / 8%);
  place-items: center;
}

.profile-tools svg {
  width: 15px;
  height: 15px;
  stroke: var(--ink-soft);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-user {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 18px;
}

.profile-avatar {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb38c 0%, #ffd7bb 100%);
  color: #3e1a00;
  font-size: 20px;
  font-weight: 900;
  place-items: center;
}

.profile-user-copy {
  display: grid;
  min-width: 0;
  gap: 1px;
}

.profile-user-copy strong {
  font-size: 15px;
}

.profile-user-copy small {
  overflow: hidden;
  color: var(--ink-muted);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 4px;
}

.profile-badges span {
  padding: 1px 6px;
  border: 1px solid rgb(127 235 180 / 24%);
  border-radius: 4px;
  background: rgb(127 235 180 / 12%);
  color: var(--cyan);
  font-size: 8px;
  font-weight: 700;
  line-height: 16px;
}

.profile-badges span + span {
  border-color: rgb(255 255 255 / 24%);
  background: rgb(255 255 255 / 12%);
  color: var(--ink-muted);
}

.profile-stats {
  display: grid;
  margin-top: 13px;
  padding: 9px 5px;
  border-radius: 8px;
  background: rgb(255 255 255 / 8%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.profile-stats div {
  display: grid;
  justify-items: center;
  gap: 2px;
}

.profile-stats strong {
  font-size: 16px;
  line-height: 1;
}

.profile-stats span {
  color: var(--ink-muted);
  font-size: 8px;
}

.profile-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.profile-section-head-row span {
  color: var(--ink-muted);
  font-size: 8px;
  font-weight: 400;
}

.profile-asset-feature {
  display: grid;
  gap: 6px;
  margin-top: 7px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.asset-feature {
  display: flex;
  min-width: 0;
  min-height: 66px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.asset-feature > span {
  display: grid;
  gap: 2px;
}

.asset-feature small {
  color: var(--ink-muted);
  font-size: 8px;
}

.asset-feature strong {
  font-size: 18px;
  line-height: 1;
}

.asset-feature em {
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 7px;
  font-style: normal;
  font-weight: 700;
}

.asset-feature-orange {
  background: linear-gradient(180deg, rgb(255 193 139 / 20%) 0%, rgb(255 193 139 / 6%) 100%);
}

.asset-feature-orange em {
  background: linear-gradient(90deg, #ffb38c 0%, #ffd7bb 100%);
  color: #3e1a00;
}

.asset-feature-green {
  background: linear-gradient(180deg, rgb(127 235 180 / 20%) 0%, rgb(127 235 180 / 6%) 100%);
}

.asset-feature-green em {
  background: linear-gradient(90deg, #7febb4 0%, #c5ebd8 100%);
  color: #003e1e;
}

.profile-asset-mini {
  display: grid;
  gap: 5px;
  margin-top: 6px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.profile-asset-mini > div {
  display: grid;
  min-width: 0;
  min-height: 64px;
  align-content: space-between;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgb(116 163 255 / 20%) 0%, rgb(116 163 255 / 6%) 100%);
}

.profile-asset-mini small {
  overflow: hidden;
  color: var(--ink-muted);
  font-size: 6px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-asset-mini strong {
  overflow: hidden;
  font-size: 11px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-asset-mini svg {
  width: 14px;
  height: 14px;
  stroke: var(--blue);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-orders {
  display: grid;
  margin-top: 8px;
  padding: 11px 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgb(255 255 255 / 5%);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.profile-orders > div {
  display: grid;
  justify-items: center;
  gap: 6px;
}

.profile-orders svg {
  width: 22px;
  height: 22px;
  color: var(--brand);
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-orders span {
  color: var(--ink-soft);
  font-size: 7px;
}

.profile-identity {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 7px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgb(127 235 180 / 20%) 0%, rgb(127 235 180 / 6%) 100%);
}

.identity-icon {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 8px;
  place-items: center;
}

.identity-icon-green {
  background: rgb(127 235 180 / 14%);
  color: var(--cyan);
}

.identity-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-identity > span:nth-child(2) {
  display: grid;
  min-width: 0;
  flex: 1;
  gap: 2px;
}

.profile-identity strong {
  overflow: hidden;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-identity small {
  overflow: hidden;
  color: var(--ink-muted);
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.profile-identity em {
  padding: 3px 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7febb4 0%, #c5ebd8 100%);
  color: #003e1e;
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
}
