:root {
  --paper: #f4f1e9;
  --paper-bright: #fffdf7;
  --ink: #18231f;
  --muted: #66706b;
  --signal: #ef5d3d;
  --signal-dark: #bd3f27;
  --mint: #b7e4d4;
  --lime: #d8ef78;
  --sky: #b8d8f0;
  --line: #c9cec6;
  --night: #15251f;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", Arial, sans-serif;
  --header-height: 76px;
  --shadow-soft: 12px 12px 28px rgba(28, 46, 38, .1), -8px -8px 22px rgba(255, 255, 255, .78);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font: 400 1rem/1.7 var(--font-body);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .45;
  background-image:
    radial-gradient(circle at 20% 10%, var(--mint), transparent 30%),
    radial-gradient(circle at 90% 30%, var(--sky), transparent 30%),
    radial-gradient(circle at 50% 90%, #f4c5a3, transparent 28%);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-underline-offset: .2em; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.et-shell { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.et-narrow { width: min(780px, calc(100% - 40px)); margin-inline: auto; }
.et-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  border-bottom: 1px solid rgba(24, 35, 31, .14);
  background: rgba(244, 241, 233, .88);
  backdrop-filter: blur(18px);
}
.et-header__row {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.et-logo {
  display: inline-flex;
  gap: .18rem;
  align-items: center;
  font: 900 1.55rem/1 var(--font-display);
  text-decoration: none;
  letter-spacing: -.06em;
}
.et-logo span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--signal);
  color: white;
  letter-spacing: -.08em;
}
.et-nav { display: flex; align-items: center; gap: 1.5rem; }
.et-nav a { font-weight: 700; font-size: .9rem; text-decoration: none; }
.et-nav a:hover { color: var(--signal-dark); }
.et-menu {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper-bright);
}
.et-menu i { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--ink); transition: .2s; }
.et-hero { padding: clamp(5rem, 10vw, 9rem) 0 5rem; overflow: hidden; }
.et-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}
.et-kicker {
  margin: 0 0 1rem;
  color: var(--signal-dark);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.et-hero h1,
.et-page-hero h1,
.et-article h1 {
  margin: 0;
  font: 900 clamp(3.2rem, 7.5vw, 7rem)/.91 var(--font-display);
  letter-spacing: -.07em;
}
.et-hero h1 em { color: var(--signal); font-style: normal; }
.et-hero__lead {
  max-width: 680px;
  margin: 2rem 0 0;
  color: #44514b;
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}
.et-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2rem;
}
.et-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  padding: .75rem 1.25rem;
  border: 0;
  border-radius: 14px;
  background: var(--signal);
  box-shadow: 0 5px 0 var(--signal-dark);
  color: white;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .16s, box-shadow .16s;
}
.et-button:hover { transform: translateY(2px); box-shadow: 0 3px 0 var(--signal-dark); }
.et-button--small { min-height: 38px; padding: .45rem .8rem; border-radius: 10px; }
.et-button--light {
  background: var(--paper-bright);
  color: var(--night);
  box-shadow: 0 5px 0 rgba(0,0,0,.25);
}
.et-text-link {
  color: var(--ink);
  font-weight: 800;
  text-decoration-color: var(--signal);
  text-decoration-thickness: 3px;
}
.et-scoreboard {
  position: relative;
  padding: 2rem;
  border: 1px solid rgba(24, 35, 31, .08);
  border-radius: 32px;
  background: rgba(255, 253, 247, .74);
  box-shadow: var(--shadow-soft);
  transform: rotate(2deg);
}
.et-scoreboard::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 34px;
  top: -18px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  background: rgba(216, 239, 120, .75);
}
.et-scoreboard > p {
  margin-top: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
}
.et-scoreboard ol { margin: 1rem 0; padding: 0; list-style: none; }
.et-scoreboard li {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: .6rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}
.et-scoreboard li span { color: var(--muted); font: 700 .8rem var(--font-body); }
.et-scoreboard li strong { font: 900 1.4rem var(--font-display); color: var(--signal-dark); }
.et-scoreboard small { color: var(--muted); }
.et-method { border-block: 1px solid var(--line); background: rgba(255,255,255,.35); }
.et-method p { max-width: 900px; margin: 0 auto; padding: 1.6rem 0; text-align: center; }
.et-ranking { padding: 7rem 0; }
.et-section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}
.et-section-head h2,
.et-features h2,
.et-faq h2,
.et-cta h2,
.et-copy h2,
.et-contact h2,
.et-blog-card h2 {
  margin: 0;
  font: 900 clamp(2rem, 4vw, 3.6rem)/1 var(--font-display);
  letter-spacing: -.05em;
}
.et-section-head > p { margin: 0; color: var(--muted); }
.et-rank-list { display: grid; gap: 2rem; }
.et-rank-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .72fr) 1.28fr;
  overflow: hidden;
  border: 1px solid rgba(24, 35, 31, .1);
  border-radius: 28px;
  background: rgba(255, 253, 247, .82);
  box-shadow: var(--shadow-soft);
}
.et-rank-card__number {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--night);
  font: 900 1.3rem var(--font-display);
  box-shadow: 0 4px 0 rgba(0,0,0,.18);
}
.et-rank-card__image {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  background: var(--sky);
}
.et-rank-card__body {
  display: flex;
  flex-direction: column;
  padding: clamp(1.5rem, 4vw, 3.2rem);
}
.et-rank-card__eyebrow {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: var(--signal-dark);
  font-weight: 800;
}
.et-rank-card__eyebrow span {
  padding: .3rem .7rem;
  border-radius: 999px;
  background: #fbe0d7;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.et-rank-card__eyebrow strong { font: 900 1.6rem var(--font-display); }
.et-rank-card h2 {
  margin: 1rem 0 .2rem;
  font: 900 clamp(2.2rem, 4vw, 3.8rem)/1 var(--font-display);
  letter-spacing: -.055em;
}
.et-rank-card__developer { margin: 0 0 1rem; color: var(--muted); font-weight: 700; }
.et-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: auto 0 1.5rem;
  padding-top: 1.5rem;
}
.et-stats div { padding: .8rem; border-left: 1px solid var(--line); }
.et-stats dt {
  color: var(--muted);
  font-size: .74rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.et-stats dd { margin: .15rem 0 0; font-weight: 800; }
.et-rank-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.et-rank-card__footer > span { max-width: 260px; color: var(--muted); font-size: .9rem; }
.et-features { padding: 6rem 0; background: var(--night); color: var(--paper); }
.et-features h2 { margin-bottom: 4rem; }
.et-feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.et-feature-grid article {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: rgba(255,255,255,.06);
}
.et-feature-grid span { color: var(--lime); font-weight: 800; }
.et-feature-grid h3 { font: 900 1.7rem var(--font-display); }
.et-feature-grid p { color: #bdc9c3; }
.et-faq { padding: 7rem 0; }
.et-faq h2 { margin-bottom: 3rem; }
.et-faq__item { border-top: 1px solid var(--line); }
.et-faq__item:last-child { border-bottom: 1px solid var(--line); }
.et-faq__item button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem 0;
  border: 0;
  background: none;
  color: var(--ink);
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}
.et-faq__item button span { font-size: 1.6rem; transition: transform .2s; }
.et-faq__item > div {
  display: grid;
  grid-template-rows: 0fr;
  transition: .25s;
}
.et-faq__item > div > p {
  overflow: hidden;
  margin: 0;
  padding: 0 0 0;
  color: var(--muted);
}
.et-faq__item.is-open > div { grid-template-rows: 1fr; }
.et-faq__item.is-open > div > p { padding-bottom: 1.2rem; }
.et-faq__item.is-open button span { transform: rotate(45deg); }
.et-cta {
  margin: 0 0 5rem;
  padding: 4rem 0;
  border-radius: 36px;
  background: linear-gradient(135deg, var(--signal), #ff8a4c 55%, #f2c14e);
  color: white;
  text-align: center;
}
.et-cta .et-shell {
  display: grid;
  justify-items: center;
  gap: 1.2rem;
}
.et-cta p { margin: 0; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.et-page-hero { padding: 6rem 0 3rem; }
.et-page-hero p:last-child { color: var(--muted); font-size: 1.15rem; }
.et-copy { padding: 0 0 6rem; }
.et-copy__grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 3rem;
}
.et-copy__grid aside {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  align-self: start;
  padding: 1.6rem;
  border-radius: 24px;
  background: rgba(255,253,247,.8);
  box-shadow: var(--shadow-soft);
}
.et-copy__grid aside p {
  margin: 0 0 .6rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  font-weight: 800;
}
.et-copy__grid aside strong {
  font: 900 2rem/1.1 var(--font-display);
}
.et-weight-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.et-weight-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}
.et-weight-list span { color: var(--signal-dark); }
.et-note {
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--signal);
  background: rgba(239, 93, 61, .08);
}
.et-legal h2 { margin-top: 2.5rem; }
.et-blog { padding: 0 0 6rem; }
.et-blog__grid { display: grid; gap: 2rem; }
.et-blog-card {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  overflow: hidden;
  border: 1px solid rgba(24, 35, 31, .1);
  border-radius: 28px;
  background: rgba(255,253,247,.82);
  box-shadow: var(--shadow-soft);
}
.et-blog-card img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; }
.et-blog-card > div { padding: 2rem; }
.et-blog-card span {
  display: inline-block;
  margin-bottom: .8rem;
  color: var(--signal-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.et-blog-card p { color: var(--muted); }
.et-contact { padding: 0 0 6rem; }
.et-contact__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 2.5rem;
}
.et-form {
  display: grid;
  gap: .7rem;
  padding: 1.8rem;
  border-radius: 28px;
  background: rgba(255,253,247,.86);
  box-shadow: var(--shadow-soft);
}
.et-form input,
.et-form select,
.et-form textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}
.et-form__status { min-height: 1.4rem; color: var(--signal-dark); font-weight: 700; }
.et-article { padding-bottom: 5rem; }
.et-article header { padding: 5rem 0 2rem; }
.et-article time { display: inline-block; margin-top: 1rem; color: var(--muted); font-weight: 700; }
.et-article__body h2 {
  margin: 2.4rem 0 1rem;
  font: 900 2rem/1.1 var(--font-display);
}
.et-article__body ul { padding-left: 1.2rem; }
.et-article__cta {
  margin: 3rem 0;
  padding: 2rem;
  border-radius: 24px;
  background: var(--night);
  color: var(--paper);
  text-align: center;
}
.et-article__cta p { margin: 0; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; }
.et-article__cta h2 { margin: .8rem 0 1.4rem; color: white; }
.et-article__nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-weight: 800;
}
.et-footer {
  margin-top: auto;
  padding: 4rem 0 2rem;
  background: #101916;
  color: #d7e0db;
}
.et-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.et-footer h2 {
  margin: 0 0 1rem;
  font: 800 1rem/1 var(--font-body);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: white;
}
.et-footer a { display: block; margin: .4rem 0; color: #d7e0db; text-decoration: none; }
.et-footer a:hover { color: var(--lime); }
.et-footer__bottom { padding-top: 1.4rem; color: #8fa099; font-size: .9rem; }
.et-cookie {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: none;
  width: min(360px, calc(100% - 2rem));
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 18px;
  background: var(--night);
  color: white;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}
.et-cookie.is-visible { display: flex; }
.et-cookie p { margin: 0; font-size: .9rem; }
.et-cookie a { color: var(--lime); }

@media (max-width: 980px) {
  .et-hero__grid,
  .et-section-head,
  .et-rank-card,
  .et-feature-grid,
  .et-copy__grid,
  .et-blog-card,
  .et-contact__grid,
  .et-footer__grid {
    grid-template-columns: 1fr;
  }
  .et-scoreboard { transform: none; }
  .et-rank-card__image { min-height: 240px; max-height: 280px; }
  .et-copy__grid aside { position: static; }
  .et-menu { display: inline-grid; place-items: center; }
  .et-nav {
    position: absolute;
    top: calc(var(--header-height) - 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.5rem;
    background: rgba(244, 241, 233, .98);
    border-bottom: 1px solid var(--line);
  }
  .et-nav.is-open { display: flex; }
  .et-nav a { padding: .9rem 0; border-bottom: 1px solid rgba(24,35,31,.08); }
  .et-header { position: sticky; }
  .et-header__row { position: relative; }
  .et-menu.is-open i:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .et-menu.is-open i:nth-child(2) { opacity: 0; }
  .et-menu.is-open i:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
}

@media (max-width: 640px) {
  .et-shell, .et-narrow { width: min(1180px, calc(100% - 28px)); }
  .et-hero h1, .et-page-hero h1, .et-article h1 { font-size: clamp(2.6rem, 12vw, 4rem); }
  .et-stats { grid-template-columns: 1fr; }
  .et-stats div { border-left: 0; border-top: 1px solid var(--line); }
  .et-rank-card__footer { flex-direction: column; align-items: stretch; }
  .et-cta { margin-inline: 14px; }
  .et-cookie { flex-direction: column; align-items: stretch; }
}
