/* PC layout stylesheet. Edit this file for desktop-only layout changes. */
:root {
  --brand: #00bf6e;
  --brand-dark: #0eb790;
  --orange: #ff4d00;
  --ink: #0b1636;
  --text: #222;
  --muted: #475a89;
  --soft: #f7fafb;
  --line: rgba(11, 22, 54, 0.1);
  --footer: #181c29;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  min-width: 1180px;
  font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--text);
  background: #fff;
}

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

button {
  font-family: inherit;
}

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

.container {
  width: 1228px;
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 72px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: none;
  backdrop-filter: blur(12px);
  transition: transform 0.28s ease, box-shadow 0.2s ease;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-scrolled {
  box-shadow: none;
}

.header-inner {
  height: 72px;
  display: flex;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  margin-right: 66px;
}

.brand img {
  height: 34px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
}

.nav a,
.nav-link-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 72px;
  border: 0;
  padding: 0;
  background: transparent;
  font-size: 15px;
  color: #444;
  cursor: pointer;
  white-space: nowrap;
}

.nav a::before,
.nav-link-button::before {
  content: "";
  position: absolute;
  inset: 0 -14px;
}

.nav a.active,
.nav a:hover,
.nav-link-button:hover {
  color: var(--brand);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta,
.primary-button,
.secondary-button {
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  appearance: none;
  font-family: inherit;
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  transform-origin: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.header-cta {
  width: 118px;
  height: 40px;
  color: #fff;
  background: var(--brand);
  box-shadow: none;
}

.header-cta-outline {
  border: 1px solid var(--brand);
  color: var(--brand);
  background: #fff;
}

.header-cta:hover,
.header-cta:focus-visible,
.primary-button:hover,
.primary-button:focus-visible,
.secondary-button:hover,
.secondary-button:focus-visible {
  transform: scale(1.05);
  outline: none;
}

.menu-toggle {
  display: none;
}

.hero {
  margin-top: 72px;
  background: #f6faf8;
}

.banner-swiper {
  position: relative;
  height: 500px;
  overflow: hidden;
  user-select: none;
  touch-action: pan-y;
}

.banner-wrapper {
  position: relative;
  height: 100%;
}

.banner-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background:
    radial-gradient(circle at 78% 46%, rgba(0, 191, 110, 0.18), transparent 32%),
    linear-gradient(90deg, #effaf4 0%, #f8fffb 58%, #e8f8f0 100%);
  opacity: 0;
  transition: opacity 0.6s ease;
  cursor: pointer;
}

.banner-slide::before {
  content: none;
}

.banner-slide--invite {
  background:
    radial-gradient(circle at 78% 46%, rgba(255, 177, 61, 0.16), transparent 30%),
    linear-gradient(90deg, #edf9f2 0%, #f7fffa 56%, #dff7ea 100%);
}

.banner-slide--invite .banner-copy h1 {
  color: #fff;
}

.banner-slide--invite .banner-copy p {
  color: rgba(255, 255, 255, 0.8);
}

.banner-slide--invite .primary-button {
  color: var(--brand);
  background: #fff;
  box-shadow: none;
}

.banner-swiper.is-dragging .banner-slide {
  cursor: grabbing;
}

.banner-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.banner-slide-inner {
  position: static;
  width: 1228px;
  min-width: 1228px;
  height: 500px;
  min-height: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex: none;
}

.banner-copy {
  position: relative;
  z-index: 2;
  width: 800px;
  padding-top: 6px;
}

.banner-copy h1 {
  margin: 0 0 24px;
  color: #fff;
  font-size: 46px;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: 0;
}

.banner-copy p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.55;
  font-weight: 400;
}

.banner-copy .primary-button {
  margin-top: 34px;
  color: var(--brand);
  background: #fff;
}

.banner-media,
.hero-banner-media {
  margin: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 500px;
  transform: none;
  pointer-events: none;
  overflow: hidden;
}

.banner-media img,
.banner-media picture,
.hero-banner-media picture,
.hero-banner-media img {
  position: absolute;
  left: 50%;
  top: 0;
  width: max(100%, 1228px);
  min-width: 1228px;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: translateX(-50%);
}

.primary-button {
  min-width: 154px;
  height: 48px;
  padding: 0 28px;
  color: #fff;
  background: var(--brand);
  box-shadow: 0 12px 28px rgba(0, 191, 110, 0.24);
}

.banner-pagination {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 19px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.banner-pagination button {
  width: 20px;
  height: 5px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  opacity: 0.7;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.16s ease, width 0.16s ease;
}

.banner-pagination button.is-active {
  width: 40px;
  opacity: 1;
}

.section-tabs {
  position: sticky;
  top: 0;
  z-index: 25;
  width: 100%;
  height: 60px;
  background: #fff;
  border-bottom: 1px solid #e9ebf0;
  transition: top 0.28s ease;
}

.section-tabs-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}

.section-tabs a {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  color: #444;
  font-size: 16px;
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.2s ease, font-weight 0.2s ease;
}

.section-tabs a:hover,
.section-tabs a.active {
  color: #000;
  font-weight: 600;
}

.section-tabs a.active::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 64px;
  height: 3px;
  border-radius: 4px;
  background: var(--brand);
  transform: translateX(-50%);
}

.section {
  padding: 100px 0;
  scroll-margin-top: 142px;
}

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

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

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

.intro-section {
  background: #fff;
}

.project-section {
  padding: 82px 0 148px;
}

.split-layout,
.auth-layout {
  display: grid;
  align-items: center;
}

.split-layout {
  grid-template-columns: 1fr 624px;
  gap: 0;
}

.auth-layout {
  grid-template-columns: 590px 1fr;
  gap: 64px;
}

.section-heading h2,
.section-title h2 {
  position: relative;
  z-index: 0;
  display: inline-block;
  margin: 0;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 54px;
}

.project-section .section-title {
  margin-bottom: 60px;
}

.project-section .section-title h2 {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 700;
}

.section-title p {
  margin: 18px 0 0;
  color: #666;
  font-size: 16px;
}

.project-section .section-title p {
  margin-top: 20px;
  color: #555;
  font-size: 16px;
  line-height: 1.5;
}

.rich-text {
  margin-top: 30px;
}

.rich-text p {
  margin: 0 0 14px;
  color: #444;
  font-size: 16px;
  line-height: 2;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.intro-stats a {
  height: 106px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(11, 22, 54, 0.06);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.intro-stats a:hover,
.intro-stats a:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(0, 191, 110, 0.32);
  background: #fbfffd;
  outline: none;
}

.intro-stats strong {
  color: var(--brand);
  font-size: 34px;
  line-height: 1;
  font-weight: 700;
  font-family: Arial, sans-serif;
}

.intro-stats span {
  margin-top: 12px;
  color: #4c566a;
  font-size: 14px;
}

.team-section {
  padding: 100px 0;
}

.section-kicker {
  min-width: 68px;
  height: 30px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--brand);
  background: rgba(0, 191, 110, 0.1);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
}

.team-overview {
  width: 860px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 34px;
  text-align: center;
}

.team-lead {
  margin: 18px 0 0;
  color: #31415f;
  font-size: 18px;
  line-height: 1.9;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  min-height: 280px;
  padding: 24px;
  border: 0;
  border-radius: 24px;
  background: #fff;
  transition: transform 0.22s ease, background 0.22s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  background: #fff;
}

.team-card-image {
  width: 100%;
  height: 190px;
  border-radius: 18px;
  object-fit: cover;
  object-position: center;
}

.team-card-copy {
  margin-top: 20px;
}

.team-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.35;
  text-align: center;
  font-weight: 700;
}

.team-card p {
  margin: 14px 0 0;
  color: #4c566a;
  font-size: 15px;
  line-height: 1.8;
}

.news-section {
  padding: 100px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-column {
  min-height: 430px;
  padding: 30px;
  border: 0;
  border-radius: 24px;
  background: #fff;
  transition: transform 0.22s ease, background 0.22s ease;
}

.news-column:hover {
  transform: translateY(-6px);
  background: #fff;
}

.news-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px dashed rgba(11, 22, 54, 0.12);
}

.news-head-icon {
  width: 52px;
  height: 54px;
  flex: 0 0 52px;
  object-fit: contain;
}

.news-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
}

.news-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.news-list li {
  position: relative;
  padding-left: 16px;
}

.news-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand);
}

.news-list li + li {
  margin-top: 16px;
}

.news-list a {
  display: block;
  color: #31415f;
  font-size: 15px;
  line-height: 1.75;
  transition: color 0.2s ease;
}

.news-list a:hover,
.news-list a:focus-visible {
  color: var(--brand);
  outline: none;
}

.news-more {
  height: 42px;
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--brand);
  background: rgba(0, 191, 110, 0.1);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.24s ease, background-color 0.24s ease, transform 0.24s ease;
}

.news-more:hover,
.news-more:focus-visible {
  color: #fff;
  background: var(--brand);
  transform: scale(1.03);
  outline: none;
}

.visual-card {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: transparent;
  box-shadow: none;
}

.visual-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.help-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 46%, rgba(0, 191, 110, 0.18), transparent 32%),
    linear-gradient(90deg, #effaf4 0%, #f8fffb 58%, #e8f8f0 100%);
}

.help-hero::before {
  content: none;
}

.help-hero-inner {
  position: static;
  width: 1228px;
  min-width: 1228px;
  height: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex: none;
}

.help-hero-copy {
  position: relative;
  z-index: 2;
  width: 520px;
}

.help-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-size: 46px;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: 0;
}

.help-hero-copy p {
  margin: 24px 0 36px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 22px;
  line-height: 1.6;
  font-weight: 400;
}

.help-hero-copy .primary-button {
  color: var(--brand);
  background: #fff;
  box-shadow: none;
}

.help-section {
  background: #fff;
}

.help-register-section {
  background: var(--soft);
}

.help-orders-section {
  background: #fff;
}

.help-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.help-step-card {
  position: relative;
  min-height: 230px;
  padding: 34px 32px;
  border: 1px solid rgba(11, 22, 54, 0.07);
  border-radius: 18px;
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.help-step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 191, 110, 0.26);
  background: #fbfffd;
}

.help-step-card.is-feature {
  background: linear-gradient(180deg, #ffffff 0%, #f0fbf5 100%);
}

.step-index,
.order-step-num {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  font-family: Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.help-step-card h3,
.order-step h3 {
  margin: 22px 0 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
}

.help-step-card p,
.order-step p {
  margin: 16px 0 0;
  color: #4b5568;
  font-size: 16px;
  line-height: 1.8;
}

.help-step-card .primary-button {
  margin-top: 26px;
  min-width: 168px;
  border: 0;
  box-shadow: none;
  appearance: none;
  font-size: 14px;
  line-height: 1;
}

.help-step-card .primary-button:focus,
.help-step-card .primary-button:focus-visible {
  outline: none;
  box-shadow: none;
}

.order-flow {
  position: relative;
  display: grid;
  gap: 22px;
}

.order-step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 22px;
  padding: 30px 34px;
  border: 1px solid rgba(11, 22, 54, 0.07);
  border-radius: 18px;
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.order-step:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 191, 110, 0.25);
}

.order-step.is-static-project-types:hover {
  transform: none;
  border-color: rgba(11, 22, 54, 0.07);
}

.order-step h3 {
  margin-top: 0;
}

.step-note {
  padding: 12px 16px;
  border-radius: 10px;
  color: #a34c00 !important;
  background: #fff6e2;
}

.project-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.project-type-card {
  min-height: 86px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 20px;
  border-radius: 14px;
  color: var(--ink);
  background: #f5fbf8;
  cursor: default;
  transition: none;
}

.project-type-grid strong {
  color: var(--brand);
  font-size: 18px;
  font-weight: 600;
}

.project-type-grid span {
  margin-top: 8px;
  color: #4b5568;
  font-size: 14px;
}

.channel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.channel-tags span {
  height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--brand);
  background: rgba(0, 191, 110, 0.1);
  font-size: 15px;
  font-weight: 600;
}

.project-page-hero .help-hero-copy {
  width: 660px;
}

.project-page-hero .help-hero-copy h1 {
  font-size: 46px;
}

.project-page-hero .help-hero-copy p {
  width: 570px;
  margin-bottom: 18px;
}

.project-hero-tags {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
}

.project-hero-tags span {
  height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.18);
  font-size: 15px;
  font-weight: 600;
}

.promo-project-section {
  background: #f7fafb;
}

.promo-project-section .section-title p {
  width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.promo-project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.promo-project-card {
  position: relative;
  height: 266px;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.promo-project-card:hover,
.promo-project-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(10, 35, 60, 0.08);
  outline: none;
}

.promo-project-tag {
  position: absolute;
  top: -6px;
  right: 0;
  padding: 5px 10px;
  border-radius: 13px 13px 0 13px;
  color: #831717;
  background: linear-gradient(102deg, #fff1c2 0%, #ffd68b 49%, #fff1c2 100%);
  font-size: 12px;
  line-height: 1.2;
  backdrop-filter: blur(2px);
}

.promo-project-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.promo-project-logo {
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 10px;
  color: var(--brand-dark);
  background: transparent;
  border: 0;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0;
}

img.promo-project-logo {
  width: 50px;
  height: 50px;
  display: block;
  max-width: none;
  flex: 0 0 50px;
  object-fit: contain;
  padding: 0;
}

.promo-project-top h3 {
  height: 50px;
  margin: 0;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
  overflow: hidden;
}

.promo-project-divider {
  height: 0;
  margin: 24px 0;
  border-top: 1px dashed rgba(11, 22, 54, 0.1);
}

.promo-project-data {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  gap: 24px;
}

.promo-project-data div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
  text-align: center;
}

.promo-project-data strong {
  width: 100%;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.promo-project-data div:first-child strong {
  color: var(--orange);
}

.promo-project-data span {
  color: var(--muted);
  font-size: 13px;
}

.promo-project-data i {
  width: 1px;
  height: 30px;
  background: rgba(11, 22, 54, 0.1);
}

.promo-project-button {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--brand);
  background: rgba(0, 191, 110, 0.1);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transform-origin: center;
  transition: color 0.24s ease, background-color 0.24s ease, transform 0.24s ease;
}

.promo-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

.promo-more-button {
  min-width: 180px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: var(--brand);
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  transform-origin: center;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.promo-more-button:hover,
.promo-more-button:focus-visible {
  transform: scale(1.05);
  outline: none;
}

.promo-project-card:hover .promo-project-button,
.promo-project-card:focus-visible .promo-project-button {
  color: #fff;
  background: var(--brand);
  transform: scale(1.05);
}

.team-build-hero .help-hero-copy {
  width: 650px;
}

.team-build-hero .help-hero-copy h1 {
  font-size: 46px;
}

.h5-title-break {
  display: none;
}

.team-build-hero .help-hero-copy p {
  margin: 16px 0 0;
}

.team-build-hero .help-hero-copy .primary-button {
  margin-top: 34px;
}

.team-build-page main {
  background: var(--soft);
}

.team-build-page .section-tabs {
  background: var(--soft);
}

.team-build-section {
  padding-bottom: 0;
  background: var(--soft);
}

.team-build-page #teamManage {
  padding-bottom: 100px;
}

.team-build-section-soft {
  background: var(--soft);
}

.team-build-layout {
  display: grid;
  gap: 24px;
}

.team-guide-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  padding: 42px;
  border: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: none;
}

.team-guide-card.is-feature {
  background: #fff;
}

.team-guide-media {
  width: 200px;
  display: block;
  overflow: visible;
  align-self: center;
}

.team-guide-media img {
  width: 200px;
  height: auto;
  display: block;
}

.team-guide-content h2 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1.25;
  font-weight: 700;
}

.team-guide-content p {
  margin: 18px 0 0;
  color: #4b5568;
  font-size: 16px;
  line-height: 1.9;
}

.team-reward-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.team-reward-grid div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 20px;
  border-radius: 18px;
  background: #f6faf8;
  text-align: center;
}

.team-reward-grid strong {
  color: var(--brand);
  font-family: Arial, sans-serif;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

.team-reward-grid span {
  margin-top: 10px;
  color: #4b5568;
  font-size: 14px;
  line-height: 1.5;
}

.team-invite-button {
  width: 168px;
  height: 48px;
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: var(--brand);
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.team-invite-button:hover,
.team-invite-button:focus-visible {
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 14px 28px rgba(0, 191, 110, 0.24);
  outline: none;
}

.team-link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.team-link-list li {
  min-width: 0;
}

.team-platform-card {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--ink);
  background: #f6faf8;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
  cursor: default;
}

.team-platform-note {
  margin-top: 12px;
  color: #6a7488;
  font-size: 14px;
  line-height: 1.7;
}

.team-doc-link {
  color: #fff;
  font-weight: 700;
}

.team-doc-link:hover,
.team-doc-link:focus-visible {
  color: #fff;
  background: var(--brand-dark);
  outline: none;
}

.team-doc-link {
  margin-top: 24px;
  width: 220px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 12px;
  background: var(--brand);
  font-size: 16px;
  line-height: 1;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.team-doc-link:hover,
.team-doc-link:focus-visible {
  transform: translateY(-2px);
}

.faq-section {
  background: #fff;
}

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

.faq-category-head {
  margin-bottom: 34px;
}

.faq-category-head span {
  display: none;
  align-items: center;
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--brand);
  background: rgba(0, 191, 110, 0.1);
  font-size: 13px;
  font-weight: 700;
}

.faq-category-head h2 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.25;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  border: 1px solid rgba(11, 22, 54, 0.08);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover,
.faq-item:focus-within {
  border-color: #00bf6e;
}

.faq-item[open] {
  border-color: #00bf6e;
}

.faq-item summary {
  position: relative;
  padding: 24px 72px 24px 28px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 50%;
  width: 32px;
  height: 32px;
  display: block;
  border-radius: 50%;
  background: url("../images/faq-toggle-plus.svg") center / 32px 32px no-repeat;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  background-image: url("../images/faq-toggle-minus.svg");
}

.faq-answer {
  display: block;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  overflow: hidden;
  will-change: max-height, opacity, transform;
  transition:
    max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease-out,
    transform 0.28s ease-out;
}

.faq-item[open] .faq-answer {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0 28px 26px;
  color: #4b5568;
  font-size: 15px;
  line-height: 1.9;
}

.faq-answer p {
  margin: 10px 0 0;
}

.faq-answer strong {
  color: var(--ink);
}

.help-hero .hero-banner-media {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  transform: none;
}

.appdown-page {
  position: relative;
  min-height: calc(100vh - 261px);
  margin-top: 72px;
  overflow: hidden;
  background: #f7fafb;
}

.appdown-layout {
  position: relative;
  z-index: 1;
  min-height: 710px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 480px;
  align-items: center;
  gap: 0;
  padding: 0;
}

.appdown-copy {
  position: relative;
  z-index: 2;
}

.appdown-invite {
  margin: 0 0 18px;
  color: var(--brand);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
}

.appdown-invite strong {
  font-family: Arial, sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
}

.appdown-copy h1 {
  max-width: 760px;
  margin: 0;
  color: #030a24;
  font-size: 46px;
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: 0;
}

.appdown-desc {
  margin: 22px 0 0;
  color: #181c29;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 600;
}

.appdown-feature-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 32px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  color: #181c29;
  font-size: 16px;
}

.appdown-feature-list li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.appdown-feature-list img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.appdown-qrcodes {
  display: flex;
  gap: 24px;
  margin-top: 96px;
}

.appdown-qr-card {
  width: 190px;
  height: 216px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  color: #626570;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 98, 75, 0.05);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
  cursor: default;
  transition: none;
}

.appdown-qr-card img {
  width: 150px;
  height: 150px;
  margin-bottom: 8px;
  object-fit: contain;
}

.appdown-phone {
  position: relative;
  z-index: 2;
  margin: 0;
  align-self: end;
}

.appdown-phone img {
  width: 480px;
  height: auto;
  display: block;
}

.mobile-app-download {
  display: none;
}

.auth-visual {
  margin: 0;
}

.auth-visual img {
  width: 520px;
  margin-left: auto;
}

.brand-count {
  margin-top: 72px;
  color: #222;
  font-size: 24px;
  font-weight: 700;
}

.brand-marquee {
  margin-top: 24px;
  overflow: hidden;
}

.brand-row {
  display: flex;
  width: max-content;
  gap: 18px;
  margin: 18px 0;
  animation: marqueeLeft 32s linear infinite;
}

.brand-row img {
  height: 62px;
  width: auto;
  flex: 0 0 auto;
}

.brand-row-right {
  animation-name: marqueeRight;
  animation-duration: 40s;
}

.brand-row.slow {
  animation-duration: 46s;
}

@keyframes marqueeLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marqueeRight {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px 28px;
}

.project-section .project-card {
  grid-column: span 2;
}

.project-section .project-card:nth-child(-n+2) {
  grid-column: span 3;
}

.project-card {
  position: relative;
  height: 300px;
  padding: 32px;
  border-radius: 24px;
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(10, 35, 60, 0.08);
}

.project-tag {
  position: absolute;
  top: -6px;
  right: 0;
  padding: 5px 10px;
  border-radius: 13px 13px 0 13px;
  color: #831717;
  font-size: 12px;
  background: linear-gradient(102deg, #fff1c2 0%, #ffd68b 49%, #fff1c2 100%);
  backdrop-filter: blur(2px);
}

.project-head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.project-head img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: contain;
  background: #fff;
}

.project-head h3 {
  margin: 0;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.35;
  font-weight: 700;
}

.project-title {
  flex: 1;
  min-width: 0;
}

.project-title .project-desc {
  margin: 8px 0 0;
  color: #24416f;
  font-size: 14px;
  line-height: 1.55;
}

.project-divider {
  height: 0;
  margin: 24px 0;
  border-top: 1px dashed rgba(11, 22, 54, 0.1);
}

.project-data {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
  gap: 24px;
}

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

.project-data div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
  text-align: center;
}

.project-data strong {
  width: 100%;
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.project-data div:first-child strong {
  color: var(--orange);
}

.project-data span {
  color: var(--muted);
  font-size: 14px;
}

.project-data i {
  width: 1px;
  height: 30px;
  background: rgba(11, 22, 54, 0.1);
}

.project-data-single div {
  min-height: 54px;
  justify-content: center;
}

.project-fee {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-fee span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 10px;
  color: var(--orange);
  background: rgba(255, 77, 0, 0.08);
  font-size: 16px;
  line-height: 1.2;
  font-weight: 700;
  white-space: nowrap;
}

.project-fee span:nth-child(2) {
  color: var(--brand-dark);
  background: rgba(0, 191, 110, 0.1);
}

.project-desc {
  color: #24416f;
  font-size: 14px;
  line-height: 1.6;
}

.project-card>a {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--brand);
  background: rgba(0, 191, 110, 0.1);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transform-origin: center;
  transition: color 0.24s ease, background-color 0.24s ease, transform 0.24s ease;
}

.project-card>a:hover,
.project-card>a:focus-visible {
  color: #fff;
  background: var(--brand);
  transform: scale(1.05);
  outline: none;
}

.center-action {
  margin-top: 42px;
  text-align: center;
}

.secondary-button {
  min-width: 164px;
  height: 44px;
  color: var(--brand);
  background: rgba(0, 191, 110, 0.1);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-grid article {
  min-height: 190px;
  padding: 30px;
  border-radius: 24px;
  background: #f7fafb;
  transition: transform 0.2s ease, background 0.2s ease;
}

.review-grid article:hover {
  transform: translateY(-6px);
  background: #eef8f4;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #fff;
  background: linear-gradient(135deg, #00bf6e, #39d99a);
  font-size: 18px;
  font-weight: 700;
}

.review-grid article:nth-child(2n) .review-avatar {
  background: linear-gradient(135deg, #ff8a00, #ffd68b);
}

.review-grid article:nth-child(3n) .review-avatar {
  background: linear-gradient(135deg, #2f7dff, #7db0ff);
}

.review-grid strong {
  color: var(--ink);
  font-size: 18px;
}

.review-grid p {
  margin: 14px 0 0;
  color: #555;
  font-size: 15px;
  line-height: 1.8;
}

.bottom-cta {
  position: relative;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(105deg, #02bd70 0%, #00bf6e 52%, #12ce82 100%);
}

.bottom-cta-card {
  position: relative;
  overflow: hidden;
}

.bottom-cta-inner {
  position: relative;
  z-index: 1;
  min-height: 184px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px 220px;
  align-items: center;
  gap: 70px;
  padding: 30px 0;
}

.bottom-cta-main,
.invite-ticket,
.bottom-action {
  position: relative;
  z-index: 1;
}

.bottom-metrics {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  align-items: center;
  gap: 20px;
  margin-top: 18px;
}

.bottom-metric {
  position: relative;
  display: grid;
  grid-template-columns: 42px max-content;
  grid-template-rows: 18px 30px;
  column-gap: 10px;
  align-items: center;
  padding-right: 20px;
}

.bottom-metric:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 5px;
  width: 1px;
  height: 42px;
  background: rgba(255, 255, 255, 0.34);
}

.bottom-metric img {
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.bottom-metric span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
}

.bottom-metric strong {
  color: #fff;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
}

.bottom-metric:nth-child(3) strong {
  font-size: 21px;
}

.bottom-cta-main h2 {
  margin: 0;
  color: #fff;
  font-size: 29px;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
}

.invite-ticket {
  height: 116px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #057d50;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 246, 215, 0.95));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.invite-ticket::before,
.invite-ticket::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 18px;
  height: 30px;
  background: var(--brand);
  transform: translateY(-50%);
}

.invite-ticket::before {
  left: -1px;
  border-radius: 0 18px 18px 0;
}

.invite-ticket::after {
  right: -1px;
  border-radius: 18px 0 0 18px;
}

.invite-ticket span {
  color: var(--ink);
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
}

.invite-ticket strong {
  position: relative;
  margin-top: 12px;
  color: var(--brand);
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 5px;
}

.invite-ticket strong::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 14px;
  bottom: -10px;
  height: 8px;
  background: #ffd100;
  clip-path: polygon(0 70%, 55% 25%, 100% 55%, 99% 78%, 48% 55%, 2% 95%);
}

.bottom-action {
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  justify-self: end;
}

.bottom-action a {
  width: 220px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 12px;
  color: var(--brand);
  background: #fff;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
  cursor: pointer;
  transform-origin: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.bottom-action a:hover,
.bottom-action a:focus-visible {
  transform: scale(1.05);
  outline: none;
}

.bottom-action a i {
  width: 10px;
  height: 12px;
  position: relative;
  flex: 0 0 10px;
  background: none;
}

.bottom-action a i::before {
  content: "";
  position: absolute;
  left: 1px;
  top: 2px;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--brand);
  border-right: 2px solid var(--brand);
  transform: rotate(45deg);
}

.site-footer {
  background: var(--footer);
  color: #fff;
}

.footer-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.benefit-item img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.benefit-item strong,
.benefit-item span {
  display: block;
}

.benefit-item strong {
  font-size: 16px;
  line-height: 20px;
}

.benefit-item span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.footer-extra {
  min-height: 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-extra-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 24px;
}

.footer-extra-copy p + p {
  margin-top: 4px;
}

.footer-extra-copy strong {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: Arial, sans-serif;
}

.footer-invite-copy {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-copy-button {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.74);
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-copy-button svg {
  width: 14px;
  height: 14px;
  display: block;
}

.footer-copy-button:hover,
.footer-copy-button:focus-visible,
.footer-copy-button.is-copied {
  color: #fff;
  transform: scale(1.08);
  outline: none;
}

.footer-site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 24px;
}

.footer-site-nav span {
  color: #fff;
  font-weight: 700;
}

.footer-site-nav a {
  color: rgba(255, 255, 255, 0.74);
  transition: color 0.2s ease;
}

.footer-site-nav a:hover,
.footer-site-nav a:focus-visible {
  color: var(--brand);
  outline: none;
}

.footer-record {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  text-align: center;
}

.footer-record a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.footer-record a[href$="robots.txt"],
.footer-record a[href$="sitemap.xml"] {
  display: none;
}

.footer-record img {
  width: 18px;
  height: 18px;
}

.floating-register-guide {
  position: fixed;
  right: 32px;
  bottom: 104px;
  z-index: 160;
  display: block !important;
  width: 248px;
  padding: 18px;
  border: 1px solid rgba(0, 191, 110, 0.18);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(0, 191, 110, 0.11) 0%, rgba(255, 255, 255, 0) 58%),
    #fff;
  box-shadow: 0 16px 46px rgba(11, 22, 54, 0.16);
}

.floating-register-guide.is-hidden {
  display: none !important;
}

.floating-register-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(0, 191, 110, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  line-height: 1;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.floating-register-close svg {
  width: 16px;
  height: 16px;
  display: block;
  pointer-events: none;
}

.floating-register-close svg path {
  transition: fill 0.2s ease;
}

.floating-register-close:hover,
.floating-register-close:focus-visible {
  border-color: var(--brand);
  background: var(--brand);
  outline: none;
}

.floating-register-close:hover svg path,
.floating-register-close:focus-visible svg path {
  fill: #fff;
}

.floating-register-title {
  padding-right: 34px;
  color: var(--ink);
  font-size: 20px;
  line-height: 28px;
  font-weight: 800;
}

.floating-register-steps {
  margin-top: 14px;
}

.floating-register-step {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #3f4b63;
  font-size: 14px;
  line-height: 22px;
}

.floating-register-step span {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  font-size: 13px;
  font-weight: 700;
}

.floating-register-step p {
  margin: 0;
}

.floating-register-code {
  width: 100%;
  margin: 10px 0 14px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  color: var(--brand-dark);
  background: rgba(0, 191, 110, 0.1);
  font-size: 24px;
  line-height: 30px;
  font-weight: 800;
  letter-spacing: 0;
  font-family: Arial, sans-serif;
  text-align: center;
}

.floating-register-code span {
  display: inline-block;
}

.floating-register-copy {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0;
  border: 0;
  color: var(--brand);
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.floating-register-copy svg {
  width: 16px;
  height: 16px;
  display: block;
}

.floating-register-copy:hover,
.floating-register-copy:focus-visible,
.floating-register-copy.is-copied {
  color: var(--brand-dark);
  transform: scale(1.08);
  outline: none;
}

.floating-register-button {
  height: 44px;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(105deg, #02bd70 0%, #00bf6e 52%, #12ce82 100%);
  box-shadow: 0 12px 24px rgba(0, 191, 110, 0.24);
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-register-button:hover,
.floating-register-button:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(0, 191, 110, 0.3);
  outline: none;
}

.floating-register-tags {
  margin-top: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.floating-register-tags span {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: rgba(0, 191, 110, 0.1);
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
}

.back-top {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 20;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  color: #1e2430;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-size: 24px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.back-top:hover {
  transform: translateY(-3px);
}

.register-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: block;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.24s ease,
    visibility 0s linear 0.36s;
}

.register-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition:
    opacity 0.24s ease,
    visibility 0s linear 0s;
}

.modal-mask {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 30, 0.55);
}

.modal-panel {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: clamp(660px, 80vh, 800px);
  opacity: 0;
  transform: translate(-50%, -46%) scale(0.94);
  border-radius: 18px;
  overflow: visible;
  background: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  transition:
    opacity 0.24s ease,
    transform 0.46s cubic-bezier(0.18, 0.89, 0.32, 1.18);
}

.register-modal.is-open .modal-panel {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.modal-panel iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: inherit;
  display: block;
  background: #fff;
}

.modal-close {
  position: absolute;
  top: -10px;
  right: -34px;
  z-index: 3;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  font-size: 22px;
}

.header-cta,
.primary-button,
.secondary-button,
.project-card > a,
.promo-project-button,
.team-invite-button,
.team-doc-link,
.news-more,
.bottom-action a,
.floating-register-button,
.floating-register-close,
.floating-register-copy,
.footer-copy-button,
.modal-close,
.back-top {
  box-shadow: none;
  transform-origin: center;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.header-cta:hover,
.header-cta:focus-visible,
.primary-button:hover,
.primary-button:focus-visible,
.secondary-button:hover,
.secondary-button:focus-visible,
.project-card > a:hover,
.project-card > a:focus-visible,
.promo-project-card:hover .promo-project-button,
.promo-project-card:focus-visible .promo-project-button,
.team-invite-button:hover,
.team-invite-button:focus-visible,
.team-doc-link:hover,
.team-doc-link:focus-visible,
.news-more:hover,
.news-more:focus-visible,
.bottom-action a:hover,
.bottom-action a:focus-visible,
.floating-register-button:hover,
.floating-register-button:focus-visible,
.floating-register-close:hover,
.floating-register-close:focus-visible,
.floating-register-copy:hover,
.floating-register-copy:focus-visible,
.footer-copy-button:hover,
.footer-copy-button:focus-visible,
.modal-close:hover,
.modal-close:focus-visible,
.back-top:hover,
.back-top:focus-visible {
  box-shadow: none;
  transform: scale(1.03);
  outline: none;
}

.copy-toast {
  position: fixed;
  z-index: 180;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(11, 22, 54, 0.78);
  font-size: 12px;
  line-height: 18px;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -100%) scale(0.96);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.copy-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, -100%) scale(1);
}
