/* roulang page: index */
:root {
      --mint: #20b89d;
      --mint-dark: #12836f;
      --mint-soft: #e8fbf6;
      --coral: #ff7a59;
      --coral-soft: #fff0ea;
      --lemon: #fff4b8;
      --lavender: #f0edff;
      --ink: #183532;
      --muted: #60726f;
      --weak: #8a9a97;
      --line: #dcece8;
      --bg: #fbfffd;
      --band: #f2fbf8;
      --card: #ffffff;
      --shadow: 0 14px 34px rgba(22, 80, 75, 0.10);
      --shadow-hover: 0 18px 44px rgba(22, 80, 75, 0.14);
      --radius: 18px;
      --radius-sm: 12px;
      --container: 1160px;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color: var(--ink);
      background: var(--bg);
      line-height: 1.75;
      letter-spacing: 0;
    }
    a { color: inherit; text-decoration: none; transition: color .2s ease, background .2s ease, transform .2s ease; }
    img { max-width: 100%; display: block; }
    button, input { font: inherit; }
    button { cursor: pointer; border: 0; }
    input:focus, button:focus, a:focus { outline: 3px solid rgba(32, 184, 157, .24); outline-offset: 3px; }
    .container { width: min(100% - 40px, var(--container)); margin: 0 auto; }
    .site-header {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(251, 255, 253, .94);
      border-bottom: 1px solid rgba(220, 236, 232, .9);
      backdrop-filter: blur(14px);
    }
    .nav-wrap {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      color: var(--ink);
      white-space: nowrap;
    }
    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--mint), #7ce3c9);
      display: grid;
      place-items: center;
      color: #fff;
      box-shadow: 0 10px 22px rgba(32, 184, 157, .22);
    }
    .brand-mark::before { content: "区"; font-size: 20px; font-weight: 900; }
    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin: 0;
      list-style: none;
    }
    .nav-links a {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 0 15px;
      border-radius: 999px;
      color: var(--muted);
      font-weight: 700;
      font-size: 15px;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--mint-dark); background: var(--mint-soft); }
    .nav-actions { display: flex; align-items: center; gap: 12px; }
    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      background: var(--coral-soft);
      color: #ba4b32;
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
    }
    .status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(255, 122, 89, .15); }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 800;
      line-height: 1.2;
      border: 1px solid transparent;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
    }
    .btn-primary { background: var(--mint); color: #fff; box-shadow: 0 12px 24px rgba(32, 184, 157, .22); }
    .btn-primary:hover { background: var(--mint-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-hover); }
    .btn-secondary { background: #fff; color: var(--mint-dark); border-color: rgba(32, 184, 157, .28); }
    .btn-secondary:hover { background: var(--mint-soft); color: var(--mint-dark); transform: translateY(-2px); }
    .menu-toggle { display: none; width: 44px; height: 44px; border-radius: 14px; background: var(--mint-soft); color: var(--mint-dark); font-weight: 900; }
    .hero {
      padding: 64px 0 78px;
      background:
        radial-gradient(circle at 16% 22%, rgba(255, 244, 184, .7), transparent 28%),
        linear-gradient(180deg, #f8fffc 0%, #effbf7 100%);
      overflow: hidden;
    }
    .hero-stage {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 34px;
      align-items: stretch;
    }
    .hero-copy {
      padding: 34px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .eyebrow-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      color: var(--mint-dark);
      background: var(--mint-soft);
      border: 1px solid rgba(32, 184, 157, .12);
    }
    .badge.coral { background: var(--coral-soft); color: #ba4b32; border-color: rgba(255, 122, 89, .12); }
    .badge.lemon { background: var(--lemon); color: #7b6612; border-color: rgba(204, 168, 28, .16); }
    h1, h2, h3 { margin: 0; letter-spacing: 0; line-height: 1.18; color: var(--ink); }
    h1 { font-size: clamp(34px, 5vw, 54px); max-width: 780px; }
    h2 { font-size: clamp(26px, 3.4vw, 38px); }
    h3 { font-size: 20px; }
    p { margin: 0; color: var(--muted); }
    .hero-desc { margin-top: 20px; max-width: 720px; font-size: 18px; line-height: 1.85; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
    .hero-metrics { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; margin-top: 30px; }
    .metric {
      min-height: 86px;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: rgba(255, 255, 255, .72);
    }
    .metric strong { display: block; font-size: 24px; color: var(--mint-dark); line-height: 1.1; }
    .metric span { display: block; margin-top: 6px; color: var(--weak); font-size: 13px; }
    .apply-panel {
      position: relative;
      padding: 26px;
      border-radius: 26px;
      background: #fff;
      box-shadow: var(--shadow);
      border: 1px solid rgba(220, 236, 232, .92);
      min-height: 520px;
      display: grid;
      grid-template-rows: auto 1fr auto;
      gap: 22px;
    }
    .panel-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 14px; }
    .panel-title small { display: block; color: var(--weak); font-weight: 800; margin-bottom: 4px; }
    .countdown { padding: 10px 12px; border-radius: 14px; background: var(--lavender); color: #5d5194; font-weight: 900; white-space: nowrap; }
    .entry-matrix { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .entry-card {
      min-height: 118px;
      border-radius: 16px;
      padding: 16px;
      background: linear-gradient(180deg, #f7fffc 0%, #fff 100%);
      border: 1px solid var(--line);
      position: relative;
      overflow: hidden;
    }
    .entry-card::after { content: ""; position: absolute; width: 54px; height: 54px; right: -18px; bottom: -18px; border-radius: 20px; background: rgba(32, 184, 157, .12); transform: rotate(18deg); }
    .entry-card b { display: block; font-size: 17px; margin-bottom: 7px; }
    .entry-card span { display: block; color: var(--muted); font-size: 14px; line-height: 1.55; }
    .panel-foot { padding: 16px; border-radius: 16px; background: var(--mint-soft); color: var(--mint-dark); font-weight: 800; display: flex; justify-content: space-between; gap: 12px; }
    main section { padding: 78px 0; }
    .section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 30px; }
    .section-head p { max-width: 660px; font-size: 17px; }
    .cards-3, .cards-4 { display: grid; gap: 22px; }
    .cards-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .cards-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .feature-card, .topic-card, .proof-card, .plan-card, .faq-item, .info-list, .sidebar-box {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: 0 8px 22px rgba(22, 80, 75, .06);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .feature-card:hover, .topic-card:hover, .proof-card:hover, .plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(32, 184, 157, .28); }
    .feature-card { padding: 26px; min-height: 230px; }
    .icon-bubble { width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center; background: var(--mint-soft); color: var(--mint-dark); font-size: 22px; margin-bottom: 18px; }
    .feature-card p, .topic-card p, .proof-card p, .plan-card p { margin-top: 12px; font-size: 15px; }
    .band { background: var(--band); }
    .demo-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 26px; align-items: center; }
    .filter-board {
      padding: 26px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 24px;
      box-shadow: var(--shadow);
    }
    .search-row { display: flex; gap: 10px; margin-bottom: 18px; }
    .search-row input { height: 52px; border: 1px solid var(--line); border-radius: 15px; padding: 0 16px; box-shadow: none; margin: 0; }
    .search-row input:focus { border-color: var(--mint); box-shadow: 0 0 0 4px rgba(32,184,157,.12); }
    .tag-cloud { display: flex; flex-wrap: wrap; gap: 10px; }
    .tag { padding: 9px 13px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--muted); font-weight: 700; font-size: 14px; }
    .tag.hot { background: var(--coral-soft); border-color: rgba(255,122,89,.18); color: #ba4b32; }
    .demo-points { display: grid; gap: 14px; }
    .point { display: grid; grid-template-columns: 52px 1fr; gap: 14px; padding: 18px; border-radius: 18px; background: #fff; border: 1px solid var(--line); }
    .num { width: 52px; height: 52px; border-radius: 50%; background: var(--mint); color: #fff; display: grid; place-items: center; font-weight: 900; }
    .topic-card { padding: 22px; min-height: 210px; }
    .topic-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 16px; }
    .mini-illus { width: 54px; height: 42px; border-radius: 16px; background: linear-gradient(135deg, var(--mint-soft), var(--lemon)); border: 1px solid rgba(32, 184, 157, .12); }
    .text-link { display: inline-flex; margin-top: 16px; color: var(--mint-dark); font-weight: 900; }
    .timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; counter-reset: step; }
    .step {
      position: relative;
      min-height: 206px;
      padding: 24px;
      border-radius: var(--radius);
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: 0 8px 22px rgba(22, 80, 75, .06);
    }
    .step::before {
      counter-increment: step;
      content: "0" counter(step);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 48px;
      height: 32px;
      padding: 0 12px;
      border-radius: 999px;
      background: var(--mint-soft);
      color: var(--mint-dark);
      font-weight: 900;
      margin-bottom: 16px;
    }
    .quote-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
    .proof-card { padding: 22px; }
    .avatar { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--lavender); color: #5d5194; font-weight: 900; margin-bottom: 14px; }
    .result-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 26px; }
    .result { padding: 20px; border-radius: 18px; background: var(--mint-soft); border: 1px solid rgba(32,184,157,.14); }
    .result strong { display: block; font-size: 28px; color: var(--mint-dark); line-height: 1.1; }
    .news-layout { display: grid; grid-template-columns: 1.35fr .65fr; gap: 24px; }
    .info-list { padding: 10px; }
    .news-item { display: grid; grid-template-columns: 112px 1fr auto; gap: 16px; align-items: center; padding: 16px; border-radius: 14px; }
    .news-item + .news-item { border-top: 1px solid var(--line); }
    .news-item:hover { background: var(--mint-soft); }
    .news-date { color: var(--weak); font-weight: 800; font-size: 14px; }
    .news-item h3 { font-size: 18px; }
    .sidebar-box { padding: 22px; }
    .sidebar-box ul { margin: 16px 0 0; list-style: none; }
    .sidebar-box li { padding: 10px 0; border-bottom: 1px dashed var(--line); color: var(--muted); }
    .plan-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: stretch; }
    .plan-card { padding: 26px; position: relative; }
    .plan-card.recommend { border-color: rgba(255,122,89,.36); box-shadow: var(--shadow); }
    .plan-card.recommend::after { content: "推荐查看"; position: absolute; top: 18px; right: 18px; padding: 6px 10px; border-radius: 999px; background: var(--coral); color: #fff; font-size: 12px; font-weight: 900; }
    .plan-card ul { margin: 18px 0 22px; color: var(--muted); }
    .plan-card li { margin-bottom: 8px; }
    .faq-wrap { display: grid; gap: 14px; }
    .faq-item { overflow: hidden; }
    .faq-question {
      width: 100%;
      min-height: 62px;
      padding: 18px 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      background: #fff;
      color: var(--ink);
      font-weight: 900;
      text-align: left;
    }
    .faq-question span:last-child { width: 28px; height: 28px; border-radius: 50%; background: var(--mint-soft); color: var(--mint-dark); display: grid; place-items: center; flex: 0 0 auto; }
    .faq-answer { display: none; padding: 0 22px 20px; color: var(--muted); }
    .faq-item.active .faq-answer { display: block; }
    .cta-section { padding: 84px 0; background: linear-gradient(135deg, #e8fbf6 0%, #fff8e1 100%); }
    .cta-box {
      display: grid;
      grid-template-columns: 1fr 390px;
      gap: 30px;
      align-items: center;
      padding: 34px;
      border-radius: 28px;
      background: rgba(255,255,255,.8);
      border: 1px solid rgba(220,236,232,.95);
      box-shadow: var(--shadow);
    }
    .lead-form { display: grid; gap: 12px; }
    .lead-form input {
      width: 100%;
      height: 52px;
      border-radius: 15px;
      border: 1px solid var(--line);
      padding: 0 16px;
      margin: 0;
      background: #fff;
    }
    .lead-form input:focus { border-color: var(--mint); box-shadow: 0 0 0 4px rgba(32,184,157,.12); }
    .form-note { font-size: 13px; color: var(--weak); }
    .site-footer {
      padding: 44px 0 30px;
      background: #193c37;
      color: rgba(255,255,255,.86);
    }
    .footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 30px; }
    .footer-brand { font-size: 20px; font-weight: 900; color: #fff; margin-bottom: 12px; }
    .footer-title { font-weight: 900; color: #fff; margin-bottom: 12px; }
    .footer-links { display: grid; gap: 8px; }
    .footer-links a { color: rgba(255,255,255,.72); }
    .footer-links a:hover { color: #fff; }
    .copyright { margin-top: 32px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.62); font-size: 14px; }
    @media (max-width: 1024px) {
      .hero-stage, .demo-layout, .cta-box, .news-layout { grid-template-columns: 1fr; }
      .cards-4, .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .cards-3, .plan-grid, .quote-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .nav-links { gap: 2px; }
      .nav-links a { padding: 0 11px; }
      .status-pill { display: none; }
    }
    @media (max-width: 768px) {
      .container { width: min(100% - 28px, var(--container)); }
      .nav-wrap { min-height: 68px; }
      .menu-toggle { display: inline-grid; place-items: center; }
      .nav-links {
        position: absolute;
        left: 14px;
        right: 14px;
        top: 76px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 12px;
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 18px;
        box-shadow: var(--shadow);
      }
      .nav-links.open { display: flex; }
      .nav-links a { justify-content: center; }
      .nav-actions .btn { display: none; }
      .hero { padding: 42px 0 54px; }
      .hero-copy { padding: 0; }
      .hero-desc { font-size: 16px; }
      .hero-actions { display: grid; grid-template-columns: 1fr; }
      .hero-metrics, .cards-3, .cards-4, .timeline, .quote-strip, .result-row, .plan-grid, .footer-grid { grid-template-columns: 1fr; }
      .apply-panel { min-height: auto; padding: 20px; }
      .entry-matrix { grid-template-columns: 1fr; }
      main section { padding: 54px 0; }
      .section-head { display: grid; gap: 12px; margin-bottom: 22px; }
      .search-row { flex-direction: column; }
      .news-item { grid-template-columns: 1fr; gap: 6px; }
      .cta-box { padding: 22px; }
    }
    @media (max-width: 520px) {
      h1 { font-size: 34px; }
      h2 { font-size: 27px; }
      .brand span { max-width: 190px; overflow: hidden; text-overflow: ellipsis; }
      .panel-head, .panel-foot { flex-direction: column; }
      .btn { width: 100%; padding: 0 16px; }
      .feature-card, .topic-card, .step, .proof-card, .plan-card { padding: 20px; }
    }

/* roulang page: category1 */
:root{
  --bg:#f5faf7;
  --bg-soft:#eef7f3;
  --panel:#ffffff;
  --panel-weak:#f8fcfb;
  --text:#16302c;
  --muted:#5d726b;
  --line:#dbe8e1;
  --primary:#1f8b78;
  --primary-strong:#176b5c;
  --accent:#ff8a6b;
  --sun:#f6dc71;
  --lav:#ddd9ea;
  --shadow:0 14px 34px rgba(22,80,75,.10);
  --shadow-hover:0 18px 44px rgba(22,80,75,.14);
  --radius:18px;
  --radius-sm:14px;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:PingFang SC, Microsoft YaHei, Noto Sans SC, Arial, sans-serif;
  line-height:1.8;
  letter-spacing:0;
  text-rendering:optimizeLegibility;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  max-width:100%;
  display:block;
}

button,
input,
textarea,
select{
  font:inherit;
}

button{
  cursor:pointer;
}

:focus-visible{
  outline:3px solid rgba(31,139,120,.22);
  outline-offset:2px;
}

.container{
  width:min(1180px, calc(100% - 32px));
  margin:0 auto;
}

section{
  padding:84px 0;
}

section[id]{
  scroll-margin-top:110px;
}

.section-tight{
  padding:56px 0;
}

.section-soft{
  background:var(--bg-soft);
}

.section-white{
  background:#fff;
}

.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(247,251,249,.94);
  backdrop-filter:saturate(120%) blur(10px);
  border-bottom:1px solid var(--line);
}

.nav-wrap{
  min-height:82px;
  display:flex;
  align-items:center;
  gap:22px;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  font-size:18px;
  font-weight:900;
  letter-spacing:0;
  white-space:nowrap;
}

.brand-mark{
  width:14px;
  height:14px;
  border-radius:50%;
  background:linear-gradient(135deg, var(--primary), #55c7b0);
  box-shadow:0 0 0 6px rgba(31,139,120,.12);
  flex:0 0 auto;
}

.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap:10px;
  padding:0;
  margin:0;
  flex:1;
}

.nav-links a{
  display:inline-flex;
  align-items:center;
  min-height:42px;
  padding:8px 14px;
  border-radius:999px;
  font-weight:800;
  color:var(--muted);
  transition:background-color .22s ease, color .22s ease, transform .22s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible{
  background:rgba(31,139,120,.08);
  color:var(--primary-strong);
}

.nav-links a.active{
  background:rgba(31,139,120,.12);
  color:var(--primary-strong);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.status-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,138,107,.12);
  color:#a84b36;
  font-size:14px;
  font-weight:800;
  white-space:nowrap;
}

.status-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent);
  box-shadow:0 0 0 5px rgba(255,138,107,.16);
  flex:0 0 auto;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:48px;
  padding:0 18px;
  border-radius:999px;
  font-weight:800;
  border:1px solid transparent;
  transition:transform .22s ease, box-shadow .22s ease, background-color .22s ease, color .22s ease, border-color .22s ease;
  white-space:nowrap;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:var(--primary);
  color:#fff;
  box-shadow:0 10px 24px rgba(31,139,120,.18);
}

.btn-primary:hover{
  background:var(--primary-strong);
  box-shadow:0 14px 30px rgba(31,139,120,.22);
}

.btn-secondary{
  background:#fff;
  color:var(--primary-strong);
  border-color:rgba(31,139,120,.26);
}

.btn-secondary:hover{
  background:rgba(31,139,120,.06);
}

.btn-ghost{
  background:rgba(31,139,120,.08);
  color:var(--primary-strong);
}

.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  font-size:22px;
  line-height:1;
}

.hero-band{
  position:relative;
  overflow:hidden;
  background:linear-gradient(180deg, #f9fcfa 0%, #eef8f4 100%);
}

.hero-band::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(31,139,120,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,139,120,.06) 1px, transparent 1px);
  background-size:48px 48px;
  opacity:.28;
}

.hero-band .container{
  position:relative;
}

.hero-topline{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:18px;
}

.crumb{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-size:14px;
  font-weight:700;
}

.crumb a{
  color:var(--muted);
}

.crumb a:hover{
  color:var(--primary-strong);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
  align-items:start;
}

.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(31,139,120,.10);
  color:var(--primary-strong);
  font-size:13px;
  font-weight:800;
  margin-bottom:16px;
}

.hero-title{
  margin:0 0 16px;
  font-size:54px;
  line-height:1.16;
  font-weight:900;
  letter-spacing:0;
}

.hero-copy{
  max-width:660px;
  margin:0 0 20px;
  color:var(--muted);
  font-size:18px;
  line-height:1.85;
}

.badge-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:22px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:8px 12px;
  border-radius:999px;
  font-size:14px;
  font-weight:800;
}

.badge.mint{
  background:rgba(31,139,120,.10);
  color:var(--primary-strong);
}

.badge.coral{
  background:rgba(255,138,107,.14);
  color:#b04f3a;
}

.badge.sun{
  background:rgba(246,220,113,.30);
  color:#7c6400;
}

.badge.lav{
  background:rgba(221,217,234,.75);
  color:#645d7b;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:22px;
}

.update-box{
  max-width:560px;
  padding:18px 18px 16px;
  border-radius:16px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.update-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

.update-title{
  font-size:14px;
  color:var(--muted);
  font-weight:700;
}

.timer{
  font-size:18px;
  font-weight:900;
  color:var(--primary-strong);
}

.update-bar{
  height:10px;
  border-radius:999px;
  background:rgba(31,139,120,.10);
  overflow:hidden;
}

.update-bar span{
  display:block;
  width:72%;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg, var(--primary), #78d3c0);
}

.update-foot{
  margin-top:10px;
  color:var(--muted);
  font-size:14px;
}

.hero-visual{
  position:relative;
  min-height:100%;
  padding:22px;
  border-radius:22px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.92);
  box-shadow:var(--shadow);
}

.visual-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:18px;
}

.visual-title{
  font-size:20px;
  font-weight:900;
}

.play-btn{
  width:62px;
  height:62px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, var(--accent), #ffb38e);
  color:#fff;
  font-size:22px;
  box-shadow:0 14px 24px rgba(255,138,107,.26);
}

.visual-grid{
  display:grid;
  gap:12px;
}

.visual-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 16px;
  border-radius:16px;
  background:var(--panel-weak);
  border:1px solid var(--line);
}

.visual-item strong{
  display:block;
  font-size:16px;
  line-height:1.4;
}

.visual-item span{
  display:block;
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}

.visual-note{
  margin-top:16px;
  padding:14px 16px;
  border-radius:16px;
  background:rgba(31,139,120,.08);
  color:var(--primary-strong);
  font-size:14px;
  line-height:1.8;
}

.filter-section{
  padding:28px 0 10px;
}

.filter-bar{
  margin-top:-38px;
  position:relative;
  z-index:2;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:18px;
  box-shadow:var(--shadow);
}

.filter-top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:16px;
}

.filter-head{
  min-width:0;
}

.filter-kicker{
  margin:0 0 8px;
  color:var(--primary-strong);
  font-size:13px;
  font-weight:800;
  letter-spacing:0;
}

.filter-title{
  margin:0;
  font-size:24px;
  line-height:1.2;
  font-weight:900;
}

.filter-copy{
  margin:8px 0 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.7;
}

.search-form{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:10px;
  margin-bottom:14px;
}

.search-input{
  width:100%;
  height:52px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fdfefe;
  padding:0 16px;
  color:var(--text);
  transition:border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
}

.search-input::placeholder{
  color:#93a39d;
}

.search-input:focus{
  outline:none;
  border-color:rgba(31,139,120,.65);
  box-shadow:0 0 0 4px rgba(31,139,120,.12);
}

.chip-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.chip{
  display:inline-flex;
  align-items:center;
  min-height:40px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid transparent;
  background:rgba(221,217,234,.65);
  color:#645d7b;
  font-size:14px;
  font-weight:800;
  transition:transform .22s ease, background-color .22s ease, border-color .22s ease, color .22s ease;
}

.chip:hover{
  transform:translateY(-1px);
  background:rgba(31,139,120,.08);
  border-color:rgba(31,139,120,.14);
  color:var(--primary-strong);
}

.chip.active{
  background:rgba(31,139,120,.12);
  border-color:rgba(31,139,120,.16);
  color:var(--primary-strong);
}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:28px;
}

.section-title{
  margin:0;
  font-size:36px;
  line-height:1.18;
  font-weight:900;
}

.section-copy{
  max-width:720px;
  margin:0;
  color:var(--muted);
  font-size:17px;
  line-height:1.85;
}

.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:10px;
  color:var(--primary-strong);
  font-size:13px;
  font-weight:800;
}

.card-grid .cell,
.steps-grid .cell,
.review-strip .cell{
  display:flex;
}

.feature-card{
  display:flex;
  flex-direction:column;
  width:100%;
  min-height:246px;
  padding:24px;
  border-radius:18px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.feature-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-hover);
  border-color:rgba(31,139,120,.18);
}

.card-icon{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:rgba(31,139,120,.12);
  color:var(--primary-strong);
  font-size:18px;
  font-weight:900;
  margin-bottom:14px;
}

.card-kicker{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-bottom:10px;
  color:var(--primary-strong);
  font-size:13px;
  font-weight:800;
}

.card-title{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.32;
  font-weight:900;
}

.card-copy{
  margin:0 0 16px;
  color:var(--muted);
  font-size:15px;
  line-height:1.85;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.card-link{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-weight:800;
  color:var(--primary-strong);
}

.pager-wrap{
  display:flex;
  justify-content:center;
  margin-top:28px;
}

.pager{
  display:inline-flex;
  gap:8px;
  padding:8px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.pager a,
.pager span{
  min-width:42px;
  height:42px;
  padding:0 14px;
  border-radius:999px;
  display:grid;
  place-items:center;
  font-weight:800;
  color:var(--muted);
}

.pager a:hover{
  background:rgba(31,139,120,.08);
  color:var(--primary-strong);
}

.pager .current{
  background:rgba(31,139,120,.12);
  color:var(--primary-strong);
}

.steps-band{
  background:var(--bg-soft);
}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:20px;
}

.step-card{
  width:100%;
  padding:22px;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.step-num{
  width:48px;
  height:48px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:rgba(31,139,120,.12);
  color:var(--primary-strong);
  font-weight:900;
  margin-bottom:14px;
}

.step-title{
  margin:0 0 8px;
  font-size:18px;
  line-height:1.35;
  font-weight:900;
}

.step-copy{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.85;
}

.showcase-grid{
  display:grid;
  grid-template-columns:1.9fr 1fr;
  gap:24px;
  align-items:start;
}

.entry-list{
  display:grid;
  gap:14px;
}

.entry-item{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  padding:18px;
  border-radius:18px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
}

.entry-main{
  min-width:0;
  flex:1 1 auto;
}

.entry-title{
  margin:0 0 8px;
  font-size:19px;
  line-height:1.35;
  font-weight:900;
}

.entry-copy{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.85;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.entry-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:12px;
}

.mini-tag{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:800;
}

.mini-tag.mint{
  background:rgba(31,139,120,.10);
  color:var(--primary-strong);
}

.mini-tag.coral{
  background:rgba(255,138,107,.14);
  color:#b04f3a;
}

.mini-tag.sun{
  background:rgba(246,220,113,.26);
  color:#7d6400;
}

.entry-action{
  display:flex;
  align-items:center;
  flex:0 0 auto;
}

.side-panel{
  position:sticky;
  top:106px;
  padding:22px;
  border-radius:18px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
}

.side-title{
  margin:0 0 10px;
  font-size:20px;
  line-height:1.35;
  font-weight:900;
}

.side-copy{
  margin:0 0 18px;
  color:var(--muted);
  font-size:15px;
  line-height:1.85;
}

.side-list{
  list-style:none;
  padding:0;
  margin:0 0 18px;
  display:grid;
  gap:12px;
}

.side-list li{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  border-radius:14px;
  background:var(--panel-weak);
}

.side-list strong{
  font-size:14px;
}

.side-list span{
  color:var(--muted);
  font-size:13px;
}

.side-links{
  display:grid;
  gap:10px;
  margin-top:8px;
}

.side-links a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(31,139,120,.08);
  color:var(--primary-strong);
  font-weight:800;
}

.side-links a:hover{
  background:rgba(31,139,120,.12);
}

.review-strip{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}

.review-card{
  width:100%;
  padding:20px;
  border-radius:18px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}

.review-top{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}

.avatar{
  width:42px;
  height:42px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(255,138,107,.14);
  color:#b04f3a;
  font-weight:900;
  flex:0 0 auto;
}

.review-name{
  font-weight:900;
  line-height:1.35;
}

.review-meta{
  color:var(--muted);
  font-size:13px;
  line-height:1.4;
}

.review-copy{
  margin:0;
  color:var(--text);
  font-size:15px;
  line-height:1.85;
}

.lead-band{
  background:linear-gradient(180deg, #f8fcfa 0%, #eef8f4 100%);
}

.lead-panel{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:24px;
  align-items:stretch;
}

.lead-copy-box{
  padding:28px;
  border-radius:22px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow:var(--shadow);
}

.lead-title{
  margin:0 0 12px;
  font-size:34px;
  line-height:1.18;
  font-weight:900;
}

.lead-copy{
  margin:0;
  color:var(--muted);
  font-size:17px;
  line-height:1.85;
}

.lead-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}

.lead-list{
  list-style:none;
  padding:0;
  margin:18px 0 0;
  display:grid;
  gap:12px;
}

.lead-list li{
  position:relative;
  padding-left:18px;
  color:var(--muted);
  font-size:15px;
  line-height:1.85;
}

.lead-list li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:var(--primary-strong);
  font-weight:900;
}

.summary-box{
  padding:24px;
  border-radius:22px;
  border:1px solid rgba(31,139,120,.14);
  background:rgba(31,139,120,.08);
}

.summary-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:16px;
}

.summary-title{
  margin:0;
  font-size:20px;
  line-height:1.35;
  font-weight:900;
}

.summary-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:14px;
}

.summary-row{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:14px 0;
  border-top:1px solid rgba(23,48,43,.08);
}

.summary-row:first-of-type{
  border-top:0;
}

.summary-row strong{
  font-size:15px;
  line-height:1.4;
}

.summary-row span{
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
  text-align:right;
}

.faq-list{
  display:grid;
  gap:14px;
}

.faq-item{
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.faq-item summary{
  list-style:none;
  padding:20px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  cursor:pointer;
  font-weight:900;
  font-size:17px;
  line-height:1.45;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item summary::after{
  content:"+";
  color:var(--primary-strong);
  font-size:24px;
  line-height:1;
  flex:0 0 auto;
}

.faq-item[open] summary::after{
  content:"−";
}

.faq-answer{
  padding:0 22px 22px;
  color:var(--muted);
  font-size:15px;
  line-height:1.9;
}

.site-footer{
  padding:48px 0 26px;
  background:#eef5f1;
  border-top:1px solid var(--line);
  color:#2a423d;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.3fr .8fr .9fr;
  gap:24px;
}

.footer-brand{
  font-size:20px;
  font-weight:900;
  margin-bottom:12px;
}

.footer-title{
  font-size:16px;
  font-weight:900;
  margin-bottom:12px;
}

.footer-links{
  display:grid;
  gap:10px;
}

.footer-links a{
  color:#44665f;
  font-weight:700;
}

.footer-links a:hover{
  color:var(--primary-strong);
}

.copyright{
  margin-top:26px;
  padding-top:18px;
  border-top:1px solid rgba(23,48,43,.08);
  font-size:13px;
  color:var(--muted);
}

@media (max-width: 1080px){
  .hero-grid,
  .lead-panel,
  .showcase-grid,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .side-panel{
    position:static;
  }

  .steps-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .review-strip{
    grid-template-columns:1fr;
  }
}

@media (max-width: 768px){
  .container{
    width:calc(100% - 24px);
  }

  .nav-wrap{
    min-height:74px;
    flex-wrap:wrap;
  }

  .nav-links{
    gap:6px;
  }

  .nav-actions{
    margin-left:auto;
  }

  .status-pill{
    display:none;
  }

  .hero-title{
    font-size:40px;
  }

  .section-title{
    font-size:28px;
  }

  .filter-top{
    flex-direction:column;
    align-items:flex-start;
  }

  .card-grid .cell,
  .steps-grid .cell{
    width:100%;
  }

  .review-strip{
    display:flex;
    overflow-x:auto;
    gap:14px;
    padding-bottom:6px;
  }

  .review-card{
    min-width:280px;
    flex:0 0 84%;
  }
}

@media (max-width: 640px){
  section{
    padding:56px 0;
  }

  .hero-band{
    padding-top:20px;
  }

  .nav-links{
    display:none;
    width:100%;
    order:3;
    flex-direction:column;
    align-items:stretch;
    padding:12px 0 4px;
    gap:6px;
  }

  .site-header.nav-open .nav-links{
    display:flex;
  }

  .nav-links a{
    width:100%;
    justify-content:flex-start;
    border-radius:14px;
    background:#fff;
    border:1px solid var(--line);
  }

  .nav-actions{
    gap:10px;
  }

  .menu-toggle{
    display:inline-grid;
    place-items:center;
    margin-left:auto;
  }

  .hero-title{
    font-size:34px;
  }

  .hero-copy,
  .section-copy,
  .lead-copy{
    font-size:16px;
  }

  .hero-actions,
  .lead-actions{
    flex-direction:column;
  }

  .hero-actions .btn,
  .lead-actions .btn,
  .nav-actions .btn{
    width:100%;
  }

  .search-form{
    grid-template-columns:1fr;
  }

  .steps-grid{
    grid-template-columns:1fr;
  }

  .card-grid{
    grid-template-columns:1fr;
  }

  .entry-item{
    flex-direction:column;
  }

  .entry-action{
    width:100%;
  }

  .entry-action .btn{
    width:100%;
  }

  .summary-row{
    flex-direction:column;
  }

  .summary-row span{
    text-align:left;
  }

  .faq-item summary{
    padding:18px 18px;
    font-size:16px;
  }

  .faq-answer{
    padding:0 18px 18px;
  }
}

@media (max-width: 520px){
  .brand{
    font-size:17px;
  }

  .container{
    width:calc(100% - 20px);
  }

  .feature-card,
  .step-card,
  .review-card,
  .lead-copy-box,
  .summary-box,
  .side-panel{
    border-radius:16px;
  }

  .hero-visual{
    padding:18px;
    border-radius:18px;
  }

  .update-box,
  .filter-bar{
    border-radius:16px;
  }

  .visual-item{
    padding:12px 14px;
  }
}
