:root {
  --c-acc: #c97b63;
  --c-acc-dark: #a85d46;
  --c-dark: #1a1410;
  --c-text: #0a0807;
  --c-muted: rgba(255,255,255,.55);
  --c-line: rgba(0,0,0,.08);
  --c-bg-soft: #faf6f2;
  --c-bg: #ffffff;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.1);
  --ff: 'Outfit', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-acc-dark); text-decoration: none; }
a:hover { color: var(--c-acc); }
ul { padding-left: 1.2rem; }
li { margin-bottom: .4rem; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.sec { padding: 80px 0; }
.sec-light { background: var(--c-bg-soft); }
.sec-dark { background: var(--c-dark); color: #fff; }
.sec-dark a { color: #fff; }
.sec-dark a:hover { color: var(--c-acc); }
.sec-cta { background: linear-gradient(135deg, var(--c-acc) 0%, var(--c-acc-dark) 100%); color: #fff; }
.sec-cta h2, .sec-cta p { color: #fff; }
.sec-cta .btn-acc { background: #fff; color: var(--c-acc-dark); }
.sec-cta .btn-acc:hover { background: var(--c-dark); color: #fff; }

.sec-head { margin-bottom: 50px; }
.sec-head h2 { font-size: 2.2rem; font-weight: 700; margin-bottom: 12px; }
.sec-sub { max-width: 720px; margin: 16px auto 0; color: rgba(0,0,0,.6); }
.sec-dark .sec-sub { color: var(--c-muted); }

.label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-acc);
  margin-bottom: 16px;
}
.divider {
  width: 60px; height: 3px;
  background: var(--c-acc);
  margin: 16px auto 24px;
  border-radius: 2px;
}
.text-center { text-align: center; }
.muted { color: rgba(0,0,0,.55); }
.sec-dark .muted { color: var(--c-muted); }
.small { font-size: .88rem; }

h1 { font-size: 2.8rem; line-height: 1.15; font-weight: 700; margin-bottom: 20px; letter-spacing: -.01em; }
h2 { font-size: 1.9rem; line-height: 1.25; font-weight: 700; margin-bottom: 18px; }
h3 { font-size: 1.25rem; line-height: 1.3; font-weight: 600; margin-bottom: 10px; }
h4 { font-size: 1rem; font-weight: 600; margin-bottom: 12px; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.hd {
  background: #fff;
  border-bottom: 1px solid var(--c-line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.hd-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 18px 20px;
}
.hd-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -.02em;
}
.hd-logo span { color: var(--c-acc); }
.hd-logo:hover { color: var(--c-text); }
.hd-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.hd-link {
  font-size: .95rem;
  font-weight: 500;
  color: var(--c-text);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.hd-link:hover, .hd-link.on { color: var(--c-acc); border-bottom-color: var(--c-acc); }
.hd-cta {
  background: var(--c-acc);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: .92rem;
  transition: background .2s;
}
.hd-cta:hover { background: var(--c-acc-dark); }
.hd-burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--c-text);
  cursor: pointer;
}

.hero {
  padding: 100px 0 80px;
}
.hero h1 { color: inherit; }
.hero-sub { font-size: 1.15rem; max-width: 740px; margin-bottom: 30px; color: var(--c-muted); }
.sec-dark .hero h1 { color: #fff; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.hero-chips { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.hero-chip {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .88rem;
  color: rgba(255,255,255,.85);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-chip i { color: var(--c-acc); }
.hero-sm { padding: 70px 0 50px; }
.hero-sm h1 { font-size: 2.3rem; }

.crumbs {
  font-size: .88rem;
  color: var(--c-muted);
  margin-bottom: 18px;
}
.crumbs a { color: var(--c-muted); }
.crumbs a:hover { color: var(--c-acc); }
.crumbs span { margin: 0 6px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: var(--ff);
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: all .2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-acc { background: var(--c-acc); color: #fff; border-color: var(--c-acc); }
.btn-acc:hover { background: var(--c-acc-dark); color: #fff; border-color: var(--c-acc-dark); }
.btn-outline { background: transparent; color: inherit; border-color: currentColor; }
.btn-outline:hover { background: var(--c-acc); color: #fff !important; border-color: var(--c-acc); }
.sec-dark .btn-outline { color: #fff; }
.btn-sm { padding: 8px 16px; font-size: .88rem; }

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
  padding: 40px 0;
}
.trust-item { padding: 0 10px; }
.trust-n {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--c-acc);
  line-height: 1;
  margin-bottom: 6px;
}
.trust-l {
  display: block;
  font-size: .92rem;
  color: rgba(0,0,0,.6);
}

.cmp-wrap {
  overflow-x: auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cmp {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.cmp thead th {
  background: var(--c-dark);
  color: #fff;
  padding: 18px 14px;
  text-align: left;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.cmp tbody td {
  padding: 18px 14px;
  border-bottom: 1px solid var(--c-line);
  font-size: .95rem;
  vertical-align: middle;
}
.cmp tbody tr:last-child td { border-bottom: none; }
.cmp tbody tr:hover { background: var(--c-bg-soft); }
.cmp-name {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cmp-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-acc);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cmp-logo-big {
  width: 64px;
  height: 64px;
  font-size: 1.6rem;
}
.brand-logo { color: #fff; }
.brand-yogaeasy { background: #2a8c7a; }
.brand-down-dog { background: #d68a3a; }
.brand-asana-rebel { background: #8b3a62; }
.brand-glo { background: #4a5cd4; }
.brand-alo-moves { background: #2c2a28; }
.brand-daily-yoga { background: #c44a4a; }

.cmp-badge {
  display: inline-block;
  background: var(--c-acc);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 9px;
  border-radius: 4px;
  margin-top: 4px;
  text-transform: uppercase;
}
.cmp-stars { color: var(--c-acc); }

.edit-big {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  color: var(--c-text);
  max-width: 900px;
  margin: 0 auto;
}
.edit-big-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  background: var(--c-bg-soft);
  border-bottom: 1px solid var(--c-line);
}
.edit-big-bar h3 { font-size: 1.6rem; margin-bottom: 4px; }
.edit-big-bar .rating-inline { color: var(--c-acc); font-weight: 700; font-size: 1.1rem; margin-left: 10px; }
.edit-big-bar .muted { color: rgba(0,0,0,.6); }
.edit-big-body { padding: 32px; }
.edit-big-body .bullets { list-style: none; padding: 0; margin-bottom: 20px; }
.edit-big-body .bullets li {
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.edit-big-body .bullets i { color: var(--c-acc); margin-top: 5px; }
.edit-big-body p { margin-bottom: 20px; color: rgba(0,0,0,.75); }

.meth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.meth-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  padding: 32px;
  border-radius: var(--radius);
}
.sec-light .meth-card {
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow);
}
.meth-num {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--c-acc);
  line-height: 1;
  margin-bottom: 16px;
}
.meth-card h3 { margin-bottom: 10px; }
.meth-card p { color: var(--c-muted); font-size: .95rem; }
.sec-light .meth-card p { color: rgba(0,0,0,.65); }

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.guide-card {
  background: #fff;
  color: var(--c-text);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: var(--c-text); }
.guide-tag {
  display: inline-block;
  background: var(--c-bg-soft);
  color: var(--c-acc-dark);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 14px;
  align-self: flex-start;
}
.guide-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.guide-card p { color: rgba(0,0,0,.65); font-size: .95rem; flex-grow: 1; margin-bottom: 16px; }
.link-arrow {
  color: var(--c-acc-dark);
  font-weight: 600;
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--ff);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--c-text);
}
.faq-q:hover { color: var(--c-acc); }
.faq-q i { transition: transform .25s; color: var(--c-acc); flex-shrink: 0; }
.faq-q.open i { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a p { padding: 0 24px 22px; color: rgba(0,0,0,.7); margin: 0; }

.reg-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  padding: 30px 0;
}
.reg-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--c-text);
  padding: 10px 18px;
  border-radius: 50px;
  font-weight: 500;
  font-size: .92rem;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow);
}
.reg-pill:hover { color: var(--c-acc); border-color: var(--c-acc); }
.reg-pill i { color: var(--c-acc); }

.rev-head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
}
.rev-head h1 { font-size: 2.4rem; margin-bottom: 8px; }
.rating-line {
  font-size: 1.1rem;
  color: var(--c-muted);
  margin-bottom: 8px;
}
.rating-line strong { color: var(--c-acc); font-size: 1.3rem; }
.byline {
  font-size: .92rem;
  color: var(--c-muted);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.sec-light .byline { color: rgba(0,0,0,.55); }
.byline i { color: var(--c-acc); }

.proc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.proc-col {
  padding: 32px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.proc-col h2 {
  font-size: 1.4rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.proc-pro h2 i { color: #2a8c7a; }
.proc-con h2 i { color: #c44a4a; }
.proc-col ul { padding-left: 22px; }
.proc-col li { color: rgba(0,0,0,.75); margin-bottom: 8px; }

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.fact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--c-line);
}
.fact:nth-last-child(-n+2) { border-bottom: none; }
.fact-l { color: rgba(0,0,0,.6); font-size: .92rem; }
.fact-v { font-weight: 600; text-align: right; }

.rev-body { max-width: 820px; margin: 0 auto; }
.rev-body h2 { margin-top: 32px; }
.rev-body h2:first-child { margin-top: 0; }
.rev-body p { color: rgba(0,0,0,.78); }
.rev-body .lead { font-size: 1.12rem; color: rgba(0,0,0,.85); margin-bottom: 28px; }

.score { display: flex; flex-direction: column; gap: 14px; max-width: 820px; margin: 0 auto; }
.score-row {
  display: grid;
  grid-template-columns: 220px 1fr 50px;
  gap: 16px;
  align-items: center;
  color: #fff;
}
.score-row > span:first-child { font-size: .94rem; }
.score-row strong { color: var(--c-acc); text-align: right; font-weight: 700; }
.score-bar {
  display: block;
  height: 8px;
  background: rgba(255,255,255,.1);
  border-radius: 4px;
  overflow: hidden;
}
.score-bar > span {
  display: block;
  height: 100%;
  background: var(--c-acc);
  border-radius: 4px;
}
.score-final {
  max-width: 820px;
  margin: 32px auto 0;
  padding: 20px 28px;
  background: var(--c-acc);
  border-radius: var(--radius-sm);
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
}
.score-final strong { font-size: 1.6rem; }

.alt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 16px;
}
.alt-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  color: var(--c-text);
  transition: transform .2s;
}
.alt-card:hover { transform: translateY(-3px); color: var(--c-text); }
.alt-card strong { display: block; font-size: 1.05rem; margin-bottom: 2px; }
.alt-card span { font-size: .85rem; color: rgba(0,0,0,.55); }

.editor-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 20px 0 40px;
}
.editor-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-acc);
  color: #fff;
  font-weight: 700;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.editor-card h3 { margin-bottom: 6px; }
.editor-card .muted { font-weight: 500; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.contact-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.contact-card h3 i { color: var(--c-acc); }

.ck-table { display: flex; flex-direction: column; gap: 16px; margin: 20px 0; }
.ck-cat {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.ck-cat h3 { color: var(--c-acc); margin-bottom: 8px; }
code {
  background: var(--c-bg-soft);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: .88em;
}

.ft {
  background: var(--c-dark);
  color: var(--c-muted);
  padding: 60px 0 20px;
}
.ft a { color: var(--c-muted); }
.ft a:hover { color: var(--c-acc); }
.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.ft-brand .hd-logo { color: #fff; display: inline-block; margin-bottom: 14px; }
.ft-tag { font-size: .92rem; line-height: 1.6; }
.ft-col h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.ft-col a { display: block; padding: 4px 0; font-size: .92rem; }
.ft-addr { font-size: .9rem; line-height: 1.7; }

.risk-strip {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: .86rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 24px 0;
}
.risk-strip i { color: var(--c-acc); font-size: 1.1rem; margin-top: 2px; }

.ft-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  text-align: center;
  font-size: .85rem;
}

.ck {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 3px solid var(--c-acc);
  box-shadow: 0 -8px 30px rgba(0,0,0,.15);
  z-index: 200;
  padding: 24px 0;
}
.ck-head h3 { font-size: 1.15rem; margin-bottom: 8px; }
.ck-head p { color: rgba(0,0,0,.7); margin-bottom: 16px; font-size: .95rem; }
.ck-prefs { display: flex; flex-direction: column; gap: 12px; margin: 14px 0; }
.ck-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: var(--c-bg-soft);
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.ck-row input { margin-top: 4px; flex-shrink: 0; }
.ck-row span { font-size: .92rem; }
.ck-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.ck-reopen {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-lg);
  color: var(--c-text);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ck-reopen:hover { color: var(--c-acc); }

@media (max-width: 1024px) {
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
  .meth-grid, .guide-grid, .alt-grid { grid-template-columns: 1fr 1fr; }
  .alt-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .fact:nth-last-child(-n+2) { border-bottom: 1px solid var(--c-line); }
  .fact:last-child { border-bottom: none; }
  h1 { font-size: 2.3rem; }
  .hero-sm h1 { font-size: 1.9rem; }
}

@media (max-width: 768px) {
  .sec { padding: 60px 0; }
  .hero { padding: 60px 0 50px; }
  .hd-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px;
    border-bottom: 1px solid var(--c-line);
    box-shadow: var(--shadow);
  }
  .hd-nav.open { display: flex; }
  .hd-nav .hd-link, .hd-nav .hd-cta {
    padding: 14px 0;
    width: 100%;
    text-align: center;
  }
  .hd-cta { margin-top: 8px; }
  .hd-burger { display: block; }
  .ft-grid { grid-template-columns: 1fr; }
  .meth-grid, .guide-grid, .proc-grid, .contact-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .hero-sm h1, .rev-head h1 { font-size: 1.7rem; }
  .rev-head { flex-direction: column; align-items: flex-start; gap: 16px; }
  .edit-big-bar { flex-direction: column; align-items: flex-start; }
  .score-row { grid-template-columns: 1fr; gap: 6px; }
  .score-row strong { text-align: left; }
  .editor-card { flex-direction: column; }
  .ck-btns { flex-direction: column; }
  .ck-btns .btn { width: 100%; }
}

@media (max-width: 480px) {
  .wrap { padding: 0 16px; }
  .trust-bar { grid-template-columns: 1fr 1fr; gap: 20px; }
  .trust-n { font-size: 2.2rem; }
  h1 { font-size: 1.7rem; }
  .hero-chip { font-size: .82rem; padding: 6px 12px; }
}
