.page-home {
  position: relative;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  overflow-x: hidden;
  padding-top: calc(var(--header-h) + 1rem);
}
.page-home .container {
  width: min(var(--container-w), calc(100% - 2rem));
  margin-inline: auto;
}
.page-home img {
  max-width: 100%;
  height: auto;
}

.page-home .hero {
  position: relative;
  padding: 3rem 0 2.5rem;
}
.page-home .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(120deg, transparent 0%, transparent 42%, rgba(0, 212, 255, 0.08) 72%, rgba(155, 89, 182, 0.08) 100%);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.page-home .hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.page-home .hero-copy {
  max-width: 40rem;
}
.page-home .hero-kicker {
  margin: 0 0 1rem;
  color: var(--color-blue);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.page-home .hero-kicker::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gradient-bright);
  vertical-align: middle;
  margin-right: 0.5rem;
}
.page-home .hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 5.5vw, 3.5rem);
  line-height: 1.12;
}
.page-home .hero-title-sub {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.68em;
  color: var(--color-muted);
  letter-spacing: 0.02em;
}
.page-home .text-gradient {
  background: var(--gradient-bright);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.page-home .hero-lead {
  margin-top: 1.1rem;
  max-width: 46rem;
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.75;
}
.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}
.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  padding: 0.72rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s var(--ease-main), box-shadow 0.2s var(--ease-main);
}
.page-home .btn-primary {
  background: var(--gradient-bright);
  color: var(--color-bg);
  border: none;
}
.page-home .btn-ghost {
  background: transparent;
  color: var(--color-blue);
  border: 1px solid rgba(0, 212, 255, 0.4);
}
.page-home .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 212, 255, 0.18);
}
.page-home .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 32rem;
  margin: 1.75rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.page-home .hero-stat dt {
  color: var(--color-muted);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.page-home .hero-stat dd {
  margin: 0.2rem 0 0;
  color: var(--color-text);
  font-size: 1.35rem;
}
.page-home .hero-visual {
  position: relative;
}
.page-home .hero-figure {
  position: relative;
  overflow: hidden;
  background: var(--color-card);
  border-radius: var(--radius-lg);
  clip-path: polygon(8% 0, 100% 0, 100% 86%, 80% 100%, 0 100%, 0 12%);
}
.page-home .hero-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 212, 255, 0.16), transparent 45%, rgba(155, 89, 182, 0.2));
}
.page-home .hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home .hero-chip {
  position: absolute;
  left: 1rem;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(10, 14, 23, 0.82);
  border: 1px solid rgba(0, 212, 255, 0.3);
  backdrop-filter: blur(8px);
}
.page-home .hero-chip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.5);
  animation: homePulse 2s infinite;
}
@keyframes homePulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(255, 215, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0); }
}
.page-home .hero-chip-label {
  color: var(--color-blue);
  font-size: 0.78rem;
  white-space: nowrap;
}

.page-home .trust-strip {
  margin: 0 0.75rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.08), rgba(155, 89, 182, 0.12));
}
.page-home .trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.page-home .trust-item {
  display: grid;
  gap: 0.3rem;
  align-content: start;
}
.page-home .trust-num {
  color: var(--color-gold);
  font-size: 1.15rem;
}
.page-home .trust-label {
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.page-home .curve-section {
  position: relative;
  padding: 4.5rem 0 3rem;
}
.page-home .curve-wrap {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.page-home .curve-chart {
  position: relative;
  padding: 1.25rem;
  background: var(--color-card);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.page-home .chart-kicker {
  margin: 0 0 0.4rem;
  color: var(--color-blue);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-home .chart-title {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.2;
}
.page-home .chart-meta {
  max-width: 46rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.page-home .curve-svg {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 1.1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.06), rgba(155, 89, 182, 0.06));
}
.page-home .curve-axis line {
  stroke: rgba(245, 247, 250, 0.12);
  stroke-width: 1;
}
.page-home .curve-path {
  fill: none;
  stroke: url(#curveStroke);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 680;
  stroke-dashoffset: 0;
  animation: homeDraw 1.8s var(--ease-main) 0.2s both;
}
@keyframes homeDraw {
  from { stroke-dashoffset: 680; }
  to { stroke-dashoffset: 0; }
}
.page-home .curve-svg .dp circle {
  fill: var(--color-gold);
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.2s var(--ease-main);
}
.page-home .curve-svg .dp text {
  fill: var(--color-blue);
  font-family: var(--font-mono);
  font-size: 11px;
  pointer-events: none;
}
.page-home .curve-svg .dp:hover circle,
.page-home .curve-svg .dp:focus circle {
  transform: scale(1.6);
}
.page-home .curve-svg .dp:hover text,
.page-home .curve-svg .dp:focus text {
  fill: var(--color-gold);
  font-weight: 700;
}
.page-home .curve-metrics {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}
.page-home .data-chip {
  display: block;
  padding: 0.55rem 0.5rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.18);
  color: var(--color-blue);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-align: center;
  white-space: nowrap;
}
.page-home .curve-aside {
  display: grid;
  gap: 1rem;
  align-content: start;
}
.page-home .curve-media {
  overflow: hidden;
  border: 1px solid rgba(155, 89, 182, 0.25);
  border-radius: var(--radius-md);
}
.page-home .curve-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home .curve-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.page-home .curve-features li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--color-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.page-home .curve-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-bright);
}

.page-home .schedule-section {
  position: relative;
  padding: 3.5rem 0;
}
.page-home .schedule-wrap {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.page-home .section-kicker {
  margin: 0 0 0.6rem;
  color: var(--color-blue);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-home .schedule-head h2,
.page-home .devices-copy h2,
.page-home .steps-copy h2,
.page-home .hot-head h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  line-height: 1.2;
}
.page-home .schedule-desc {
  max-width: 30rem;
  margin: 0 0 1rem;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.page-home .link-arrow {
  color: var(--color-blue);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}
.page-home .link-arrow::after {
  content: " →";
}
.page-home .link-arrow:hover {
  color: var(--color-gold);
}
.page-home .schedule-timeline {
  position: relative;
  display: grid;
  gap: 1rem;
  padding-left: 1.1rem;
  border-left: 1px solid rgba(0, 212, 255, 0.25);
}
.page-home .sched-card {
  position: relative;
  padding: 1.15rem 1.25rem;
  background: var(--color-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
}
.page-home .sched-card::before {
  content: "";
  position: absolute;
  left: -1.15rem;
  top: 1.5rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.18);
}
.page-home .sched-time {
  color: var(--color-blue);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}
.page-home .sched-title {
  margin: 0.35rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.35;
}
.page-home .sched-desc {
  margin: 0 0 0.5rem;
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}
.page-home .sched-more {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}
.page-home .sched-more summary {
  color: var(--color-blue);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  list-style: none;
  cursor: pointer;
}
.page-home .sched-more summary::-webkit-details-marker {
  display: none;
}
.page-home .sched-more summary::before {
  content: "+ ";
}
.page-home .sched-more[open] summary::before {
  content: "– ";
}
.page-home .sched-more p {
  margin: 0.5rem 0 0;
  color: var(--color-muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.page-home .devices-section {
  position: relative;
  padding: 3rem 0;
  background: linear-gradient(180deg, transparent, rgba(155, 89, 182, 0.05), transparent);
}
.page-home .devices-wrap {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}
.page-home .devices-desc {
  max-width: 38rem;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.page-home .devices-tagtitle {
  margin: 1rem 0 0.5rem;
  color: var(--color-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
.page-home .device-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0;
}
.page-home .device-tag {
  padding: 0.4rem 0.85rem;
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: var(--radius-pill);
  color: var(--color-blue);
  font-size: 0.8rem;
  background: rgba(0, 212, 255, 0.07);
}
.page-home .devices-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.page-home .devices-visual {
  position: relative;
}
.page-home .devices-visual::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12), transparent 70%);
}
.page-home .devices-visual img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

.page-home .steps-section {
  position: relative;
  padding: 3rem 0;
}
.page-home .steps-wrap {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  align-items: center;
}
.page-home .steps-desc {
  max-width: 38rem;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.page-home .step-list {
  list-style: none;
  display: grid;
  gap: 1.25rem;
  margin: 1.25rem 0;
  padding: 0;
}
.page-home .step-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.page-home .step-num {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: var(--radius-pill);
  background: var(--gradient-bright);
  color: var(--color-bg);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}
.page-home .step-body h3 {
  margin: 0.1rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.4;
}
.page-home .step-body p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}
.page-home .steps-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  clip-path: polygon(12% 0, 100% 0, 100% 78%, 88% 100%, 0 100%, 0 20%);
}

.page-home .hot-section {
  position: relative;
  padding: 3.5rem 0 2.5rem;
}
.page-home .hot-head {
  max-width: 46rem;
  margin-bottom: 1.5rem;
}
.page-home .hot-desc {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.page-home .page-tablist {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.page-home .page-tablist .tab {
  position: relative;
  padding: 0.8rem 1.2rem;
  background: transparent;
  border: 0;
  color: var(--color-muted);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}
.page-home .page-tablist .tab[aria-selected="true"] {
  color: var(--color-text);
}
.page-home .page-tablist .tab[aria-selected="true"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--gradient-bright);
}
.page-home .hot-list {
  list-style: none;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
}
.page-home .hot-card {
  position: relative;
  padding: 1.25rem 1.25rem 1.1rem;
  background: var(--color-card);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  transition: border-color 0.2s var(--ease-main), transform 0.2s var(--ease-main);
}
.page-home .hot-card:hover {
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateY(-3px);
}
.page-home .hot-card h3 {
  margin: 0.65rem 0 0.4rem;
  font-size: 1rem;
  line-height: 1.4;
}
.page-home .hot-card p {
  margin: 0 0 0.75rem;
  color: var(--color-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}
.page-home .tag {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.page-home .tag--blue {
  color: var(--color-blue);
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.3);
}
.page-home .tag--purple {
  color: var(--color-purple);
  background: rgba(155, 89, 182, 0.14);
  border: 1px solid rgba(155, 89, 182, 0.35);
}
.page-home .tag--gold {
  color: var(--color-gold);
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid rgba(255, 215, 0, 0.32);
}

.page-home a:focus-visible,
.page-home button:focus-visible,
.page-home summary:focus-visible,
.page-home .dp:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .page-home .curve-path {
    animation: none;
    stroke-dasharray: none;
  }
  .page-home .hero-chip-dot {
    animation: none;
  }
  .page-home .btn,
  .page-home .hot-card {
    transition: none;
  }
}

@media (min-width: 640px) {
  .page-home .trust-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .page-home .curve-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .page-home .hero {
    padding: 5rem 0 3.5rem;
  }
  .page-home .hero-inner {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 3rem;
    align-items: center;
  }
  .page-home .trust-strip {
    margin: 0;
    padding: 1.15rem 1.25rem;
  }
  .page-home .curve-wrap {
    grid-template-columns: minmax(0, 1.6fr) minmax(280px, 0.7fr);
    gap: 2rem;
    align-items: start;
  }
  .page-home .curve-chart {
    padding: 1.75rem;
  }
  .page-home .schedule-wrap {
    grid-template-columns: minmax(240px, 320px) 1fr;
    gap: 3rem;
  }
  .page-home .schedule-head {
    position: sticky;
    top: calc(var(--header-h) + 1.5rem);
    align-self: start;
  }
  .page-home .devices-wrap {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
    gap: 3rem;
  }
  .page-home .steps-wrap {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr);
    gap: 3rem;
  }
  .page-home .hot-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
