@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;600;700;800&display=swap");

:root {
  --bg: #f5f7fa;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #f8fafc;
  --text: #213445;
  --muted: #637383;
  --brand: #1f3b52;
  --brand-2: #3e6987;
  --accent: #ca8a46;
  --accent-strong: #b67531;
  --accent-soft: rgba(202, 138, 70, 0.14);
  --line: rgba(31, 59, 82, 0.08);
  --shadow: 0 18px 46px rgba(24, 37, 49, 0.08);
  --radius: 28px;
  --radius-sm: 18px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(202, 138, 70, 0.14), transparent 22%),
    radial-gradient(circle at 0% 14%, rgba(62, 105, 135, 0.06), transparent 22%),
    linear-gradient(180deg, #f8fafc 0%, #f3f6f9 100%);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
iframe {
  max-width: 100%;
  border: 0;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(22, 42, 58, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 28px rgba(10, 20, 28, 0.18);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, #0e4d78 0%, #1c6ea4 28%, #5f8aa4 54%, #ca8a46 78%, #e2a15d 100%);
}

.site-header::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(226, 161, 93, 0.22) 0%, rgba(226, 161, 93, 0) 68%);
  pointer-events: none;
}

.header-inner,
.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 86px;
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #fff;
}

.brand img {
  width: 220px;
  height: auto;
  display: block;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-switch a {
  color: rgba(255, 255, 255, 0.78);
  padding: 6px 2px;
}

.lang-switch a.active,
.lang-switch a:hover {
  color: #ffffff;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav a {
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.nav a.active,
.nav a:hover {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 22px rgba(182, 117, 49, 0.28);
}

.page {
  padding: 54px 0 88px;
}

.hero,
.panel,
.card,
.feature,
.video-box,
.note,
.page-head {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(62, 105, 135, 0.12);
}

.hero::after {
  content: "";
  position: absolute;
  right: -110px;
  top: -70px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(202, 138, 70, 0.12) 0%, rgba(202, 138, 70, 0) 70%);
  pointer-events: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  padding: 38px;
}

.eyebrow,
.section-title small {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--brand-2);
  font-weight: 800;
}

.eyebrow::before,
.section-title small::before {
  content: "";
  width: 48px;
  height: 1px;
  background: rgba(62, 105, 135, 0.45);
}

.hero h1,
.section-title h2,
.page-head h1 {
  margin: 18px 0 16px;
  font-size: clamp(1.75rem, 2.8vw, 2.6rem);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero p,
.page-head p,
.section-title p,
.card p,
.panel p,
.feature p,
.note p {
  color: var(--muted);
  line-height: 1.76;
  font-size: 0.99rem;
}

.hero-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.hero-list li {
  position: relative;
  padding-left: 20px;
  line-height: 1.72;
}

.hero-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(202, 138, 70, 0.12);
}

.grid-3,
.grid-2,
.highlights {
  display: grid;
  gap: 18px;
}

.highlights {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.highlight {
  padding: 24px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.96)),
    linear-gradient(135deg, rgba(62, 105, 135, 0.04), rgba(202, 138, 70, 0.05));
  border: 1px solid rgba(62, 105, 135, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.highlight strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.highlight:hover {
  transform: translateY(-2px);
  border-color: rgba(202, 138, 70, 0.42);
  box-shadow: 0 20px 34px rgba(182, 117, 49, 0.11);
}

.panel {
  padding: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94));
}

.social-list,
.link-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.social-list li,
.link-list li {
  padding: 16px 0 0;
  border-top: 1px solid var(--line);
}

.social-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 14px;
  align-items: start;
  min-width: 0;
}

.social-list li:first-child,
.link-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.social-list strong,
.link-list strong {
  display: block;
  margin-bottom: 4px;
}

.social-copy {
  min-width: 0;
}

.social-copy a,
.social-copy strong {
  overflow-wrap: anywhere;
}

.social-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(62, 105, 135, 0.14), rgba(202, 138, 70, 0.14));
  color: var(--brand);
  font-size: 1rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  display: block;
}

.section {
  margin-top: 44px;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-teaser {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.05fr);
  gap: 28px;
  align-items: stretch;
  padding: 0;
}

.news-teaser + .news-teaser {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.news-stack {
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(248, 250, 252, 0.9));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
}

.news-image {
  display: block;
  min-height: 100%;
  overflow: hidden;
  border-radius: 22px;
  background: #dce5ec;
}

.news-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.news-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.news-copy h3 {
  margin: 18px 0 14px;
  font-size: clamp(1.8rem, 2.4vw, 2.5rem);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: -0.02em;
}

.news-copy p {
  margin: 0;
}

.feature,
.card,
.video-box,
.note {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
}

.feature h3,
.card h3,
.video-box h3,
.note h3 {
  margin: 0 0 10px;
  font-size: 1.28rem;
  font-weight: 700;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.button.alt {
  background: transparent;
  border: 1px solid rgba(31, 59, 82, 0.18);
  color: var(--brand);
}

.button:hover {
  background: var(--accent);
  box-shadow: 0 16px 30px rgba(182, 117, 49, 0.22);
  transform: translateY(-2px);
}

.button.alt {
  background: #ffffff;
}

.button.alt:hover {
  background: var(--accent-soft);
  border-color: rgba(202, 138, 70, 0.5);
  color: var(--accent-strong);
  box-shadow: none;
}

.social-list a,
.link-list a,
.footer a {
  transition: color 0.18s ease;
}

.social-list a:hover,
.link-list a:hover,
.footer a:hover {
  color: var(--accent-strong);
}

.feature,
.card,
.video-box,
.note {
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.feature:hover,
.card:hover,
.video-box:hover,
.note:hover {
  border-color: rgba(202, 138, 70, 0.35);
  box-shadow: 0 20px 36px rgba(31, 59, 82, 0.09);
  transform: translateY(-2px);
}

.video-frame {
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  background: #dce5ec;
  margin-top: 18px;
}

.video-preview {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 20px;
  margin: 18px 0 16px;
  background: #dce5ec;
}

.video-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-head {
  padding: 34px;
  margin-bottom: 32px;
}

.page-head.compact {
  margin-bottom: 24px;
}

.page-head .lead-stack {
  display: grid;
  gap: 10px;
}

.soft-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.94rem;
}

.simple-message {
  text-align: center;
  padding: 32px 28px;
}

.downloads-list,
.video-list {
  display: grid;
  gap: 22px;
}

.download-item,
.video-item,
.expert-card,
.legal-copy {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.download-item {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  gap: 26px;
  padding: 24px;
  align-items: center;
}

.download-item + .download-item {
  margin-top: 0;
}

.download-thumb,
.video-thumb,
.expert-image {
  display: block;
  overflow: hidden;
  border-radius: 22px;
  background: #dce5ec;
}

.download-thumb img,
.video-thumb img,
.expert-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.download-thumb img {
  min-height: 220px;
}

.download-copy h2,
.download-copy h3,
.video-item h3,
.expert-card h3,
.legal-copy h2 {
  margin: 0 0 12px;
}

.download-copy h2,
.download-copy h3 {
  font-size: 1.6rem;
  line-height: 1.15;
}

.download-copy p,
.video-item p,
.expert-card p,
.legal-copy p,
.legal-copy li {
  color: var(--muted);
  line-height: 1.72;
}

.expert-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.expert-sidebar,
.legal-copy {
  padding: 28px;
}

.expert-sidebar {
  position: sticky;
  top: 108px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 0.94));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.expert-sidebar h3,
.legal-copy h3,
.legal-copy h4 {
  margin: 0 0 10px;
}

.expert-sidebar h4,
.legal-copy h5 {
  margin: 22px 0 10px;
}

.expert-sidebar p:last-child,
.legal-copy p:last-child {
  margin-bottom: 0;
}

.expert-filter {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.expert-filter a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(62, 105, 135, 0.08);
  color: var(--brand);
  font-size: 0.92rem;
  transition: background 0.18s ease, color 0.18s ease;
}

.expert-filter a.active,
.expert-filter a:hover {
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.expert-grid {
  display: grid;
  gap: 20px;
}

.expert-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 22px;
  padding: 22px;
  align-items: stretch;
}

.expert-image img {
  min-height: 100%;
}

.expert-image img.expert-image-focus-nicole {
  transform: scale(1.22);
  transform-origin: 50% 34%;
}

.expert-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.meta-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(202, 138, 70, 0.12);
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.expert-meta p {
  margin: 0;
}

.video-list {
  margin-top: 24px;
}

.video-item {
  display: grid;
  grid-template-columns: minmax(180px, 260px) minmax(0, 1fr);
  gap: 20px;
  padding: 22px;
  align-items: center;
}

.video-thumb {
  aspect-ratio: 16 / 9;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

.video-meta span {
  margin-top: 0;
}

.video-meta .meta-badge {
  font-size: 0.72rem;
}

.legal-shell {
  display: grid;
  gap: 22px;
}

.legal-copy ul {
  padding-left: 22px;
}

.legal-copy a {
  color: var(--accent-strong);
}

.legal-copy a:hover {
  color: var(--brand);
}

.product-hero {
  display: grid;
  gap: 26px;
}

.product-shell {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(248, 250, 252, 0.92));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
}

.product-cover {
  overflow: hidden;
  border-radius: var(--radius);
  background: #dce5ec;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  max-width: 760px;
  margin: 0 auto;
}

.product-cover img {
  width: 100%;
  display: block;
}

.product-cover-wide {
  max-width: 980px;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) auto;
  gap: 18px;
  align-items: center;
  padding: 26px 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-shell .page-head,
.product-shell .cta-card,
.product-shell .order-copy {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding-left: 0;
  padding-right: 0;
}

.product-shell .page-head {
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.product-shell .cta-card,
.product-shell .order-copy {
  border-radius: 0;
}

.product-shell .order-copy {
  padding-top: 28px;
  padding-bottom: 0;
  border-top: 1px solid var(--line);
}

.cta-copy h2,
.order-copy h2,
.order-copy h3 {
  margin: 0 0 10px;
}

.cta-copy p,
.order-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.74;
}

.cta-copy p + h2,
.cta-copy p + p,
.order-copy p + p,
.order-copy h2 + h3,
.order-copy h3 + p {
  margin-top: 10px;
}

.order-copy {
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.paypal-box {
  margin-top: 24px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(62, 105, 135, 0.05);
  border: 1px solid rgba(62, 105, 135, 0.12);
}

.paypal-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.paypal-button input[type="image"] {
  display: block;
}

.article-shell {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(248, 250, 252, 0.92));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow);
}

.article-grid {
  display: grid;
  gap: 26px;
}

.article-grid .page-head {
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.article-intro,
.article-section,
.tool-grid,
.prompt-list,
.blocked-list {
  background: transparent;
}

.article-intro,
.article-section {
  padding: 0;
}

.article-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.article-lead-image {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: #dce5ec;
}

.article-lead-image img {
  width: 100%;
  display: block;
}

.article-intro-copy p:first-child {
  margin-top: 0;
}

.article-intro-copy p:last-child {
  margin-bottom: 0;
}

.article-intro p,
.article-section p,
.article-section li {
  color: var(--muted);
  line-height: 1.76;
}

.article-emphasis,
.article-emphasis li {
  color: var(--brand);
  font-weight: 700;
}

.article-section + .article-section {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.article-section h2 {
  margin: 0 0 12px;
  font-size: 1.55rem;
}

.article-section h3 {
  margin: 18px 0 10px;
  font-size: 1.12rem;
}

.supported-pages {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.15fr);
  gap: 26px;
  align-items: center;
}

.supported-pages-copy p {
  margin-bottom: 0;
}

.supported-pages-image {
  margin: 0;
}

.supported-pages-image img {
  width: 100%;
  display: block;
  border-radius: 22px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(31, 59, 82, 0.12);
}

.supported-pages-image figcaption {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.article-list,
.article-bullets,
.prompt-list,
.blocked-list {
  margin: 16px 0 0;
  padding-left: 20px;
}

.article-list li,
.article-bullets li,
.prompt-list li,
.blocked-list li {
  margin: 8px 0;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.tool-card,
.shot-placeholder,
.account-card,
.discord-card {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
}

.tool-card h3,
.account-card h3,
.discord-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.tool-card p,
.account-card p,
.discord-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.shot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.shot-placeholder {
  min-height: 220px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--brand-2);
  background:
    linear-gradient(135deg, rgba(62, 105, 135, 0.08), rgba(202, 138, 70, 0.08)),
    repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.55) 0, rgba(255, 255, 255, 0.55) 12px, rgba(245, 247, 250, 0.95) 12px, rgba(245, 247, 250, 0.95) 24px);
}

.shot-placeholder strong {
  display: block;
  margin-bottom: 8px;
}

.tools-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
}

.tools-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.tools-table th,
.tools-table td {
  padding: 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.tools-table th {
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(62, 105, 135, 0.06);
}

.tools-table td {
  color: var(--muted);
  line-height: 1.58;
}

.tools-table td:first-child {
  color: var(--text);
  font-weight: 700;
}

.tools-table tr:last-child td {
  border-bottom: 0;
}

.tools-table a {
  color: var(--accent-strong);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.tools-table a:hover {
  color: var(--brand);
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.account-card.ok {
  border-color: rgba(67, 145, 94, 0.22);
  background: linear-gradient(180deg, rgba(239, 248, 242, 0.96), rgba(248, 250, 252, 0.95));
}

.account-card.no {
  border-color: rgba(177, 88, 78, 0.2);
  background: linear-gradient(180deg, rgba(252, 243, 241, 0.96), rgba(248, 250, 252, 0.95));
}

.account-state {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.account-card.ok .account-state {
  background: rgba(67, 145, 94, 0.12);
  color: #2e6d45;
}

.account-card.no .account-state {
  background: rgba(177, 88, 78, 0.12);
  color: #9a4a42;
}

.discord-card {
  margin-top: 18px;
}

.discord-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.discord-heading h3 {
  margin: 0;
}

.discord-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: #5865f2;
  color: #ffffff;
}

.discord-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: block;
}

.discord-invite {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(88, 101, 242, 0.08);
  border: 1px solid rgba(88, 101, 242, 0.16);
}

.discord-invite a {
  color: var(--brand);
  font-weight: 700;
}

.discord-invite a:hover {
  color: var(--accent-strong);
}

.course-lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 26px;
  align-items: start;
}

.course-facts {
  display: grid;
  gap: 7px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
}

.course-facts strong {
  color: var(--brand);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.course-facts span {
  color: var(--muted);
  line-height: 1.5;
}

.course-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.course-audience span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(62, 105, 135, 0.08);
  color: var(--brand);
  font-weight: 700;
  font-size: 0.88rem;
}

.course-download-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
}

.course-download-strip p {
  margin: 0;
}

.course-download-strip p + p {
  margin-top: 8px;
}

.course-download-strip a:not(.button) {
  color: var(--accent-strong);
  font-weight: 700;
}

.course-download-strip a:not(.button):hover {
  color: var(--brand);
}

.course-download-strip .button-row {
  margin-top: 0;
  flex: 0 0 auto;
}

.course-module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.course-module {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.95));
}

.course-module h3 {
  margin-top: 0;
}

.course-module p {
  margin-bottom: 0;
}

.course-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.course-gallery-item {
  margin: 0;
}

.course-gallery-item img {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(31, 59, 82, 0.1);
}

.course-gallery-item figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.footer {
  padding: 44px 0 56px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.footer-col {
  display: grid;
  gap: 3px;
  min-width: 220px;
}

.footer-col strong {
  margin-bottom: 4px;
  color: var(--text);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col span {
  margin-top: 6px;
}

.footer-link,
.footer-social {
  display: inline-grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.footer-link-plain {
  grid-template-columns: 1fr;
}

.footer-link + .footer-link,
.footer-social + .footer-social {
  padding-top: 1px;
}

.footer-link-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(62, 105, 135, 0.08);
  color: var(--accent-strong);
  font-size: 0.82rem;
  line-height: 1;
}

.footer .social-icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  font-size: 0.8rem;
}

.footer .social-icon svg {
  width: 12px;
  height: 12px;
}

@media (max-width: 980px) {
  .hero,
  .grid-2,
  .grid-3,
  .highlights,
  .news-teaser,
  .download-item,
  .video-item,
  .expert-card,
  .expert-shell,
  .cta-card,
  .article-intro,
  .supported-pages,
  .course-lead,
  .course-download-strip,
  .course-module-grid,
  .course-gallery,
  .tool-grid,
  .shot-grid,
  .account-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    padding: 16px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .lang-switch {
    margin-top: -2px;
  }

  .brand img {
    width: 190px;
  }

  .news-image img {
    min-height: 240px;
  }

  .expert-sidebar {
    position: static;
  }
}
