@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,600;12..96,700;12..96,800&family=Outfit:wght@400;500;600;700&display=swap');

:root {
  --bg: #eef3f0;
  --bg-2: #e4ebe6;
  --surface: #f8faf8;
  --ink: #14201b;
  --ink-soft: #2c3b34;
  --muted: #5d6f66;
  --line: #c5d1cb;
  --accent: #0d6b4c;
  --accent-bright: #14936a;
  --accent-soft: #d8efe5;
  --max: 1180px;
  --nav-h: 78px;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Outfit', sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(circle at 92% 8%, rgba(20, 147, 106, 0.11), transparent 34%),
    radial-gradient(circle at 8% 18%, rgba(20, 32, 27, 0.045), transparent 32%),
    linear-gradient(180deg, #f5f8f6 0%, var(--bg) 46%, var(--bg-2) 100%);
  min-height: 100vh;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 2.25rem, var(--max));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 100;
  background: rgba(248, 250, 248, 0.92);
  border-bottom: 1px solid var(--line);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--nav-h);
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 50% 50% 42% 50%;
  background: var(--ink);
  color: #e8fff4;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 18px rgba(20, 32, 27, 0.16);
}

.brand-mark svg {
  width: 20px;
  height: 20px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.12rem;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
}

.brand-name em {
  font-style: normal;
  color: var(--accent);
}

.brand-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1.5px solid var(--ink);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(20, 32, 27, 0.04);
}

.nav-menu a {
  display: inline-block;
  padding: 0.58rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  border-radius: 999px;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  outline: none;
}

.nav-menu a.active {
  color: #fff;
  background: var(--ink);
}

.hero {
  position: relative;
  padding: 2.6rem 0 2.4rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  width: min(52vw, 520px);
  height: min(52vw, 520px);
  right: -8%;
  top: -28%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 147, 106, 0.16), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 40rem;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.8vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 0.95rem;
}

.hero h1 span {
  color: var(--accent);
}

.hero h2 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  line-height: 1.65;
  color: var(--muted);
  max-width: 36rem;
}

.hero-line {
  margin-top: 1.35rem;
  width: 72px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent-bright), transparent);
}

.listing {
  position: relative;
  padding: 0.5rem 0 3.5rem;
}

.listing-head {
  margin-bottom: 1.35rem;
}

.listing-kicker {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.45rem;
}

.listing-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--ink);
}

.offer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.offer {
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(244, 249, 246, 0.96) 100%);
  box-shadow: 0 14px 34px rgba(20, 32, 27, 0.05);
  overflow: hidden;
}

.offer:nth-child(1) {
  border-color: rgba(13, 107, 76, 0.35);
  box-shadow: 0 16px 36px rgba(13, 107, 76, 0.1);
}

.offer-row {
  display: grid;
  grid-template-columns: 64px 92px minmax(140px, 1.15fr) minmax(180px, 1.35fr) 110px 168px;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
}

.offer-rank span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent);
}

.offer:nth-child(1) .offer-rank span {
  background: var(--ink);
  color: #e8fff4;
}

.offer-media {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(20, 32, 27, 0.45);
  background:
    linear-gradient(145deg, #1a2822 0%, #0f1713 100%);
  display: grid;
  place-items: center;
}

.offer-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.45rem;
}

.offer-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.28rem;
}

.offer-name strong,
.offer-bonus strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.25;
}

.offer-bonus strong {
  font-size: 0.98rem;
  color: var(--ink-soft);
}

.score-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 0.15rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: var(--ink);
  color: #e8fff4;
  width: fit-content;
}

.score-pill b {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #7dffc0;
}

.score-pill small {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.65;
}

.offer-cta {
  display: flex;
  justify-content: flex-end;
}

.btn-visit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.15rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 22px rgba(13, 107, 76, 0.22);
  transition: transform 0.15s ease, filter 0.15s ease;
  text-align: center;
  width: 100%;
}

.btn-visit:hover,
.btn-visit:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-1px);
  outline: none;
}

.offer-disclaimer {
  padding: 0.7rem 1.15rem 0.85rem;
  border-top: 1px dashed rgba(93, 111, 102, 0.35);
  background: rgba(20, 32, 27, 0.03);
}

.offer-disclaimer p {
  font-size: 0.72rem;
  line-height: 1.45;
  color: var(--muted);
}

@media (max-width: 1100px) {
  .offer-row {
    grid-template-columns: 56px 78px minmax(120px, 1fr) minmax(150px, 1.2fr) 96px 150px;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
  }

  .offer-media {
    width: 72px;
    height: 72px;
  }

  .offer-rank span {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
    border-radius: 14px;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.85rem 1rem 1.1rem;
    border-radius: 0;
    background: #f8faf8;
    border-bottom: 1px solid var(--line);
    display: none;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border-radius: 12px;
  }

  .nav-menu a.active {
    background: var(--accent);
  }

  .hero {
    padding: 1.7rem 0 2rem;
  }

  .offer-row {
    grid-template-columns: 48px 68px 1fr;
    grid-template-areas:
      "rank media name"
      "rank media bonus"
      "score score cta";
    gap: 0.65rem 0.75rem;
  }

  .offer-rank { grid-area: rank; align-self: start; }
  .offer-media { grid-area: media; }
  .offer-name { grid-area: name; }
  .offer-bonus { grid-area: bonus; }
  .offer-score { grid-area: score; align-self: center; }
  .offer-cta { grid-area: cta; }

  .offer-media {
    width: 64px;
    height: 64px;
    border-radius: 14px;
  }

  .offer-rank span {
    width: 42px;
    height: 42px;
    font-size: 1.15rem;
  }

  .offer-name strong {
    font-size: 1rem;
  }

  .offer-bonus strong {
    font-size: 0.92rem;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 1rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand-tag {
    display: none;
  }

  .hero h1 {
    font-size: 1.9rem;
  }

  .offer-row {
    grid-template-columns: 42px 58px 1fr;
    padding: 0.85rem;
  }

  .offer-disclaimer {
    padding: 0.65rem 0.85rem 0.8rem;
  }

  .btn-visit {
    min-height: 44px;
    font-size: 0.82rem;
    padding: 0.65rem 0.8rem;
  }

  .footer-badges {
    gap: 0.55rem;
  }

  .footer-badges a {
    width: 100px;
    height: 44px;
    padding: 0.3rem;
  }

  .tip-row {
    grid-template-columns: 1fr;
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions button {
    flex: 1;
  }
}

.section-kicker {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.content-block {
  padding: 3rem 0;
}

.content-block-alt {
  background: rgba(255, 255, 255, 0.45);
  border-block: 1px solid var(--line);
}

.content-intro {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.content-intro.narrow {
  max-width: 36rem;
}

.content-block h2,
.split-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.content-intro p,
.split-content p {
  color: var(--muted);
  font-size: 1.02rem;
}

.split-content p + p {
  margin-top: 0.75rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-item {
  padding: 1.15rem 1.1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(248, 250, 248, 0.9);
}

.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.feature-item p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.split-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.split-content.reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.check-list li {
  position: relative;
  padding: 0.85rem 1rem 0.85rem 2.6rem;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0.95rem;
  top: 1.05rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent-bright);
}

.tip-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.tip-card {
  padding: 1.2rem 1.15rem;
  border-radius: 18px;
  background: var(--ink);
  color: #e7f3ec;
}

.tip-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.tip-card p {
  font-size: 0.9rem;
  color: rgba(231, 243, 236, 0.72);
  line-height: 1.5;
}

.score-guide {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.score-guide > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.score-guide span {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.score-guide p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.site-footer {
  background: #0f1713;
  color: #c9d7d0;
  padding: 2.75rem 0 1.5rem;
  margin-top: 1rem;
}

.site-footer a {
  color: #e8fff4;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #7dffc0;
  outline: none;
}

.footer-responsibility {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
  align-items: center;
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(201, 215, 208, 0.16);
}

.footer-resp-copy h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #f3faf7;
  margin-bottom: 0.55rem;
}

.footer-resp-copy p {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #a9bdb4;
}

.footer-resp-copy strong {
  color: #7dffc0;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: flex-end;
}

.footer-badges a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 52px;
  padding: 0.4rem 0.55rem;
  border-radius: 12px;
  background: transparent;
  border: none;
}

.footer-badges img {
  max-height: 34px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
  color: #f3faf7;
  display: inline-block;
  margin-bottom: 0.55rem;
}

.footer-brand em {
  font-style: normal;
  color: #7dffc0;
}

.footer-brand-col p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #a9bdb4;
  max-width: 18rem;
}

.footer-grid h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7dffc0;
  margin-bottom: 0.75rem;
}

.footer-grid ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-grid li a {
  font-size: 0.9rem;
  color: #c9d7d0;
}

.footer-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-note {
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 215, 208, 0.12);
}

.footer-note h4 {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: #f3faf7;
  margin-bottom: 0.45rem;
}

.footer-note p {
  font-size: 0.75rem;
  line-height: 1.5;
  color: #97aba2;
}

.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid rgba(201, 215, 208, 0.14);
}

.footer-bottom p {
  font-size: 0.78rem;
  color: #7f9289;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 30% 20%, rgba(20, 147, 106, 0.22), transparent 40%),
    rgba(8, 14, 11, 0.92);
}

.age-gate[hidden] {
  display: none;
}

.age-gate-card,
.age-gate-restricted {
  width: min(100%, 440px);
  padding: 1.75rem 1.5rem;
  border-radius: 22px;
  background: #f8faf8;
  border: 1px solid var(--line);
  text-align: center;
}

.age-gate-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
  color: var(--ink);
}

.age-gate-brand em {
  font-style: normal;
  color: var(--accent);
}

.age-gate-card h2,
.age-gate-restricted h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.55rem;
}

.age-gate-copy,
.age-gate-restricted p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.age-gate-actions {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.btn-age-yes,
.btn-age-no,
.btn-cookie-accept,
.btn-cookie-reject {
  min-height: 46px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
}

.btn-age-yes,
.btn-cookie-accept {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  color: #fff;
}

.btn-age-no,
.btn-cookie-reject {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}

body.age-locked #site-wrap {
  display: none;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9000;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner-inner {
  width: min(100%, 720px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem;
  border-radius: 16px;
  background: #14201b;
  color: #d7e6df;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(125, 255, 192, 0.18);
}

.cookie-banner-inner p {
  font-size: 0.86rem;
  line-height: 1.45;
}

.cookie-banner-inner a {
  color: #7dffc0;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-cookie-accept,
.btn-cookie-reject {
  padding: 0.55rem 1rem;
  min-height: 40px;
}

.btn-cookie-reject {
  border-color: rgba(215, 230, 223, 0.45);
  color: #d7e6df;
}

@media (max-width: 980px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-content,
  .split-content.reverse,
  .footer-responsibility,
  .footer-grid,
  .footer-notes {
    grid-template-columns: 1fr;
  }

  .footer-badges {
    justify-content: flex-start;
  }

  .score-guide > div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
}

@media (max-width: 860px) {
  .feature-grid,
  .tip-row {
    grid-template-columns: 1fr;
  }
}

.page-hero {
  padding: 2.2rem 0 1.4rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 0.7rem;
}

.page-hero h1 span {
  color: var(--accent);
}

.page-hero p {
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.page-body {
  padding: 0 0 3.25rem;
}

.page-panel {
  max-width: 760px;
  padding: 1.5rem 1.4rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(248, 250, 248, 0.92);
}

.page-panel h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 1.35rem 0 0.55rem;
  color: var(--ink);
}

.page-panel h2:first-child {
  margin-top: 0;
}

.page-panel p,
.page-panel li {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.page-panel p + p {
  margin-top: 0.75rem;
}

.page-panel ul {
  margin: 0.55rem 0 0.85rem 1.15rem;
}

.page-panel li + li {
  margin-top: 0.35rem;
}

.page-panel a {
  color: var(--accent);
  text-decoration: underline;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  background: var(--ink);
  color: #e8fff4 !important;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 1rem;
}

.contact-email:hover,
.contact-email:focus-visible {
  color: #7dffc0 !important;
  outline: none;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.about-points article {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.about-points h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.about-points p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 700px) {
  .about-points {
    grid-template-columns: 1fr;
  }

  .page-panel {
    padding: 1.2rem 1rem;
  }
}
