/* ===== Base ===== */
:root{
  /* Brand */
  --brand: #c3002f;
  --ink: #0f172a;          /* 主要文字 */
  --muted: #525a66;        /* 次要文字 */
  --bg: #ffffff;

  /* Radius */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 22px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 6px 18px rgba(0,0,0,0.06);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);

  /* Type */
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 800;

  --ls-tight: -0.02em;
  --ls-normal: 0.01em;

  --lh-tight: 1.15;
  --lh-normal: 1.55;

  /* Spacing */
  --container: 1200px;
}

body{
  color: var(--ink);
  background: var(--bg);
  letter-spacing: var(--ls-normal);
}

p{
  color: var(--muted);
  line-height: var(--lh-normal);
}


* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Arial, Helvetica, sans-serif;
  color: #111;
  background: #fff;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 10;
}

.nav-bar {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.brand-mark {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 10px;
  background: #e60023;
  color: #fff;
  font-size: 14px;
}

.brand-name {
  font-size: 18px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-weight: 600;
  color: #222;
}

.nav-links a {
  padding: 10px 8px;
  border-radius: 10px;
}

.nav-links a:hover {
  background: #f3f3f3;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}

.link {
  font-weight: 600;
  color: #222;
}

.icon-btn,
.lang-btn {
  border: 1px solid #ddd;
  background: #fff;
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
}

.icon-btn:hover,
.lang-btn:hover {
  background: #f6f6f6;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.btn.primary {
  background: #e60023;
  color: #fff;
}

.btn.primary:hover { opacity: 0.92; }

.btn.ghost {
  border: 1px solid #ddd;
  background: #fff;
}

.btn.ghost:hover { background: #f6f6f6; }

/* ===== Hero ===== */
.hero {
  background: #f5f5f5;
  padding: 56px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 36px;
  align-items: center;
}

.hero-content h1 {
  font-size: 46px;
  line-height: 1.12;
  margin: 0 0 14px;
  letter-spacing: -0.6px;
}

.hero-content p {
  margin: 0 0 22px;
  font-size: 18px;
  color: #444;
}

.hero-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Placeholder for image */
.image-placeholder {
  width: 100%;
  height: 280px;
  border-radius: 18px;
  background: #e9e9e9;
  display: grid;
  place-items: center;
  color: #888;
}

/* ===== Content ===== */
.content {
  padding: 56px 0;
}

.content h2 {
  margin: 0 0 10px;
  font-size: 32px;
}

.content p {
  margin: 0;
  color: #444;
}

/* ===== Simple responsive ===== */
@media (max-width: 900px) {
  .nav-links { display: none; } /* 先隐藏，后面做汉堡菜单 */
  .hero-grid { grid-template-columns: 1fr; }
  .image-placeholder { height: 220px; }
}
:root{
  --bg: #ffffff;
  --text: #0b1220;
  --muted: #5b6576;
  --border: rgba(11,18,32,0.12);
  --card: #ffffff;
  --soft: #f5f7fb;
  --primary: #1a4fb3; /* 你可以后面再调更像PC */
  --primary-2: #0e2f6d;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(11,18,32,0.08);
  --max: 1120px;
}

*{ box-sizing: border-box; }
body{
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }

.container{
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section{
  padding: 72px 0;
}

.section-head{
  max-width: 720px;
  margin-bottom: 28px;
}
.section-head h2{
  margin: 0 0 10px;
  font-size: 34px;
  letter-spacing: -0.02em;
}
.section-head p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.grid{
  display: grid;
  gap: 18px;
}

.cards{
  grid-template-columns: repeat(3, 1fr);
}

.card{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.card-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.card h3{
  margin: 0;
  font-size: 20px;
}
.card p{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.6;
}
.badge{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(26,79,179,0.10);
  color: var(--primary);
  border: 1px solid rgba(26,79,179,0.18);
}

.list{
  margin: 0 0 18px;
  padding-left: 18px;
  color: var(--text);
}
.list li{
  margin: 8px 0;
  color: var(--muted);
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary{
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover{ background: var(--primary-2); }
.btn-secondary{
  background: #fff;
  border-color: var(--border);
}
.btn-secondary:hover{
  border-color: rgba(11,18,32,0.22);
}

.trust{
  background: var(--soft);
}
.trust-inner{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: start;
}
.trust-copy h2{
  margin: 0 0 10px;
  font-size: 34px;
  letter-spacing: -0.02em;
}
.trust-copy p{
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}
.trust-points{
  display: grid;
  gap: 14px;
}
.trust-point{
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}
.trust-point strong{
  display: block;
  margin-bottom: 4px;
}
.trust-point span{
  color: var(--muted);
  line-height: 1.5;
}
.trust-logos{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.logo-tile{
  height: 64px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--muted);
}

.stats-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stat{
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
}
.stat-num{
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.stat-label{
  margin-top: 6px;
  color: var(--muted);
}

.split{
  background: #fff;
}
.split-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.split-card{
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
}
.split-card-alt{
  background: var(--soft);
}
.split-card h2{
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.02em;
}
.split-card p{
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
}
.link{
  color: var(--primary);
  font-weight: 700;
}
.link:hover{ text-decoration: underline; }

.footer{
  border-top: 1px solid var(--border);
  padding: 44px 0 18px;
  background: #fff;
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
}
.footer-logo{
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: 18px;
}
.footer-note{
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}
.footer h4{
  margin: 0 0 10px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.footer ul{
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer li{ margin: 10px 0; }
.footer a{ color: var(--text); }
.footer a:hover{ text-decoration: underline; }

.footer-bottom{
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

/* Responsive */
@media (max-width: 980px){
  .cards{ grid-template-columns: 1fr; }
  .trust-inner{ grid-template-columns: 1fr; }
  .stats-grid{ grid-template-columns: 1fr 1fr; }
  .split-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px){
  .section{ padding: 54px 0; }
  .section-head h2{ font-size: 28px; }
  .trust-copy h2{ font-size: 28px; }
  .stats-grid{ grid-template-columns: 1fr; }
  .container{ width: min(var(--max), calc(100% - 28px)); }
}
/* HERO */
.hero{
  padding: 44px 0 40px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
}

.eyebrow{
  margin: 0 0 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--muted);
}

.hero-copy h1{
  margin: 0 0 12px;
  font-size: 44px;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.lead{
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
  max-width: 52ch;
}

.hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 16px;
}

.hero-meta{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.meta-item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.meta-item .dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(26,79,179,0.25);
  border: 1px solid rgba(26,79,179,0.35);
}

.hero-media{
  display: grid;
  gap: 10px;
  justify-items: end;
}

.hero-frame{
  width: min(520px, 100%);
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--soft);
  overflow: hidden;
}

.hero-placeholder{
  height: 320px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
}

.hero-dots{
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: min(520px, 100%);
}

.dot-btn{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(11,18,32,0.25);
  background: #fff;
  cursor: pointer;
}

.dot-btn.is-active{
  width: 28px;
  background: rgba(26,79,179,0.18);
  border-color: rgba(26,79,179,0.35);
}

/* HERO responsive */
@media (max-width: 980px){
  .hero{ padding: 36px 0 28px; }
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-media{ justify-items: start; }
  .hero-copy h1{ font-size: 38px; }
  .hero-frame{ width: 100%; }
  .hero-dots{ width: 100%; }
}

@media (max-width: 520px){
  .hero-copy h1{ font-size: 32px; }
  .hero-placeholder{ height: 260px; }
}
/* HERO SLIDER */
.hero-slider{
  width: 100%;
  height: 320px;         /* 你想更大就改这里 */
  overflow: hidden;
}

.hero-track{
  height: 100%;
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.hero-track img{
  width: 100%;
  height: 100%;
  flex: 0 0 100%;
  object-fit: cover;
  display: block;
}

/* optional: subtle gradient edge like finance sites */
.hero-frame{
  position: relative;
}
.hero-frame::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(11,18,32,0.08);
}

/* Responsive adjustment */
@media (max-width: 520px){
  .hero-slider{ height: 260px; }
}
/* HERO full-width slider (no left copy) */
.hero.hero-full{
  padding: 36px 0 44px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.hero-frame-full{
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

/* Make it a wide banner */
.hero-slider{
  height: clamp(380px, 48vh, 640px);           /* 桌面高度 */
  overflow: hidden;
}

.hero-track{
  height: 100%;
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.hero-slide{
  flex: 0 0 100%;
  height: 100%;
  display: block;
  position: relative;
  cursor: pointer;
}

.hero-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;       /* 横图不变形，自动裁切 */
  display: block;
}

/* Optional: subtle hover like finance sites */
.hero-slide::after{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(11,18,32,0.0);
  transition: background 180ms ease;
}
.hero-slide:hover::after{
  background: rgba(11,18,32,0.06);
}

/* Dots overlay at bottom center */
.hero-dots-overlay{
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: auto;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(11,18,32,0.10);
  backdrop-filter: blur(8px);
}

/* Ensure frame rounding clips slides */
.hero-frame{
  border-radius: 22px;
  overflow: hidden; /* 关键：让轮播图也跟着圆角 */
}

/* Responsive */
@media (max-width: 980px){
  .hero-slider{ height: 260px; }
}
@media (max-width: 520px){
  .hero-slider{ height: 220px; }
  .hero.hero-full{ padding: 26px 0 34px; }
}
/* Dots below the image (no overlap) */
.hero-dots-overlay{
  position: static;        /* 取消绝对定位 */
  transform: none;
  width: fit-content;
  margin: 12px auto 0;     /* 居中并与图片留间距 */
  padding: 0;              /* 不要胶囊背景也更像官网 */
  border: 0;
  background: transparent;
  backdrop-filter: none;
}
/* Square corners */
.hero-frame{
  border-radius: 0;
  overflow: hidden; /* 仍然保留，避免图片溢出 */
}
.hero-slide img{
  border-radius: 0;
}
/* ===== HERO banner: square, borderless, taller, dots outside ===== */

.hero.hero-full{
  padding: 28px 0 18px;
  border-bottom: 0;
  background: #fff;
}

.hero-frame,
.hero-frame-full{
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  border-radius: 0 !important;
  overflow: hidden; /* keep crop clean */
  margin: 0 auto;
}

.hero-frame::after{
  content: none !important;
}

.hero-slider{
  height: clamp(420px, 52vh, 680px); /* 更高：你想再高就调这里 */
  overflow: hidden;
  border-radius: 0 !important;
}

.hero-track{
  height: 100%;
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}

.hero-slide{
  flex: 0 0 100%;
  height: 100%;
  display: block;
  border-radius: 0 !important;
}

.hero-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0 !important;
}

/* Nav below banner, centered */
.hero-nav{
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

/* short bars */
.hero-dots{
  display: flex;
  gap: 10px;
  align-items: center;
}

.dot-btn{
  width: 26px;
  height: 6px;
  border-radius: 999px;
  border: 0;
  background: rgba(11,18,32,0.16);
  cursor: pointer;
  padding: 0;
}

.dot-btn.is-active{
  background: rgba(26,79,179,0.40);
}

.dot-btn:hover{
  background: rgba(11,18,32,0.26);
}
/* ===== Header / Top Nav (force single-row layout) ===== */
.site-header{
  background: #fff;
  border-bottom: 1px solid rgba(11,18,32,0.12);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

/* Brand */
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.brand-badge{
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 28px;
  border-radius: 10px;
  background: #e6001a; /* PC red vibe */
  color: #fff;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.brand-name{
  font-size: 20px;
  letter-spacing: -0.02em;
}

/* Nav links */
.nav{
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.nav a{
  color: var(--text);
  font-weight: 650;
  opacity: 0.95;
}
.nav a:hover{
  text-decoration: underline;
}

/* Right acti*
/* ===== Header: brand-colored Search & FR ===== */

/* Search: red outline, white bg */
.header-actions .search-pill{
  border-color: #e6001a;
  color: #e6001a;
  background: #fff;
  font-weight: 700;
}

.header-actions .search-pill:hover{
  background: rgba(230,0,26,0.06);
}

/* FR: solid red pill */
.header-actions .lang-pill{
  border: 0;
  background: #e6001a;
  color: #fff;
  font-weight: 800;
}

.header-actions .lang-pill:hover{
  background: #c80017;
}
.search-pill,
.lang-pill{
  height: 34px;
  padding: 0 12px;
  font-size: 14px;
}
.lang-pill{
  letter-spacing: 0.06em;
}
/* ===== FORCE pill shape for Search & FR ===== */
.header-actions .search-pill,
.header-actions .lang-pill{
  border-radius: 999px !important;
}
/* ===== Header Actions: unified typography & sizing ===== */
:root{
  --pc-red: #e6001a;
  --pc-red-dark: #c80017;
  --pc-ink: #0b1220;
  --pc-muted: rgba(11,18,32,0.70);
  --pc-border: rgba(11,18,32,0.18);
}

/* Make actions align + consistent baseline */
.header-actions{
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Base style shared by ALL action controls */
.header-actions .search-pill,
.header-actions .lang-pill,
.header-actions .btn,
.header-actions .link{
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border-radius: 999px !important;

  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

/* Search: neutral outline + muted text (像目标站那种不抢戏) */
.header-actions .search-pill{
  background: #fff;
  border: 1px solid var(--pc-border);
  color: var(--pc-muted);
}
.header-actions .search-pill:hover{
  border-color: rgba(11,18,32,0.26);
}

/* Sign in: red outline (和目标站一致) */
.header-actions .link{
  border: 1.5px solid var(--pc-red);
  color: var(--pc-red);
  background: #fff;
  text-decoration: none;
}
.header-actions .link:hover{
  background: rgba(230,0,26,0.06);
}

/* Get started: solid red primary CTA */
.header-actions .btn.btn-primary{
  background: var(--pc-red);
  border: 1px solid var(--pc-red);
  color: #fff;
}
.header-actions .btn.btn-primary:hover{
  background: var(--pc-red-dark);
  border-color: var(--pc-red-dark);
}

/* FR: small neutral pill (不抢 CTA) */
.header-actions .lang-pill{
  background: #fff;
  border: 1px solid var(--pc-border);
  color: var(--pc-ink);
  padding: 0 12px; /* 语言按钮稍紧凑 */
  font-weight: 750;
}
.header-actions .lang-pill:hover{
  border-color: rgba(11,18,32,0.26);
}

/* Optional: if you want FR pill to be icon+text aligned nicely later */
.header-actions .lang-pill svg{
  margin-right: 8px;
}
.search-pill .icon{ margin-right: 8px; font-size: 16px; }
/* ===== Top nav: lighter + dropdown ===== */
.nav{
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link{
  font-weight: 600;          /* 原来太粗，这里压下来 */
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--pc-ink);
  text-decoration: none;
  padding: 12px 2px;         /* 给 hover 空间 */
  display: inline-block;
}

/* replace underline hover with subtle indicator */
.nav-link:hover{
  text-decoration: none;
  opacity: 0.9;
}

/* Nav item container */
.nav-item{
  position: relative;
}

/* Dropdown panel */
.dropdown{
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 620px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(11,18,32,0.12);
  box-shadow: 0 12px 30px rgba(11,18,32,0.12);
  padding: 22px 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  z-index: 50;

  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

/* Keep open when hovering dropdown itself */
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown text styling */
.dd-title{
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(11,18,32,0.55);
  font-weight: 800;
  margin: 0 0 10px;
}

.dropdown a{
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  color: rgba(11,18,32,0.86);
  text-decoration: none;
  font-weight: 650;
}

.dropdown a:hover{
  background: rgba(230,0,26,0.06);  /* 用红系 hover */
  color: var(--pc-ink);
}
.nav-item::after{
  content:"";
  position:absolute;
  left:-10px;
  right:-10px;
  top:100%;
  height:14px;
}
/* ===== Hero indicators: thinner + red active ===== */
.hero-dots{ gap: 12px; }

.dot-btn{
  width: 26px;
  height: 4px;                        /* 变更细 */
  border-radius: 999px;
  border: 0;
  background: rgba(11,18,32,0.18);
}

.dot-btn.is-active{
  background: var(--pc-red);          /* active 改红 */
}
/* ===== Dropdown with right-side CTA ===== */
.dropdown.dropdown-cta{
  grid-template-columns: 2fr 1fr;  /* 左链接，右CTA */
  min-width: 780px;
  padding: 24px;
}

/* 左侧链接区 */
.dd-links{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* CTA 卡片 */
.dd-cta{
  background: #faf7fb; /* 非纯白，显得“卡片感” */
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dd-cta img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

/* CTA 文案区 */
.dd-cta-content{
  padding: 16px 16px 18px;
}

.dd-cta-content h4{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--pc-ink);
}

.dd-cta-content p{
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(11,18,32,0.75);
}

.dd-cta-link{
  font-weight: 750;
  font-size: 14px;
  color: var(--pc-red);
  text-decoration: none;
}

.dd-cta-link:hover{
  text-decoration: underline;
}
/* ===== FORCE mega menu with CTA (override old rules) ===== */

.nav-item .dropdown.dropdown-cta{
  display: grid !important;
  grid-template-columns: 2fr 1fr !important;
  gap: 24px !important;
  min-width: 780px !important;
  padding: 24px !important;
}

/* left link area */
.nav-item .dropdown .dd-links{
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 24px !important;
}

/* CTA card */
.nav-item .dropdown .dd-cta{
  display: flex !important;
  flex-direction: column !important;
  background: #faf7fb !important;
  border-radius: 14px !important;
  overflow: hidden !important;
}

/* CTA image */
.nav-item .dropdown .dd-cta img{
  width: 100% !important;
  height: 160px !important;
  object-fit: cover !important;
  display: block !important;
}

/* CTA content */
.nav-item .dropdown .dd-cta-content{
  padding: 16px 16px 18px !important;
}

.nav-item .dropdown .dd-cta-content h4{
  margin: 0 0 6px !important;
  font-size: 18px !important;
  font-weight: 800 !important;
}

.nav-item .dropdown .dd-cta-content p{
  margin: 0 0 12px !important;
  font-size: 14px !important;
  color: rgba(11,18,32,0.75) !important;
}

.nav-item .dropdown .dd-cta-link{
  font-weight: 750 !important;
  color: #e6001a !important;
  text-decoration: none !important;
}
/* ===== Mega menu (final): centered + no clipping + CTA card ===== */

/* Don’t clip dropdown */
.site-header,
.header-inner,
.nav{ overflow: visible; }

/* anchor container */
.nav-item{ position: relative; }

/* dropdown panel */
.nav-item .dropdown.dropdown-cta{
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;

  /* size: responsive to viewport */
  width: min(920px, calc(100vw - 48px));
  padding: 24px;

  background: #fff;
  border: 1px solid rgba(11,18,32,0.12);
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(11,18,32,0.14);

  /* position: center under the menu item */
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  top: calc(100% + 10px);

  /* show/hide animation base */
  opacity: 0;
  visibility: hidden;
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;

  z-index: 50;
}

/* reveal on hover */
.nav-item:hover .dropdown.dropdown-cta,
.nav-item:focus-within .dropdown.dropdown-cta{
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* hover buffer so it doesn't flicker when moving mouse down */
.nav-item::after{
  content:"";
  position:absolute;
  left:-12px;
  right:-12px;
  top:100%;
  height:14px;
}

/* left links columns */
.nav-item .dropdown.dropdown-cta .dd-links{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* titles */
.nav-item .dropdown.dropdown-cta .dd-title{
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(11,18,32,0.55);
  font-weight: 800;
  margin: 0 0 10px;
}

/* dropdown links */
.nav-item .dropdown.dropdown-cta a{
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  color: rgba(11,18,32,0.86);
  text-decoration: none;
  font-weight: 650;
}

.nav-item .dropdown.dropdown-cta a:hover{
  background: rgba(230,0,26,0.06);
}

/* right CTA card */
.nav-item .dropdown.dropdown-cta .dd-cta{
  background: #faf7fb;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0; /* prevent overflow */
}

.nav-item .dropdown.dropdown-cta .dd-cta img{
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.nav-item .dropdown.dropdown-cta .dd-cta-content{
  padding: 16px 16px 18px;
}

.nav-item .dropdown.dropdown-cta .dd-cta-content h4{
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.01em;
  color: var(--pc-ink);
}

.nav-item .dropdown.dropdown-cta .dd-cta-content p{
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(11,18,32,0.75);
}

.nav-item .dropdown.dropdown-cta .dd-cta-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 14px;
  color: var(--pc-red);
  text-decoration: none;
}

.nav-item .dropdown.dropdown-cta .dd-cta-link:hover{
  text-decoration: underline;
}

/* small screens: drop CTA to below links */
@media (max-width: 860px){
  .nav-item .dropdown.dropdown-cta{
    grid-template-columns: 1fr;
  }
  .nav-item .dropdown.dropdown-cta .dd-links{
    grid-template-columns: 1fr;
  }
}
/* ===== Brand logo ===== */
.brand-logo{
  height: 30px;
  width: auto;
  display: block;
}
/* ========== Featured Banner ========== */

.featured-banner {
  padding: 40px 0;
}

.featured-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.featured-inner {
  max-width: 1100px; /* 稍微收窄，避免视觉偏左 */
  margin: 0 auto;
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center; /* 🔑 关键 */
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
}

.featured-image img {
  width: 220px;
  border-radius: 16px;
  display: block;
}

.featured-tag {
  display: inline-block;
  background: #f1e6f8;
  color: #6b2fa6;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}

.featured-content h2 {
  font-size: 28px;
  margin: 0 0 8px;
}

.featured-content p {
  font-size: 16px;
  color: #555;
  margin-bottom: 12px;
}

.featured-cta {
  font-weight: 600;
  color: #c3002f;
}
/* ========== Category Showcase ========== */

.category-showcase {
  padding: 80px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.category-header {
  text-align: center;
  margin-bottom: 48px;
}

.category-header h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.category-header p {
  font-size: 18px;
  color: #555;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.category-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  padding: 24px;
}

.category-card img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 16px;
}

.category-tag {
  display: inline-block;
  font-size: 13px;
  background: #f1e6f8;
  color: #6b2fa6;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.category-card h3 {
  font-size: 22px;
  margin: 8px 0;
}

.category-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
}

/* Red outline button */
.btn-outline {
  display: inline-block;
  padding: 10px 18px;
  border: 2px solid #c3002f;
  color: #c3002f;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

.btn-outline:hover {
  background: #c3002f;
  color: #fff;
}
/* ========== Redeem Block ========== */

.redeem-block {
  padding: 90px 0;
  background: #fff;
}

.redeem-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 26px;
}

.redeem-head h2 {
  font-size: 34px;
  line-height: 1.2;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}

.redeem-head p {
  margin: 0;
  font-size: 16px;
  color: #555;
}

.accent {
  color: #c3002f;
  font-weight: 800;
}

/* Banner image area */
.redeem-banner {
  display: block;
  max-width: 980px;
  margin: 26px auto 34px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.redeem-banner img {
  width: 100%;
  display: block;
}

/* Actions row */
.redeem-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
}

.btn-red {
  display: inline-block;
  background: #c3002f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid #c3002f;
}

.btn-red:hover {
  filter: brightness(0.95);
}

.text-link {
  color: #111;
  text-decoration: underline;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.text-link .ext {
  font-size: 14px;
  transform: translateY(-1px);
}
/* ========== D Block: Social Proof ========== */

.social-proof {
  padding: 90px 0;
  background: #f7e7e7; /* 肉粉色 */
}

.sp-head {
  text-align: center;
  margin-bottom: 28px;
}

.sp-head h2 {
  font-size: 34px;
  margin: 0;
  letter-spacing: -0.02em;
}

.sp-head .accent {
  color: #c3002f;
  font-weight: 800;
}

.heart {
  margin-left: 6px;
  color: #c3002f;
}

.sp-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 920px;
  margin: 24px auto 44px;
  text-align: center;
}

.stat-num {
  font-size: 22px;
  font-weight: 800;
}

.stat-label {
  font-size: 13px;
  color: #555;
  margin-top: 6px;
}

.star {
  color: #c3002f;
}

.sp-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.quote-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px 22px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  position: relative;
  min-height: 220px;
}

.quote-mark {
  font-size: 46px;
  line-height: 1;
  color: #e6d3d3;
  font-weight: 900;
  margin-bottom: 8px;
}

.quote-card p {
  margin: 0 0 16px;
  font-size: 14px;
  color: #333;
  line-height: 1.55;
}

.quote-card .hl {
  color: #c3002f;
  font-weight: 700;
}

.quote-name {
  font-size: 13px;
  color: #555;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .sp-stats { grid-template-columns: 1fr; gap: 18px; }
  .sp-cards { grid-template-columns: 1fr; }
}
/* ========== E Block: Credentials ========== */

.credentials {
  padding: 90px 0;
  background: #fff;
}

.cred-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 26px;
}

.cred-head h2 {
  font-size: 34px;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.cred-head p {
  margin: 0;
  color: #555;
  font-size: 15px;
}

/* Combined credentials strip */

.badge-strip {
  display: flex;
  justify-content: center;
  margin: 28px auto 54px;
  max-width: 980px;
}

.badge-strip img {
  width: 100%;
  max-width: 760px;   /* 控制整体视觉宽度 */
  height: auto;
  display: block;
}


.cred-feature {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  max-width: 1050px;
  margin: 0 auto;
}

.cred-image img {
  width: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.cred-content h3 {
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.cred-content p {
  margin: 0 0 20px;
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

/* Responsive */

/* ========== Footer ========== */

.site-footer {
  background: #2f3136;   /* 深灰 */
  color: #e8e9ed;
  padding: 60px 0 26px;
}

.footer-top {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 56px;
  align-items: start;
}

/* Left */
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  margin-bottom: 18px;
}

.logo-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #c3002f; /* 你的主红色 */
  display: inline-block;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.store-badges {
  display: flex;
  gap: 16px;
  margin: 16px 0 18px;
  flex-wrap: wrap;
}

.store-badge {
  width: 170px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 10px 12px;
  text-decoration: none;
  color: #fff;
  background: rgba(0,0,0,0.10);
}

.store-small {
  display: block;
  font-size: 10px;
  opacity: 0.85;
  letter-spacing: 0.02em;
}

.store-big {
  display: block;
  font-size: 16px;
  font-weight: 800;
  margin-top: 2px;
}

.social-row {
  display: flex;
  gap: 16px;
  margin: 18px 0 26px;
}

.social {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #e8e9ed;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.04);
  font-weight: 800;
}

.social:hover {
  background: rgba(255,255,255,0.08);
}

.assist-row {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.95;
}

.assist-badge {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.12);
}

.assist-text {
  font-weight: 500;
  letter-spacing: 0.02em;
}

.assist-pill {
  margin-left: 8px;
  text-decoration: none;
  color: #fff;
  background: rgba(195,0,47,0.35);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 12px;
}

/* Right */
.footer-links {
  position: relative;
}

.footer-lang {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 26px;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  text-decoration: none;
  background: rgba(255,255,255,0.04);
  font-weight: 700;
}

.lang-btn:hover {
  background: rgba(255,255,255,0.08);
}

.link-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 34px;
}

.link-col a {
  display: block;
  color: #e8e9ed;
  text-decoration: none;
  padding: 10px 0;
  opacity: 0.9;
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

.link-col a:hover {
  opacity: 1;
  text-decoration: underline;
}

.link-col a.ext span {
  opacity: 0.9;
  margin-left: 6px;
}

/* Bottom fine print */
.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.fineprint {
  margin: 0;
  font-size: 12px;
  color: rgba(232,233,237,0.78);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-lang {
    justify-content: flex-start;
  }

  .link-cols {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.footer-logo-img {
  height: 44px;
  width: auto;
  display: block;
}
.store-img {
  height: 48px;
  width: auto;
  display: block;
}
.assist-icons {
  display: flex;
  gap: 8px;
}

.assist-icons img {
  width: 28px;
  height: 28px;
  display: block;
}

.assist-pill img {
  height: 18px;
  width: auto;
  display: block;
}
.site-footer {
  font-weight: 400;              /* 基础降重 */
  letter-spacing: 0.01em;        /* 微弱拉开 */
}

/* ========== Sign in page (auth) ========== */

.auth-page .container{
  max-width: var(--container, 1200px);
  margin: 0 auto;
  padding: 0 24px;
}

.auth-header{
  padding: 18px 0;
}

.auth-header-inner{
  display: flex;
  align-items: center;
}

.auth-logo img{
  height: 40px;
  width: auto;
  display: block;
}

/* Main layout */
.auth-main{
  display: grid;
  grid-template-columns: 1fr 1fr; /* ✅ 平分 */

}


.auth-left{
  background: #ffffff;
}

.auth-left-inner{
  padding: 84px 56px 84px;
  max-width: 920px;
}

.auth-hero-title{
  font-size: 72px;
  line-height: 1.05;
  letter-spacing: var(--ls-tight, -0.02em);
  margin: 0 0 22px;
}

.auth-hero-sub{
  font-size: 18px;
  color: var(--muted, #525a66);
  margin: 0 0 54px;
}

.auth-info-card{
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 720px;
  background: #fff;
}

.auth-info-text{
  font-weight: 500;
  color: #1f2937;
}

.auth-outline-btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid var(--brand, #c3002f);
  color: var(--brand, #c3002f);
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.auth-outline-btn:hover{
  background: var(--brand, #c3002f);
  color: #fff;
}

.auth-outline-btn .ext{
  font-size: 14px;
  transform: translateY(-1px);
}

/* Right panel */
.auth-right{
  background: #f3f4f6;
  border-left: 1px solid rgba(0,0,0,0.08);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.auth-card{
  width: 100%;
  max-width: 380px;
  padding: 84px 28px 84px;
}

.auth-title{
  font-size: 26px;
  margin: 0 0 26px;
  letter-spacing: var(--ls-tight, -0.02em);
}

.auth-form .field{
  margin-bottom: 26px;
}

.label{
  display: block;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
  font-weight: 600;
}

.input{
  width: 100%;
  border: 1px solid rgba(0,0,0,0.15);
  background: #eaf2ff; /* 接近截图那种浅蓝输入框 */
  border-radius: 4px;
  padding: 12px 12px;
  font-size: 15px;
  outline: none;
}

.input:focus{
  border-color: rgba(195,0,47,0.55);
  box-shadow: 0 0 0 3px rgba(195,0,47,0.12);
}

.field-link{
  display: inline-block;
  margin-top: 10px;
  color: #7c3aed; /* 类似截图的紫色链接 */
  text-decoration: underline;
  font-weight: 600;
  font-size: 13px;
  float: right;
}

.input-wrap{
  position: relative;
}

.eye-btn{
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: rgba(0,0,0,0.45);
  cursor: default; /* 只是视觉，不做功能 */
  padding: 6px;
}

.remember-row{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 26px;
}

.remember{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: #374151;
}

.info-dot{
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.55);
}

.auth-submit{
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  border: 0;
  background: #b91c1c; /* 深红更像截图 */
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 10px 22px rgba(185,28,28,0.22);
  cursor: pointer;
}

.auth-submit:hover{
  filter: brightness(0.97);
}

.auth-bottom{
  margin: 18px 0 0;
  color: #374151;
  font-size: 14px;
}

.auth-bottom a{
  color: #7c3aed;
  font-weight: 700;
  text-decoration: underline;
  margin-left: 8px;
}

/* Responsive */
@media (max-width: 980px){
.auth-main{
  display: grid;
  grid-template-columns: 1fr 1fr; /* ✅ 平分 */

}

  .auth-left-inner{
    padding: 56px 24px 28px;
  }
  .auth-hero-title{
    font-size: 48px;
  }
  .auth-right{
    border-left: none;
    border-top: 1px solid rgba(0,0,0,0.08);
  }
  .auth-card{
    padding: 34px 24px 56px;
  }
  .auth-info-card{
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Make auth page a proper 3-row layout: header / main / footer */
.auth-page{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* main takes remaining space, footer stays below */
.auth-main{
  flex: 1;
  min-height: auto;              /* ✅ 关键：不要再用 calc(100vh - xx) */
}

/* Ensure footer is not affected by auth panel backgrounds */
.auth-page .site-footer{
  background: #2f3136;           /* ✅ 确保深灰存在 */
  position: relative;
  z-index: 2;                    /* ✅ 防止被覆盖 */
}
.auth-right{
  align-self: stretch;
}
.auth-page .site-footer *{
  opacity: 1;
}
.auth-error{
  margin: 6px 0 14px;
  color: #b91c1c;
  font-weight: 600;
  min-height: 18px;
}
/* ===== Placeholder loading ===== */
.loading-wrap{
  margin: 60px auto 80px;
  text-align: center;
  color: #5f6368;
}

.loading-spinner{
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 999px;
  border: 4px solid rgba(91,42,120,.18);
  border-top-color: rgba(91,42,120,.85);
  animation: spin 0.9s linear infinite;
}

@keyframes spin{
  to{ transform: rotate(360deg); }
}

.loading-text{
  font-weight: 700;
  letter-spacing: .2px;
  margin-bottom: 6px;
}

.loading-dots{
  display: flex;
  justify-content: center;
  gap: 6px;
}

.loading-dots span{
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(91,42,120,.75);
  opacity: .25;
  animation: pulse 1s infinite ease-in-out;
}

.loading-dots span:nth-child(2){ animation-delay: .15s; }
.loading-dots span:nth-child(3){ animation-delay: .3s; }

@keyframes pulse{
  0%, 100% { transform: translateY(0); opacity: .25; }
  50% { transform: translateY(-4px); opacity: .9; }
}
