@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Cormorant+Garamond:wght@500;600;700&family=Montserrat:wght@600;700&display=swap");

:root {
  --bg: #060606;
  --bg-soft: #0f1013;
  --surface: rgba(13, 13, 17, 0.9);
  --surface-strong: #111217;
  --surface-dark: linear-gradient(160deg, #050505 0%, #0b0c10 54%, #12141a 100%);
  --line: rgba(216, 184, 76, 0.14);
  --line-strong: rgba(216, 184, 76, 0.24);
  --text: #fbf8f1;
  --text-soft: rgba(251, 248, 241, 0.8);
  --text-faint: rgba(251, 248, 241, 0.56);
  --accent: #d8b84c;
  --accent-deep: #f0d67a;
  --accent-soft: rgba(216, 184, 76, 0.14);
  --success: #58d08a;
  --danger: #ff8b8b;
  --panel-text: #fff8e4;
  --panel-muted: rgba(255, 248, 228, 0.72);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 20px 44px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Source Sans 3", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(216, 184, 76, 0.15), transparent 24%),
    radial-gradient(circle at top right, rgba(216, 184, 76, 0.08), transparent 22%),
    linear-gradient(180deg, #020202 0%, #070809 48%, #0d0f13 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 0;
  pointer-events: none;
  filter: blur(24px);
}

body::before {
  top: -90px;
  left: -80px;
  width: 320px;
  height: 320px;
  border-radius: 999px;
  background: rgba(216, 184, 76, 0.16);
}

body::after {
  right: -110px;
  bottom: 120px;
  width: 340px;
  height: 340px;
  border-radius: 999px;
  background: rgba(216, 184, 76, 0.08);
}

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

img {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.site-shell {
  position: relative;
  min-height: 100vh;
}

.hero,
.section,
.footer {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 24px clamp(20px, 5vw, 64px) 28px;
}

.hero--compact {
  padding-bottom: 10px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1460px;
  margin: 0 auto 34px;
  padding: 14px 16px 14px 20px;
  border: 1px solid rgba(216, 184, 76, 0.14);
  border-radius: 34px;
  background: rgba(8, 8, 10, 0.84);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}

.market-ribbon {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1460px;
  margin: 0 auto 18px;
  padding: 10px 14px;
  border: 1px solid rgba(216, 184, 76, 0.12);
  border-radius: 24px;
  background: rgba(9, 10, 13, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  overflow-x: auto;
}

.market-ribbon-label {
  flex: 0 0 auto;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(216, 184, 76, 0.12);
  background: rgba(216, 184, 76, 0.08);
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.market-ribbon-items {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.market-ribbon-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 154px;
  padding: 10px 12px;
  border: 1px solid rgba(216, 184, 76, 0.12);
  border-radius: 18px;
  background: rgba(15, 16, 20, 0.94);
}

.market-ribbon-symbol {
  display: block;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 800;
}

.market-ribbon-price {
  display: block;
  color: var(--text-faint);
  font-size: 0.84rem;
}

.market-ribbon-change {
  margin-left: auto;
  font-size: 0.82rem;
  font-weight: 800;
}

.market-ribbon-change.is-up {
  color: var(--accent-deep);
}

.market-ribbon-change.is-down {
  color: var(--danger);
}

.market-ribbon-change.is-flat {
  color: var(--text-faint);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.brand-wordmark {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  position: relative;
  display: block;
  color: transparent;
  background: linear-gradient(180deg, #f6e49b 0%, #d7b74c 44%, #f4dfa0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 18px rgba(216, 184, 76, 0.16);
  font-family: "Cinzel", Georgia, serif;
  font-size: 2.02rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 0.92;
}

.brand-invest {
  display: none;
}

.brand-star {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  color: var(--accent);
  filter: drop-shadow(0 0 14px rgba(216, 184, 76, 0.2));
  transform: translateY(-2px);
}

.brand-star svg {
  display: block;
  width: 100%;
  height: 100%;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 16px;
  color: var(--text-soft);
  font-size: 1rem;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(21, 32, 61, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  box-shadow: 0 10px 20px rgba(21, 32, 61, 0.05);
}

.nav-links a.is-current {
  border-color: rgba(21, 32, 61, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
  color: var(--text);
  box-shadow: 0 12px 24px rgba(21, 32, 61, 0.08);
}

.hero-content,
.page-hero,
.highlight-grid,
.teaser-grid,
.news-grid,
.contact-card,
.newsletter-card {
  display: grid;
}

.hero-content {
  max-width: 1460px;
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 24px;
  align-items: stretch;
}

.hero-copy,
.market-panel,
.page-summary,
.page-sidecard,
.teaser-card,
.feature,
.agenda-item,
.newsletter-card,
.news-card,
.contact-copy,
.contact-form {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-copy,
.page-summary,
.page-sidecard,
.teaser-card,
.feature,
.agenda-item,
.news-card,
.contact-copy,
.contact-form {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 255, 0.9));
  backdrop-filter: blur(16px);
}

.hero-copy {
  padding: clamp(32px, 5vw, 54px);
}

.hero-copy::before,
.page-summary::before,
.feature-main::before,
.newsletter-card::before {
  content: "";
  position: absolute;
  inset: auto auto -58px -38px;
  width: 200px;
  height: 200px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.18), transparent 70%);
}

.hero-copy::after,
.page-summary::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  background: url("../img/logo-mark.svg") center/contain no-repeat;
  opacity: 0.08;
}

.eyebrow,
.section-kicker,
.tag,
.panel-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(74, 222, 128, 0.16);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-label {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
}

.hero-copy h1 {
  position: relative;
  z-index: 1;
  margin: 18px 0 18px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.92;
  max-width: 8.7ch;
}

.hero-copy p,
.page-summary p,
.page-sidecard p,
.feature p,
.news-card p,
.agenda-item p,
.newsletter-card p,
.contact-copy p,
.panel-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 18px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.button:hover,
.filter-button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  color: #08111f;
  box-shadow: 0 16px 30px rgba(34, 197, 94, 0.22);
}

.button-primary:hover {
  box-shadow: 0 20px 36px rgba(34, 197, 94, 0.28);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  box-shadow: 0 12px 24px rgba(21, 32, 61, 0.06);
}

.market-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: var(--surface-dark);
  border-color: rgba(136, 157, 204, 0.2);
}

.market-panel::before {
  content: "";
  position: absolute;
  top: -48px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.28), transparent 72%);
}

.market-panel::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: -18px;
  width: 170px;
  height: 170px;
  background: url("../img/logo-mark.svg") center/contain no-repeat;
  opacity: 0.08;
}

.panel-card,
.market-status,
.market-board {
  position: relative;
  z-index: 1;
}

.panel-card strong {
  display: block;
  margin: 16px 0 14px;
  color: var(--panel-text);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 0.98;
}

.market-panel .panel-card p {
  color: var(--panel-muted);
}

.ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ticker span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
}

.market-status {
  margin: 18px 0 14px;
  color: var(--panel-muted);
  font-size: 0.95rem;
}

.market-status[data-tone="loading"] {
  color: rgba(238, 245, 255, 0.84);
}

.market-status[data-tone="live"] {
  color: #9fe0bc;
}

.market-status[data-tone="fallback"] {
  color: #f1d29a;
}

.market-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.market-item {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.market-item-header,
.market-item-footer,
.news-meta,
.news-card-footer,
.share-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.market-item-header {
  margin-bottom: 10px;
}

.market-item-name {
  display: block;
  color: var(--panel-text);
  font-size: 1rem;
  font-weight: 700;
}

.market-item-region,
.market-item-time {
  color: rgba(227, 236, 255, 0.68);
  font-size: 0.84rem;
}

.market-item-price {
  font-family: "Space Grotesk", sans-serif;
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 700;
}

.market-item-change {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.market-item-change.is-up {
  background: rgba(35, 178, 109, 0.16);
  color: #9fe0bc;
}

.market-item-change.is-down {
  background: rgba(209, 87, 87, 0.16);
  color: #ffc1c1;
}

.market-item-change.is-flat {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
}

.section {
  padding: 28px clamp(20px, 5vw, 64px) 72px;
}

.section-heading,
.teaser-grid,
.page-hero,
.highlight-grid,
.filters,
.news-status,
.news-grid,
.agenda-list,
.newsletter-card,
.contact-card {
  max-width: 1460px;
  margin-left: auto;
  margin-right: auto;
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 12px 0 0;
  max-width: 14ch;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.96;
}

.page-hero {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 24px;
  align-items: stretch;
}

.page-summary,
.page-sidecard,
.teaser-card,
.feature,
.agenda-item,
.news-card,
.contact-copy,
.contact-form {
  padding: clamp(26px, 4vw, 34px);
}

.page-summary h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.94;
}

.page-summary p {
  max-width: 58ch;
}

.page-sidecard h2,
.contact-copy h3 {
  margin: 14px 0 12px;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  line-height: 1.02;
}

.page-bullets,
.contact-benefits {
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--text-soft);
}

.page-bullets li::marker,
.contact-benefits li::marker {
  color: var(--accent);
}

.page-bullets li + li,
.contact-benefits li + li {
  margin-top: 10px;
}

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

.teaser-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.teaser-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.teaser-meta {
  color: var(--text-faint);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.teaser-points {
  margin: 0;
  padding-left: 20px;
  color: var(--text-soft);
}

.teaser-points li::marker {
  color: var(--accent);
}

.teaser-points li + li {
  margin-top: 8px;
}

.teaser-card--rich::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -26px;
  width: 120px;
  height: 120px;
  background: url("../img/logo-mark.svg") center/contain no-repeat;
  opacity: 0.08;
}

.teaser-card:hover,
.feature:hover,
.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(21, 32, 61, 0.12);
  box-shadow: 0 30px 70px rgba(21, 32, 61, 0.12);
}

.teaser-card h3,
.feature h3,
.news-card h3 {
  margin: 0;
  color: var(--text);
  line-height: 1.08;
}

.teaser-card h3 {
  font-size: 1.55rem;
}

.teaser-card-link,
.feature-link,
.news-link {
  margin-top: auto;
  color: var(--text);
  font-weight: 800;
}

.teaser-card-link::after,
.feature-link::after,
.news-link::after {
  content: " ->";
  color: var(--accent-deep);
}

.highlight-grid {
  grid-template-columns: 1.28fr 1fr 1fr;
  gap: 18px;
}

.feature {
  min-height: 250px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.feature-main {
  background:
    radial-gradient(circle at top right, rgba(74, 222, 128, 0.2), transparent 34%),
    linear-gradient(160deg, #111c36 0%, #16284d 100%);
  border-color: rgba(126, 147, 191, 0.2);
}

.feature-main h3,
.feature-main p,
.feature-main .feature-link,
.feature-main .tag {
  position: relative;
  z-index: 1;
}

.feature-main h3,
.feature-main .feature-link {
  color: #ffffff;
}

.feature-main p {
  color: var(--panel-muted);
}

.feature-main .tag {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.filter-button {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text-soft);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.filter-button.is-active {
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
  border-color: transparent;
  color: #08111f;
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.18);
}

.news-status,
.contact-status {
  color: var(--text-faint);
  font-size: 0.98rem;
}

.news-status {
  margin: 0 auto 20px;
}

.news-status[data-tone="loading"] {
  color: #51617f;
}

.news-status[data-tone="live"] {
  color: var(--success);
}

.news-status[data-tone="fallback"] {
  color: var(--accent-deep);
}

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

.news-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 300px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.news-meta {
  color: var(--text-faint);
  font-size: 0.95rem;
}

.news-card h3 {
  font-size: 1.4rem;
}

.news-card-footer {
  margin-top: auto;
}

.news-category-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(74, 222, 128, 0.18);
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-size: 0.87rem;
  font-weight: 800;
}

.news-card-empty {
  justify-content: center;
}

.share-bar {
  margin-top: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(21, 32, 61, 0.08);
}

.share-label {
  color: var(--text-faint);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.share-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.share-button:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 32, 61, 0.12);
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(21, 32, 61, 0.08);
}

.share-button.is-copied {
  background: rgba(35, 178, 109, 0.1);
  border-color: rgba(35, 178, 109, 0.24);
  color: var(--success);
}

.share-button svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.agenda-list {
  display: grid;
  gap: 14px;
}

.agenda-hero,
.agenda-metrics,
.agenda-toolbar,
.agenda-table {
  max-width: 1460px;
  margin-left: auto;
  margin-right: auto;
}

.agenda-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.agenda-metric-card {
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 249, 255, 0.9));
  box-shadow: var(--shadow-soft);
}

.agenda-metric-label {
  display: block;
  color: var(--text-faint);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.agenda-metric-card strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.agenda-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 20px;
  margin-bottom: 14px;
}

.agenda-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.agenda-sync-status {
  margin: 0;
  color: var(--text-faint);
  font-size: 0.95rem;
}

.agenda-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 255, 0.94));
  box-shadow: var(--shadow);
}

.agenda-table-head,
.agenda-row {
  display: grid;
  grid-template-columns: 132px 132px minmax(0, 1.25fr) 124px minmax(220px, 0.95fr);
  gap: 16px;
  align-items: center;
}

.agenda-table-head {
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  color: var(--text-faint);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agenda-list--table {
  gap: 0;
}

.agenda-row {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(21, 32, 61, 0.06);
}

.agenda-row:last-child {
  border-bottom: 0;
}

.agenda-timebox {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  min-height: 72px;
  padding: 14px 16px;
  border: 1px solid rgba(74, 222, 128, 0.18);
  border-radius: 20px;
  background: linear-gradient(180deg, #ebfff2 0%, #f5fff8 100%);
}

.agenda-timebox strong {
  color: var(--accent-deep);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
}

.agenda-timebox span {
  color: var(--text-faint);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.agenda-region-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 9px 12px;
  border: 1px solid rgba(21, 32, 61, 0.08);
  border-radius: 999px;
  background: rgba(21, 32, 61, 0.04);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
}

.agenda-event-copy h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.2rem;
}

.agenda-event-copy p,
.agenda-context {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.agenda-impact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 84px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 800;
}

.agenda-impact.is-high {
  background: rgba(35, 178, 109, 0.14);
  color: var(--accent-deep);
}

.agenda-impact.is-medium {
  background: rgba(255, 203, 92, 0.18);
  color: #a06a00;
}

.agenda-impact.is-low {
  background: rgba(21, 32, 61, 0.08);
  color: var(--text-soft);
}

.agenda-item {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 22px;
  align-items: center;
}

.agenda-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  border: 1px solid rgba(74, 222, 128, 0.18);
  border-radius: 20px;
  background: linear-gradient(180deg, #e8fff0 0%, #f3fff7 100%);
  color: var(--accent-deep);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
}

.agenda-item h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.newsletter-card {
  max-width: 1460px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 42px);
  background:
    radial-gradient(circle at top right, rgba(74, 222, 128, 0.2), transparent 30%),
    linear-gradient(160deg, #121e3a 0%, #192c54 100%);
  border: 1px solid rgba(126, 147, 191, 0.2);
}

.newsletter-card::after {
  content: "";
  position: absolute;
  right: -12px;
  bottom: -18px;
  width: 170px;
  height: 170px;
  background: url("../img/logo-mark.svg") center/contain no-repeat;
  opacity: 0.08;
}

.newsletter-card h2,
.newsletter-card p,
.newsletter-card .section-kicker,
.newsletter-form {
  position: relative;
  z-index: 1;
}

.newsletter-card h2 {
  margin: 16px 0 12px;
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.98;
}

.newsletter-card p {
  color: var(--panel-muted);
}

.newsletter-benefits {
  position: relative;
  z-index: 1;
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--panel-muted);
}

.newsletter-benefits li + li {
  margin-top: 10px;
}

.newsletter-benefits li::marker {
  color: #bdf9d2;
}

.newsletter-card .section-kicker {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.newsletter-form input::placeholder {
  color: rgba(227, 236, 255, 0.62);
}

.contact-card {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
}

.field-group {
  margin-top: 22px;
}

.field,
.admin-tab {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field span,
.field-group-label {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

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

.field-full {
  grid-column: 1 / -1;
}

.field-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: auto;
  padding: 16px 18px;
  border: 1px solid rgba(21, 32, 61, 0.1);
  border-radius: 18px;
  background: rgba(248, 250, 255, 0.94);
}

.field-checkbox input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--accent-deep);
}

.field-checkbox small {
  display: block;
  margin-top: 6px;
  color: var(--text-faint);
  line-height: 1.45;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(21, 32, 61, 0.1);
  border-radius: 18px;
  background: rgba(248, 250, 255, 0.94);
  color: var(--text);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.newsletter-form input:focus {
  outline: none;
  border-color: rgba(21, 32, 61, 0.16);
  box-shadow: 0 0 0 4px rgba(21, 32, 61, 0.06);
}

.field input[readonly] {
  background: rgba(241, 244, 250, 0.9);
  color: #51617f;
}

.field input::placeholder,
.field textarea::placeholder,
.field select:invalid {
  color: var(--text-faint);
}

.field textarea {
  min-height: 120px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

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

.option-card {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 88px;
  padding: 18px;
  border: 1px solid rgba(21, 32, 61, 0.08);
  border-radius: 22px;
  background: rgba(248, 250, 255, 0.92);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.option-card:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 32, 61, 0.12);
  background: #ffffff;
  box-shadow: 0 16px 26px rgba(21, 32, 61, 0.08);
}

.option-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.option-card span {
  color: var(--text);
  font-weight: 700;
  line-height: 1.35;
}

.option-card:has(input:checked) {
  border-color: rgba(74, 222, 128, 0.28);
  background: linear-gradient(180deg, #f0fff5 0%, #e8fff0 100%);
  box-shadow: 0 18px 28px rgba(74, 222, 128, 0.12);
}

.option-card--compact {
  min-height: 76px;
}

.contact-status {
  margin: 18px 0 0;
}

.contact-status.is-error {
  color: var(--danger);
}

.contact-status.is-success {
  color: var(--success);
}

.contact-submit {
  margin-top: 18px;
}

.admin-tab[hidden] {
  display: none;
}

.field textarea {
  width: 100%;
  min-height: 140px;
  padding: 14px 16px;
  border: 1px solid rgba(21, 32, 61, 0.1);
  border-radius: 18px;
  background: rgba(248, 250, 255, 0.94);
  color: var(--text);
  resize: vertical;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.field textarea:focus {
  outline: none;
  border-color: rgba(21, 32, 61, 0.16);
  box-shadow: 0 0 0 4px rgba(21, 32, 61, 0.06);
}

.admin-auth-card,
.admin-section-card,
.admin-list-card,
.admin-metric {
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 255, 0.92));
  box-shadow: var(--shadow);
}

.admin-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  max-width: 1460px;
  margin: 0 auto;
}

.admin-auth-card,
.admin-section-card,
.admin-list-card {
  padding: 28px;
}

.admin-sidebar {
  display: grid;
  gap: 18px;
  align-content: start;
}

.admin-note {
  padding: 16px 18px;
  border: 1px solid rgba(74, 222, 128, 0.18);
  border-radius: 20px;
  background: rgba(74, 222, 128, 0.08);
  color: var(--text-soft);
}

.admin-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.admin-metric {
  padding: 18px 20px;
}

.admin-metric span {
  display: block;
  color: var(--text-faint);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admin-metric strong {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
}

.admin-shell {
  display: grid;
  gap: 20px;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.admin-toolbar h3,
.admin-list-card h3,
.admin-auth-card h3 {
  margin: 0;
  font-size: 1.6rem;
}

.admin-toolbar p,
.admin-auth-card p,
.admin-list-card p {
  margin: 6px 0 0;
  color: var(--text-faint);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.admin-item {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid rgba(21, 32, 61, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
}

.admin-item-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.admin-item-head strong {
  display: block;
  color: var(--text);
  font-size: 1.1rem;
}

.admin-item-meta {
  color: var(--text-faint);
  font-size: 0.94rem;
  line-height: 1.45;
}

.admin-item-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(21, 32, 61, 0.06);
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.admin-chip.is-live {
  background: rgba(74, 222, 128, 0.14);
  color: var(--accent-deep);
}

.admin-empty {
  padding: 20px;
  border: 1px dashed rgba(21, 32, 61, 0.14);
  border-radius: 20px;
  color: var(--text-faint);
  text-align: center;
}

.admin-panel-status {
  margin-top: 16px;
  color: var(--text-faint);
}

.admin-panel-status.is-error {
  color: var(--danger);
}

.admin-panel-status.is-success {
  color: var(--success);
}

.admin-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-social-card {
  padding: 18px;
  border: 1px solid rgba(21, 32, 61, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
}

.admin-social-card .button {
  margin-top: 6px;
  width: fit-content;
}

.hero-strip,
.home-preview-grid {
  max-width: 1460px;
  margin-left: auto;
  margin-right: auto;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.hero-strip-card {
  padding: 20px 22px;
  border: 1px solid rgba(113, 144, 201, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(14, 24, 46, 0.92), rgba(18, 35, 66, 0.96));
  box-shadow: 0 22px 44px rgba(10, 19, 38, 0.14);
}

.hero-strip-card strong {
  display: block;
  margin-top: 10px;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.15;
}

.hero-strip-card p {
  margin: 8px 0 0;
  color: var(--panel-muted);
  font-size: 0.98rem;
}

.market-intelligence {
  padding-top: 8px;
}

.intelligence-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 0.8fr));
  gap: 18px;
}

.intelligence-lead,
.intelligence-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.intelligence-lead {
  background:
    radial-gradient(circle at top right, rgba(74, 222, 128, 0.18), transparent 30%),
    linear-gradient(155deg, #0f1b35 0%, #17325d 100%);
}

.intelligence-lead h3,
.intelligence-lead p,
.intelligence-lead .tag {
  position: relative;
  z-index: 1;
}

.intelligence-lead h3 {
  margin: 14px 0 10px;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 0.95;
}

.intelligence-lead p {
  margin: 0;
  color: var(--panel-muted);
}

.intelligence-lead::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: -18px;
  width: 130px;
  height: 130px;
  background: url("../img/logo-mark.svg") center/contain no-repeat;
  opacity: 0.12;
}

.intelligence-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.intelligence-points span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #d7fbe3;
  font-size: 0.9rem;
  font-weight: 700;
}

.intelligence-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.92));
}

.intelligence-card strong {
  display: block;
  margin-top: 12px;
  color: var(--text);
  font-size: 1.22rem;
  line-height: 1.15;
}

.intelligence-card p {
  margin: 12px 0 0;
  color: var(--text-faint);
  font-size: 0.98rem;
  line-height: 1.5;
}

.intelligence-card--accent {
  background:
    radial-gradient(circle at top right, rgba(74, 222, 128, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(236, 255, 242, 0.96), rgba(244, 248, 255, 0.92));
}

.home-preview-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  margin-top: 28px;
}

.home-preview-main,
.home-preview-side {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.home-preview-main {
  background: linear-gradient(160deg, #0f1a32 0%, #16284c 100%);
}

.home-preview-main h3,
.home-preview-main p,
.home-preview-main .tag,
.home-preview-main ul {
  position: relative;
  z-index: 1;
}

.home-preview-main h3 {
  margin: 14px 0 10px;
  color: #ffffff;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 0.95;
}

.home-preview-main--news {
  display: grid;
  gap: 20px;
  align-content: start;
}

.home-preview-media {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(212, 166, 70, 0.14);
  aspect-ratio: 1.75 / 1;
  background: rgba(255, 255, 255, 0.04);
}

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

.home-preview-copy-block {
  display: grid;
  gap: 12px;
}

.home-preview-meta {
  color: var(--panel-muted);
  font-size: 0.95rem;
}

.home-preview-main p,
.home-preview-main ul {
  color: var(--panel-muted);
}

.home-preview-main::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 150px;
  height: 150px;
  background: url("../img/logo-mark.svg") center/contain no-repeat;
  opacity: 0.1;
}

.home-preview-list {
  margin: 18px 0 0;
  padding-left: 20px;
}

.home-preview-list li + li {
  margin-top: 8px;
}

.home-preview-side {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 255, 0.92));
}

.home-mini-news,
.home-mini-agenda {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.home-mini-item {
  padding: 16px 18px;
  border: 1px solid rgba(21, 32, 61, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
}

.home-mini-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.home-mini-item--news {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.home-mini-thumb {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(212, 166, 70, 0.14);
  aspect-ratio: 1.35 / 1;
  background: rgba(255, 255, 255, 0.04);
}

.home-mini-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-mini-copy {
  display: grid;
  gap: 6px;
}

.home-mini-copy .news-link {
  justify-self: start;
}

.home-mini-item span,
.home-mini-item p {
  color: var(--text-faint);
  font-size: 0.95rem;
  line-height: 1.45;
}

body[data-page="home"] .hero-copy {
  background:
    radial-gradient(circle at top right, rgba(74, 222, 128, 0.18), transparent 30%),
    linear-gradient(160deg, #0e1931 0%, #142649 100%);
  border-color: rgba(111, 139, 196, 0.16);
}

body[data-page="home"] .hero-copy h1 {
  color: #ffffff;
}

body[data-page="home"] .hero-copy p {
  color: var(--panel-muted);
}

body[data-page="home"] .hero-copy .eyebrow {
  border-color: rgba(74, 222, 128, 0.22);
  background: rgba(74, 222, 128, 0.12);
  color: #bdf9d2;
}

.footer {
  padding: 0 20px 38px;
  text-align: center;
}

.footer p {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--text-faint);
  font-size: 0.98rem;
}

.footer p::before {
  content: "";
  width: 42px;
  height: 42px;
  background: url("../img/logo-mark.svg") center/contain no-repeat;
  opacity: 0.7;
}

html {
  color-scheme: dark;
}

.brand-star svg path:first-child {
  stroke: #d8b84c !important;
}

.brand-star svg path:last-child {
  fill: #d8b84c !important;
}

.nav-links a {
  color: rgba(251, 248, 241, 0.78);
}

.nav-links a:hover {
  border-color: rgba(216, 184, 76, 0.16);
  background: rgba(216, 184, 76, 0.08);
  color: var(--text);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.nav-links a.is-current {
  border-color: rgba(216, 184, 76, 0.26);
  background: linear-gradient(180deg, rgba(216, 184, 76, 0.16) 0%, rgba(216, 184, 76, 0.08) 100%);
  color: var(--accent-deep);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

.hero-copy,
.page-summary,
.page-sidecard,
.teaser-card,
.feature,
.agenda-item,
.news-card,
.contact-copy,
.contact-form,
.home-preview-side,
.agenda-metric-card,
.agenda-table,
.admin-auth-card,
.admin-section-card,
.admin-list-card,
.admin-metric,
.admin-item,
.admin-social-card,
.intelligence-card {
  border-color: rgba(216, 184, 76, 0.12);
  background:
    linear-gradient(180deg, rgba(12, 13, 17, 0.96), rgba(18, 20, 26, 0.92));
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

body[data-page="home"] .hero-copy {
  border-color: rgba(216, 184, 76, 0.14);
  background:
    radial-gradient(circle at top right, rgba(216, 184, 76, 0.18), transparent 32%),
    linear-gradient(160deg, #060606 0%, #0b0c10 46%, #14171d 100%);
}

.hero-copy::before,
.page-summary::before,
.feature-main::before,
.newsletter-card::before {
  background: radial-gradient(circle, rgba(216, 184, 76, 0.16), transparent 72%);
}

.hero-copy::after,
.page-summary::after,
.market-panel::after,
.newsletter-card::after,
.teaser-card--rich::after,
.intelligence-lead::after,
.home-preview-main::after {
  opacity: 0.12;
}

.eyebrow,
.section-kicker,
.tag,
.panel-label,
.news-category-chip,
.agenda-impact.is-medium,
.admin-chip.is-live {
  border-color: rgba(216, 184, 76, 0.16);
  background: rgba(216, 184, 76, 0.1);
  color: var(--accent-deep);
}

.panel-label,
.feature-main .tag,
.newsletter-card .section-kicker,
body[data-page="home"] .hero-copy .eyebrow {
  border-color: rgba(216, 184, 76, 0.18);
  background: rgba(216, 184, 76, 0.1);
  color: var(--accent-deep);
}

.button-primary,
.filter-button.is-active {
  background: linear-gradient(135deg, #d8b84c 0%, #f0d67a 100%);
  color: #090909;
  box-shadow: 0 18px 34px rgba(216, 184, 76, 0.18);
}

.button-primary:hover {
  box-shadow: 0 22px 40px rgba(216, 184, 76, 0.24);
}

.button-secondary,
.filter-button,
.share-button {
  border-color: rgba(216, 184, 76, 0.16);
  background: rgba(18, 19, 25, 0.9);
  color: var(--text);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
}

.share-button:hover,
.filter-button:hover,
.button-secondary:hover {
  border-color: rgba(216, 184, 76, 0.26);
  background: rgba(216, 184, 76, 0.1);
  color: var(--accent-deep);
}

.market-panel,
.feature-main,
.newsletter-card,
.intelligence-lead,
.home-preview-main,
.hero-strip-card {
  border-color: rgba(216, 184, 76, 0.14);
  background:
    radial-gradient(circle at top right, rgba(216, 184, 76, 0.18), transparent 34%),
    linear-gradient(160deg, #060606 0%, #0c0d11 46%, #14171d 100%);
}

.market-panel::before {
  background: radial-gradient(circle, rgba(216, 184, 76, 0.22), transparent 72%);
}

.market-item,
.ticker span,
.market-ribbon-item,
.agenda-region-badge,
.admin-chip,
.option-card {
  border-color: rgba(216, 184, 76, 0.14);
  background: rgba(21, 23, 29, 0.92);
}

.market-item-region,
.market-item-time,
.agenda-sync-status,
.admin-panel-status,
.admin-item-meta,
.teaser-meta,
.share-label,
.news-meta {
  color: var(--text-faint);
}

.home-mini-item,
.intelligence-points span {
  border-color: rgba(216, 184, 76, 0.14);
  background: rgba(21, 23, 29, 0.92);
}

.home-mini-item strong,
.home-mini-item span,
.home-mini-item p,
.intelligence-points span {
  color: var(--text);
}

.market-item-price,
.feature-main h3,
.feature-main .feature-link,
.newsletter-card h2,
.hero-strip-card strong,
.home-preview-main h3,
.panel-card strong,
body[data-page="home"] .hero-copy h1 {
  color: var(--panel-text);
}

.feature-main p,
.newsletter-card p,
.newsletter-benefits,
.hero-strip-card p,
.home-preview-main p,
.home-preview-main ul,
body[data-page="home"] .hero-copy p,
.intelligence-lead p,
.market-panel .panel-card p {
  color: var(--panel-muted);
}

.newsletter-benefits li::marker,
.teaser-points li::marker,
.page-bullets li::marker,
.contact-benefits li::marker,
.home-preview-list li::marker {
  color: var(--accent);
}

.teaser-card:hover,
.feature:hover,
.news-card:hover,
.option-card:hover {
  border-color: rgba(216, 184, 76, 0.18);
  box-shadow: 0 30px 68px rgba(0, 0, 0, 0.32);
}

.agenda-table-head {
  border-bottom-color: rgba(216, 184, 76, 0.12);
  color: rgba(251, 248, 241, 0.52);
}

.agenda-row {
  border-bottom-color: rgba(216, 184, 76, 0.08);
}

.agenda-timebox,
.agenda-date {
  border-color: rgba(216, 184, 76, 0.18);
  background: linear-gradient(180deg, rgba(216, 184, 76, 0.14) 0%, rgba(216, 184, 76, 0.06) 100%);
}

.agenda-timebox strong,
.agenda-date,
.agenda-impact.is-high {
  color: var(--accent-deep);
}

.agenda-timebox span {
  color: rgba(251, 248, 241, 0.62);
}

.agenda-impact.is-low {
  background: rgba(251, 248, 241, 0.08);
  color: var(--text-soft);
}

.field input,
.field select,
.field textarea,
.newsletter-form input {
  border-color: rgba(216, 184, 76, 0.14);
  background: rgba(15, 16, 21, 0.94);
  color: var(--text);
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.newsletter-form input:focus {
  border-color: rgba(216, 184, 76, 0.3);
  box-shadow: 0 0 0 4px rgba(216, 184, 76, 0.08);
}

.field input[readonly] {
  background: rgba(20, 21, 26, 0.86);
  color: var(--text-faint);
}

.field input::placeholder,
.field textarea::placeholder,
.field select:invalid,
.newsletter-form input::placeholder {
  color: var(--text-faint);
}

.option-card span,
.field span,
.field-group-label,
.agenda-event-copy h3,
.agenda-metric-card strong,
.intelligence-card strong,
.admin-item-head strong,
.admin-note strong {
  color: var(--text);
}

.option-card:has(input:checked) {
  border-color: rgba(216, 184, 76, 0.26);
  background: linear-gradient(180deg, rgba(216, 184, 76, 0.18) 0%, rgba(216, 184, 76, 0.08) 100%);
  box-shadow: 0 20px 32px rgba(216, 184, 76, 0.12);
}

.admin-note {
  border-color: rgba(216, 184, 76, 0.16);
  background: rgba(216, 184, 76, 0.08);
  color: var(--text-soft);
}

.admin-empty {
  border-color: rgba(216, 184, 76, 0.18);
  color: var(--text-faint);
}

.admin-toolbar p,
.admin-auth-card p,
.admin-list-card p,
.contact-status,
.news-status {
  color: var(--text-faint);
}

.home-preview-side,
.contact-copy,
.contact-form,
.agenda-metric-card,
.admin-auth-card,
.admin-section-card,
.admin-list-card,
.admin-metric,
.admin-item,
.admin-social-card {
  backdrop-filter: blur(16px);
}

.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366 0%, #0f8f46 100%);
  color: #ffffff;
  box-shadow: 0 24px 34px rgba(15, 143, 70, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 28px 40px rgba(15, 143, 70, 0.34);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1180px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-content,
  .page-hero,
  .highlight-grid,
  .contact-card,
  .newsletter-card,
  .news-grid,
  .teaser-grid,
  .home-preview-grid,
  .hero-strip,
  .intelligence-grid,
  .admin-layout,
  .admin-metrics,
  .admin-social-grid {
    grid-template-columns: 1fr;
  }

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

  .agenda-metrics {
    grid-template-columns: 1fr;
  }

  .agenda-table-head,
  .agenda-row {
    grid-template-columns: 1fr;
  }

  .agenda-table-head {
    display: none;
  }
}

@media (max-width: 920px) {
  .hero-copy h1,
  .page-summary h1 {
    max-width: 100%;
  }

  .market-board,
  .option-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form,
  .share-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .share-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .topbar {
    padding: 14px;
    border-radius: 28px;
  }

  .market-ribbon {
    margin-bottom: 14px;
    border-radius: 22px;
  }

  .brand {
    width: min(100%, 318px);
    padding: 12px 14px 12px 16px;
  }

  .brand-name {
    font-size: 1.74rem;
  }

  .brand-invest {
    padding-left: 32px;
    font-size: 0.94rem;
    letter-spacing: 0.26em;
  }

  .brand-star {
    width: 50px;
    height: 50px;
  }

  .nav-links a {
    flex: 1 1 calc(50% - 10px);
    min-width: 148px;
  }

  .hero-copy,
  .page-summary,
  .page-sidecard,
  .teaser-card,
  .feature,
  .news-card,
  .agenda-item,
  .contact-copy,
  .contact-form,
  .newsletter-card {
    padding: 22px;
    border-radius: 28px;
  }

  .agenda-item {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    left: 18px;
    bottom: 18px;
    width: 58px;
    height: 58px;
  }
}

/* Final brand system: Marques Invest */
:root {
  --bg: #0e1a32;
  --bg-soft: #142649;
  --surface: rgba(16, 27, 52, 0.9);
  --surface-strong: #162746;
  --surface-dark: linear-gradient(180deg, rgba(11, 20, 39, 0.96), rgba(15, 27, 51, 0.92));
  --line: rgba(212, 166, 70, 0.14);
  --line-strong: rgba(212, 166, 70, 0.26);
  --text: #f6f3ee;
  --text-soft: rgba(246, 243, 238, 0.82);
  --text-faint: rgba(246, 243, 238, 0.58);
  --accent: #d4a646;
  --accent-deep: #e0b85c;
  --accent-soft: rgba(212, 166, 70, 0.14);
  --panel-text: #f6f3ee;
  --panel-muted: rgba(246, 243, 238, 0.76);
  --shadow: 0 28px 80px rgba(2, 7, 20, 0.32);
  --shadow-soft: 0 20px 46px rgba(2, 7, 20, 0.22);
}

body {
  background:
    radial-gradient(circle at top left, rgba(212, 166, 70, 0.12), transparent 20%),
    radial-gradient(circle at bottom right, rgba(44, 76, 128, 0.22), transparent 32%),
    linear-gradient(180deg, #0a1326 0%, #0e1a32 44%, #132241 100%);
}

body::before {
  top: -140px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: rgba(212, 166, 70, 0.12);
}

body::after {
  right: -120px;
  bottom: 120px;
  width: 420px;
  height: 420px;
  background: rgba(62, 102, 160, 0.12);
}

h1,
h2,
.page-summary h1,
body[data-page="home"] .hero-copy h1 {
  font-family: "Cormorant Garamond", "Cinzel", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero,
.section {
  padding-left: clamp(20px, 5vw, 72px);
  padding-right: clamp(20px, 5vw, 72px);
}

.topbar {
  max-width: 1440px;
  padding: 18px 24px;
  border: 1px solid rgba(212, 166, 70, 0.12);
  border-radius: 30px;
  background: rgba(11, 20, 39, 0.74);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow-soft);
}

.market-ribbon {
  max-width: 1440px;
  padding: 10px 16px;
  border-color: rgba(212, 166, 70, 0.1);
  background: rgba(12, 21, 41, 0.72);
}

.market-ribbon-label {
  background: rgba(212, 166, 70, 0.1);
  border-color: rgba(212, 166, 70, 0.14);
  color: var(--accent-deep);
}

.market-ribbon-item {
  background: linear-gradient(180deg, rgba(17, 30, 57, 0.96), rgba(12, 22, 42, 0.92));
  border-color: rgba(212, 166, 70, 0.12);
}

.brand {
  gap: 16px;
  padding: 6px 0;
}

.brand-name {
  background: none;
  color: var(--text);
  text-shadow: none;
  font-family: "Cinzel", Georgia, serif;
  font-size: 2.08rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.brand-invest {
  display: block;
  margin-top: 4px;
  padding-left: 0.34rem;
  color: var(--accent);
  font-family: "Montserrat", "Source Sans 3", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.brand-star {
  width: 58px;
  height: 58px;
  color: var(--accent);
  filter: drop-shadow(0 0 12px rgba(212, 166, 70, 0.16));
}

.brand-star svg path:first-child {
  stroke: var(--accent) !important;
}

.brand-star svg path:last-child {
  fill: var(--text) !important;
}

.nav-links {
  gap: 10px;
}

.nav-links a {
  color: rgba(246, 243, 238, 0.76);
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 16px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: rgba(212, 166, 70, 0.08);
  border-color: rgba(212, 166, 70, 0.12);
  color: var(--text);
  box-shadow: none;
}

.nav-links a.is-current {
  background: rgba(212, 166, 70, 0.1);
  border-color: rgba(212, 166, 70, 0.18);
  color: var(--accent-deep);
  box-shadow: none;
}

.hero-content,
.page-hero {
  align-items: stretch;
  gap: clamp(20px, 3vw, 34px);
}

.hero-copy,
.page-summary,
.page-sidecard,
.market-panel,
.teaser-card,
.feature,
.news-card,
.contact-copy,
.contact-form,
.newsletter-card,
.agenda-metric-card,
.agenda-table,
.admin-auth-card,
.admin-section-card,
.admin-list-card,
.admin-metric,
.admin-item,
.admin-social-card,
.intelligence-card,
.intelligence-lead,
.hero-strip-card,
.home-preview-side,
.home-preview-main {
  border: 1px solid rgba(212, 166, 70, 0.12);
  background: linear-gradient(180deg, rgba(18, 31, 58, 0.94), rgba(13, 24, 46, 0.9));
  box-shadow: 0 28px 60px rgba(4, 10, 23, 0.28);
  backdrop-filter: blur(16px);
}

body[data-page="home"] .hero-copy {
  min-height: 560px;
  padding: clamp(28px, 4vw, 52px);
  border-color: rgba(212, 166, 70, 0.16);
  background:
    radial-gradient(circle at 85% 18%, rgba(212, 166, 70, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(19, 35, 67, 0.98), rgba(12, 22, 42, 0.96));
}

body[data-page="home"] .hero-copy::before,
.page-summary::before,
.feature-main::before,
.newsletter-card::before {
  background: radial-gradient(circle, rgba(212, 166, 70, 0.16), transparent 72%);
}

body[data-page="home"] .hero-copy h1 {
  max-width: 10ch;
  margin: 0 0 18px;
  color: var(--panel-text);
  font-size: clamp(4.4rem, 9vw, 6.6rem);
  line-height: 0.92;
}

body[data-page="home"] .hero-copy p {
  max-width: 56ch;
  color: var(--panel-muted);
  font-size: 1.12rem;
  line-height: 1.78;
}

.page-summary h1 {
  margin-bottom: 14px;
  color: var(--panel-text);
  font-size: clamp(2.8rem, 6vw, 4.3rem);
  line-height: 0.98;
}

.page-summary p,
.page-sidecard p,
.page-bullets,
.panel-card p,
.teaser-card p,
.feature p,
.contact-copy p,
.newsletter-card p,
.intelligence-lead p,
.intelligence-card p {
  color: var(--panel-muted);
}

.eyebrow,
.section-kicker,
.tag,
.panel-label,
.news-category-chip,
.agenda-impact.is-medium,
.admin-chip.is-live {
  border-color: rgba(212, 166, 70, 0.14);
  background: rgba(212, 166, 70, 0.08);
  color: var(--accent-deep);
  font-family: "Montserrat", "Source Sans 3", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 28px;
}

.section-heading--split {
  max-width: 1460px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading--split > div {
  max-width: 860px;
}

.section-heading--wide {
  max-width: 1120px;
}

.section-heading--wide h2 {
  max-width: 18ch;
}

.section-heading h2 {
  margin: 12px 0 0;
  color: var(--text);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1;
}

.section-heading-main {
  min-width: 0;
}

.section-heading-support {
  max-width: 62ch;
  margin: 14px 0 0;
  color: rgba(246, 243, 238, 0.7);
  line-height: 1.68;
}

.hero-actions {
  margin-top: 28px;
  gap: 14px;
}

.hero-actions--compact {
  margin-top: 22px;
}

.button-primary,
.filter-button.is-active {
  background: linear-gradient(135deg, #d4a646 0%, #b8872e 100%);
  color: #0e1a32;
  box-shadow: 0 18px 34px rgba(212, 166, 70, 0.18);
}

.button-primary:hover {
  box-shadow: 0 22px 40px rgba(212, 166, 70, 0.26);
}

.button-secondary,
.filter-button,
.share-button {
  border-color: rgba(212, 166, 70, 0.16);
  background: rgba(16, 27, 52, 0.82);
  color: var(--text);
  box-shadow: none;
}

.button-secondary:hover,
.filter-button:hover,
.share-button:hover {
  background: rgba(212, 166, 70, 0.08);
  border-color: rgba(212, 166, 70, 0.22);
  color: var(--accent-deep);
}

.market-panel,
.feature-main,
.newsletter-card,
.intelligence-lead,
.hero-strip-card,
.manifesto-card,
.diagnostic-card {
  border-color: rgba(212, 166, 70, 0.16);
  background:
    radial-gradient(circle at top right, rgba(212, 166, 70, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(19, 35, 67, 0.98), rgba(13, 24, 46, 0.95));
}

.market-panel strong,
.feature-main h3,
.newsletter-card h2,
.hero-strip-card strong,
.panel-card strong,
.intelligence-lead h3,
.intelligence-card strong,
.teaser-card h3,
.feature h3,
.contact-copy h3,
.process-card h3,
.manifesto-card h3,
.diagnostic-card h3 {
  color: var(--panel-text);
}

.market-panel {
  min-height: 560px;
}

.market-status,
.news-status,
.contact-status,
.agenda-sync-status,
.teaser-meta,
.news-meta,
.share-label {
  color: var(--text-faint);
}

.hero-strip {
  margin-top: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hero-strip-card {
  padding: 24px;
  border-radius: 26px;
}

.hero-strip-card p {
  color: var(--panel-muted);
}

.intelligence-grid {
  gap: 20px;
}

.intelligence-lead {
  padding: clamp(28px, 4vw, 42px);
}

.intelligence-lead h3 {
  margin: 14px 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.intelligence-points span,
.home-mini-item,
.agenda-region-badge,
.market-item,
.market-ribbon-item,
.option-card,
.admin-chip {
  border-color: rgba(212, 166, 70, 0.14);
  background: rgba(18, 31, 58, 0.9);
}

.process-section {
  position: relative;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  position: relative;
  padding: 28px 24px 24px;
  border: 1px solid rgba(212, 166, 70, 0.12);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(17, 30, 57, 0.92), rgba(13, 24, 46, 0.88));
  box-shadow: var(--shadow-soft);
}

.process-card h3 {
  margin: 18px 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.85rem;
  line-height: 1.02;
}

.process-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 999px;
  border: 1px solid rgba(212, 166, 70, 0.18);
  background: rgba(212, 166, 70, 0.08);
  color: var(--accent-deep);
  font-family: "Montserrat", "Source Sans 3", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.process-card p {
  margin-bottom: 0;
  color: var(--text-soft);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
}

.manifesto-card,
.diagnostic-card {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 32px;
}

.manifesto-card h3 {
  max-width: 16ch;
  margin: 18px 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 0.98;
}

.manifesto-card p,
.diagnostic-card p {
  max-width: 52ch;
  color: var(--panel-muted);
}

.diagnostic-card {
  background:
    radial-gradient(circle at 88% 12%, rgba(212, 166, 70, 0.16), transparent 20%),
    linear-gradient(180deg, rgba(20, 38, 73, 0.98), rgba(13, 24, 46, 0.94));
}

.teaser-grid,
.highlight-grid,
.news-grid {
  gap: 20px;
}

.home-news-status {
  margin-bottom: 18px;
}

.button-full {
  width: 100%;
  justify-content: center;
}

@media (min-width: 1181px) {
  body[data-page="home"] .section-heading--wide h2 {
    max-width: 20ch;
    font-size: clamp(3rem, 4.1vw, 4.9rem);
    line-height: 0.94;
  }

  body[data-page="home"] .process-grid {
    grid-template-columns: repeat(4, minmax(240px, 1fr));
    gap: 20px;
    align-items: stretch;
  }

  body[data-page="home"] .process-card {
    display: flex;
    flex-direction: column;
    min-height: 248px;
    padding: 30px 26px 26px;
  }

  body[data-page="home"] .process-card p {
    max-width: 26ch;
  }

  body[data-page="home"] .teaser-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
  }

  body[data-page="home"] .teaser-card {
    min-height: 352px;
  }

  body[data-page="home"] .teaser-card-top {
    min-height: 38px;
    align-items: flex-start;
  }

  body[data-page="home"] .teaser-card h3 {
    max-width: 13ch;
  }

  body[data-page="home"] .teaser-card p {
    max-width: 32ch;
  }

  body[data-page="home"] .manifesto-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    align-items: stretch;
  }
}

.teaser-card,
.feature,
.news-card {
  border-radius: 26px;
}

.teaser-card h3,
.feature h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  line-height: 1.04;
}

.teaser-card-link,
.feature-link {
  color: var(--accent-deep);
}

.page-sidecard h2 {
  margin: 14px 0 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.02;
}

.newsletter-card {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  padding: clamp(28px, 4vw, 42px);
}

.newsletter-card h2 {
  margin: 12px 0 16px;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.98;
}

.newsletter-benefits {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.newsletter-form {
  align-self: center;
  gap: 12px;
}

.contact-card {
  gap: 22px;
}

.contact-copy,
.contact-form {
  padding: clamp(28px, 4vw, 38px);
  border-radius: 30px;
}

.contact-copy h3 {
  margin: 16px 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
}

.office-card {
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid rgba(212, 166, 70, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(212, 166, 70, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(13, 24, 46, 0.94), rgba(10, 19, 37, 0.9));
}

.office-card h4 {
  margin: 14px 0 12px;
  color: var(--panel-text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1.05;
}

.office-details {
  margin: 0;
  padding-left: 18px;
  color: rgba(246, 243, 238, 0.78);
}

.office-details li + li {
  margin-top: 8px;
}

.office-details strong {
  color: var(--text);
}

.field input,
.field select,
.field textarea,
.newsletter-form input {
  border-color: rgba(212, 166, 70, 0.14);
  background: rgba(10, 18, 35, 0.74);
  color: var(--text);
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.newsletter-form input:focus {
  border-color: rgba(212, 166, 70, 0.28);
  box-shadow: 0 0 0 4px rgba(212, 166, 70, 0.08);
}

.field input[readonly] {
  background: rgba(15, 27, 50, 0.62);
}

.option-card:has(input:checked) {
  border-color: rgba(212, 166, 70, 0.22);
  background: linear-gradient(180deg, rgba(212, 166, 70, 0.12), rgba(212, 166, 70, 0.06));
  box-shadow: none;
}

.agenda-metrics {
  gap: 18px;
}

.agenda-metric-card strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.6rem;
  font-weight: 600;
}

.agenda-table-head {
  color: rgba(246, 243, 238, 0.54);
  border-bottom-color: rgba(212, 166, 70, 0.1);
}

.agenda-row {
  border-bottom-color: rgba(212, 166, 70, 0.08);
}

.agenda-timebox,
.agenda-date {
  border-color: rgba(212, 166, 70, 0.18);
  background: rgba(212, 166, 70, 0.08);
}

.news-section .section-heading {
  margin-top: 20px;
}

.footer {
  margin-top: 8px;
  padding: 24px clamp(20px, 5vw, 72px) 42px;
  color: var(--text-faint);
  text-align: center;
}

.footer p {
  max-width: 760px;
  margin: 0 auto;
}

.footer-address {
  display: block;
  margin-top: 10px;
  color: rgba(246, 243, 238, 0.72);
  font-size: 0.95rem;
  line-height: 1.6;
}

.admin-note {
  border-color: rgba(212, 166, 70, 0.14);
  background: rgba(212, 166, 70, 0.08);
}

.admin-note strong,
.admin-item-head strong,
.field span,
.field-group-label,
.option-card span,
.agenda-event-copy h3 {
  color: var(--text);
}

@media (max-width: 1180px) {
  .hero-strip,
  .process-grid,
  .manifesto-grid,
  .newsletter-card {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .hero-copy,
  .market-panel {
    min-height: auto;
  }
}

@media (max-width: 920px) {
  body[data-page="home"] .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(3.4rem, 13vw, 4.8rem);
  }

  .page-summary h1,
  .newsletter-card h2,
  .manifesto-card h3 {
    font-size: clamp(2.4rem, 10vw, 3.2rem);
  }
}

@media (max-width: 720px) {
  .topbar {
    padding: 16px 18px;
  }

  .brand {
    width: auto;
    padding: 0;
  }

  .brand-name {
    font-size: 1.62rem;
  }

  .brand-invest {
    font-size: 0.6rem;
    letter-spacing: 0.34em;
  }

  .brand-star {
    width: 48px;
    height: 48px;
  }

  .nav-links a {
    min-width: 132px;
    padding: 10px 14px;
  }

  .hero-strip-card,
  .process-card,
  .manifesto-card,
  .diagnostic-card {
    padding: 22px;
  }
}

/* Final refinement: Marques Invest dark heritage system */

body {
  background:
    radial-gradient(circle at 8% 8%, rgba(212, 166, 70, 0.12), transparent 18%),
    radial-gradient(circle at 92% 12%, rgba(33, 56, 97, 0.32), transparent 24%),
    linear-gradient(180deg, #08111f 0%, #0e1a32 42%, #132241 100%);
}

body::before {
  background: radial-gradient(circle, rgba(212, 166, 70, 0.12), transparent 72%);
}

body::after {
  background: radial-gradient(circle, rgba(34, 57, 102, 0.28), transparent 72%);
}

.topbar {
  border: 1px solid rgba(212, 166, 70, 0.14);
  background: linear-gradient(180deg, rgba(7, 14, 28, 0.94), rgba(10, 19, 37, 0.9));
  box-shadow: 0 24px 72px rgba(2, 7, 20, 0.34);
}

.brand {
  min-width: 0;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.brand-wordmark,
.brand-star,
.brand-invest {
  display: none !important;
}

.brand-lockup {
  display: inline-flex;
  align-items: flex-start;
  gap: 14px;
}

.brand-name {
  display: block;
  background: linear-gradient(180deg, #f1d57f 0%, #d4a646 46%, #b8872e 100%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 3vw, 3.45rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 0.84;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(212, 166, 70, 0.1);
}

.brand-mark {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  transform: translateY(-7px);
  filter: drop-shadow(0 0 14px rgba(212, 166, 70, 0.16));
}

.nav-links a {
  color: rgba(246, 243, 238, 0.8);
}

.nav-links a:hover,
.nav-links a.is-current {
  border-color: rgba(212, 166, 70, 0.18);
  background: rgba(212, 166, 70, 0.1);
  color: #f6f3ee;
}

.button-primary,
.filter-button.is-active {
  background: linear-gradient(135deg, #d4a646 0%, #b8872e 100%);
  color: #09111f;
  box-shadow: 0 18px 36px rgba(212, 166, 70, 0.24);
}

.button-secondary,
.filter-button,
.share-button {
  background: rgba(13, 24, 46, 0.86);
  border-color: rgba(212, 166, 70, 0.18);
  color: #f6f3ee;
}

.button-secondary:hover,
.filter-button:hover,
.share-button:hover {
  background: rgba(212, 166, 70, 0.08);
  color: #f1d57f;
}

.panel-label,
.tag,
.section-kicker,
.teaser-meta,
.process-index {
  color: #e0b85c;
}

.market-panel,
.feature-main,
.newsletter-card,
.intelligence-lead,
.hero-strip-card,
.manifesto-card,
.diagnostic-card,
.page-summary,
.page-sidecard,
.teaser-card,
.feature,
.news-card,
.contact-copy,
.contact-form,
.agenda-metric-card,
.agenda-events-board,
.agenda-row,
.admin-panel,
.admin-card,
.admin-note {
  border-color: rgba(212, 166, 70, 0.14);
  background:
    radial-gradient(circle at top right, rgba(212, 166, 70, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(14, 26, 50, 0.96), rgba(10, 19, 37, 0.92));
}

.intelligence-card--accent {
  border-color: rgba(212, 166, 70, 0.2);
  background:
    radial-gradient(circle at top right, rgba(212, 166, 70, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(19, 35, 67, 0.98), rgba(12, 22, 42, 0.94));
}

.market-ribbon,
.market-ribbon-item,
.option-card,
.admin-chip {
  border-color: rgba(212, 166, 70, 0.14);
  background: rgba(12, 21, 41, 0.8);
}

.market-status,
.news-card p,
.feature p,
.page-summary p,
.page-sidecard p,
.manifesto-card p,
.diagnostic-card p,
.hero-strip-card p,
.intelligence-lead p,
.intelligence-card p,
.contact-copy p,
.contact-benefits,
.newsletter-card p,
.agenda-event-copy p {
  color: rgba(246, 243, 238, 0.76);
}

.manifesto-card {
  overflow: hidden;
}

.manifesto-card::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 92px;
  height: 92px;
  background: url("../img/logo-mark.svg") center/contain no-repeat;
  opacity: 0.1;
}

.agenda-timebox,
.agenda-date,
.news-category-chip {
  border-color: rgba(212, 166, 70, 0.18);
  background: rgba(212, 166, 70, 0.08);
}

.news-category-chip,
.agenda-timebox strong,
.agenda-item-time,
.market-ribbon-label,
.market-ribbon-change.is-up {
  color: #e0b85c;
}

.agenda-date,
body[data-page="home"] .hero-copy .eyebrow {
  color: #f1d57f;
}

.option-card:has(input:checked) {
  border-color: rgba(212, 166, 70, 0.24);
  background: linear-gradient(180deg, rgba(212, 166, 70, 0.14), rgba(212, 166, 70, 0.08));
  box-shadow: 0 18px 30px rgba(212, 166, 70, 0.12);
}

.admin-note {
  background: rgba(212, 166, 70, 0.08);
  color: rgba(246, 243, 238, 0.76);
}

.admin-chip.is-live {
  background: rgba(212, 166, 70, 0.14);
  color: #f1d57f;
}

.footer p::before {
  content: "";
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  background: url("../img/logo-mark.svg") center/contain no-repeat;
  opacity: 0.8;
}

@media (max-width: 720px) {
  .brand-name {
    font-size: 1.88rem;
    letter-spacing: 0.08em;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    transform: translateY(-4px);
  }
}

.news-lead {
  max-width: 1460px;
  margin: 0 auto 22px;
}

.news-lead-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(212, 166, 70, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(212, 166, 70, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(14, 26, 50, 0.98), rgba(10, 19, 37, 0.94));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.26);
}

.news-lead-media,
.news-card-cover {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.news-lead-media {
  min-height: 100%;
}

.news-lead-media img,
.news-card-cover img,
.article-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-cover {
  aspect-ratio: 1.68 / 1;
  border-radius: 20px;
  border: 1px solid rgba(212, 166, 70, 0.1);
}

.news-lead-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: clamp(28px, 4vw, 42px);
}

.news-meta--lead {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.news-lead-copy h3 {
  margin: 0;
  color: var(--panel-text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
  line-height: 0.98;
}

.news-lead-copy p {
  margin: 0;
  color: rgba(246, 243, 238, 0.76);
  font-size: 1.06rem;
  line-height: 1.65;
}

.news-lead-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
}

.article-section {
  padding-top: 24px;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.52fr);
  gap: clamp(22px, 3vw, 34px);
  max-width: 1460px;
  margin: 0 auto;
}

.article-main,
.article-sidecard {
  border: 1px solid rgba(212, 166, 70, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(212, 166, 70, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(14, 26, 50, 0.98), rgba(10, 19, 37, 0.94));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
}

.article-main {
  padding: clamp(28px, 4vw, 42px);
}

.article-sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
}

.article-status {
  color: rgba(246, 243, 238, 0.74);
  font-size: 0.98rem;
}

.article-meta-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.article-meta-line {
  color: rgba(246, 243, 238, 0.56);
  font-size: 0.95rem;
}

.article-header h1 {
  margin: 18px 0 14px;
  color: var(--panel-text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.9rem);
  line-height: 0.95;
}

.article-excerpt {
  margin: 0;
  max-width: 60ch;
  color: rgba(246, 243, 238, 0.8);
  font-size: 1.12rem;
  line-height: 1.7;
}

.article-cover {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(212, 166, 70, 0.12);
  border-radius: 24px;
  aspect-ratio: 1.9 / 1;
}

.article-content {
  margin-top: 30px;
}

.article-content h2 {
  margin: 34px 0 14px;
  color: var(--panel-text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.04;
}

.article-content p,
.article-content li,
.article-source-copy {
  color: rgba(246, 243, 238, 0.8);
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-content p {
  margin: 0 0 18px;
}

.article-list {
  margin: 0 0 20px;
  padding-left: 22px;
}

.article-list li + li {
  margin-top: 8px;
}

.article-content blockquote {
  margin: 28px 0;
  padding: 18px 22px;
  border-left: 2px solid rgba(212, 166, 70, 0.46);
  border-radius: 0 18px 18px 0;
  background: rgba(212, 166, 70, 0.06);
  color: #f1d57f;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.3;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.article-empty h2,
.article-sidecard h2,
.article-sidecard h3 {
  margin: 12px 0;
  color: var(--panel-text);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.04;
}

.article-empty h2,
.article-sidecard h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
}

.article-sidecard {
  padding: 26px 24px;
}

.article-sidecard p {
  margin: 0;
  color: rgba(246, 243, 238, 0.76);
  line-height: 1.7;
}

.article-sidecard--secondary .button {
  margin-top: 16px;
}

.article-empty p {
  max-width: 54ch;
  color: rgba(246, 243, 238, 0.76);
}

.article-empty .button {
  margin-top: 10px;
}

.article-related-heading,
.article-related-grid {
  max-width: 1460px;
  margin-left: auto;
  margin-right: auto;
}

.article-related-heading {
  margin-top: 34px;
}

@media (max-width: 1080px) {
  .news-lead-card,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .news-lead-media {
    min-height: 280px;
  }
}

@media (max-width: 720px) {
  .home-mini-item--news {
    grid-template-columns: 1fr;
  }

  .news-lead-copy,
  .article-main,
  .article-sidecard {
    padding: 22px;
  }

  .article-header h1,
  .news-lead-copy h3 {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .article-cover {
    aspect-ratio: 1.25 / 1;
  }
}

.field-checkbox {
  border-color: rgba(212, 166, 70, 0.14);
  background:
    radial-gradient(circle at top right, rgba(212, 166, 70, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(14, 26, 50, 0.94), rgba(10, 19, 37, 0.9));
}

.field-checkbox small {
  color: rgba(246, 243, 238, 0.58);
}

.field-help {
  display: block;
  margin-top: 8px;
  color: rgba(246, 243, 238, 0.58);
  line-height: 1.45;
}

.cover-preview {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px dashed rgba(212, 166, 70, 0.18);
  border-radius: 22px;
  background: rgba(246, 243, 238, 0.02);
}

.cover-preview[hidden] {
  display: none;
}

.cover-preview-label {
  color: rgba(246, 243, 238, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cover-preview img {
  display: block;
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(212, 166, 70, 0.12);
}

.pdf-preview-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(212, 166, 70, 0.12);
  border-radius: 20px;
  background: rgba(246, 243, 238, 0.03);
}

.pdf-preview-copy {
  display: grid;
  gap: 8px;
}

.pdf-preview-copy strong {
  color: var(--panel-text);
  font-size: 1rem;
}

.pdf-preview-copy p {
  margin: 0;
  color: rgba(246, 243, 238, 0.72);
  line-height: 1.55;
}

.pdf-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.analysis-document-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 24px;
  max-width: 1460px;
  margin: 0 auto;
}

.analysis-document-card,
.analysis-document-viewer,
.analysis-document-empty {
  border: 1px solid rgba(212, 166, 70, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(212, 166, 70, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(14, 26, 50, 0.98), rgba(10, 19, 37, 0.94));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
}

.analysis-document-card {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: clamp(26px, 3vw, 36px);
}

.analysis-document-card h2 {
  margin: 0;
  color: var(--panel-text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 3.2vw, 3.4rem);
  line-height: 0.98;
}

.analysis-document-card p,
.analysis-document-empty {
  color: rgba(246, 243, 238, 0.76);
  line-height: 1.65;
}

.analysis-document-empty {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(246, 243, 238, 0.03);
}

.analysis-document-viewer {
  overflow: hidden;
  min-height: 980px;
}

.analysis-document-viewer iframe {
  display: block;
  width: 100%;
  min-height: 980px;
  border: 0;
  background: #ffffff;
}

.analysis-document-viewer[hidden] {
  display: none;
}

.analysis-marques-block {
  max-width: 1460px;
  margin: 0 auto 34px;
}

.analysis-marques-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 20px;
}

.analysis-marques-grid.is-single {
  grid-template-columns: 1fr;
}

.analysis-marques-lead,
.analysis-marques-card,
.analysis-marques-empty {
  border: 1px solid rgba(212, 166, 70, 0.14);
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(212, 166, 70, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(14, 26, 50, 0.98), rgba(10, 19, 37, 0.94));
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
}

.analysis-marques-lead {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(0, 1.08fr);
  overflow: hidden;
}

.analysis-marques-copy,
.analysis-marques-card,
.analysis-marques-empty {
  padding: clamp(24px, 3vw, 34px);
}

.analysis-marques-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.analysis-marques-copy h3,
.analysis-marques-card h4,
.analysis-marques-empty h3 {
  margin: 0;
  color: var(--panel-text);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.02;
}

.analysis-marques-copy h3 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.analysis-marques-card h4 {
  font-size: 1.8rem;
}

.analysis-marques-copy p,
.analysis-marques-card p,
.analysis-marques-empty p {
  margin: 0;
  color: rgba(246, 243, 238, 0.76);
  line-height: 1.65;
}

.analysis-marques-stack {
  display: grid;
  gap: 18px;
}

.analysis-marques-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.analysis-marques-actions,
.article-share {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.analysis-marques-actions {
  margin-top: auto;
}

.analysis-marques-empty {
  display: grid;
  gap: 12px;
}

.article-share {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(212, 166, 70, 0.12);
}

@media (max-width: 1180px) {
  .analysis-marques-grid,
  .analysis-marques-lead {
    grid-template-columns: 1fr;
  }

  .section-heading--split {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 920px) {
  .analysis-marques-actions,
  .article-share {
    flex-direction: column;
    align-items: flex-start;
  }

  .pdf-preview-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 1180px) {
  .analysis-document-shell {
    grid-template-columns: 1fr;
  }

  .analysis-document-viewer,
  .analysis-document-viewer iframe {
    min-height: 760px;
  }
}

@media (min-width: 1181px) {
  body[data-page="home"] .section--split-rail {
    display: grid;
    grid-template-columns: minmax(300px, 0.76fr) minmax(0, 1.24fr);
    gap: 28px;
    align-items: start;
  }

  body[data-page="home"] .section--split-rail .section-rail {
    position: sticky;
    top: 112px;
  }

  body[data-page="home"] .section--split-rail .section-content {
    min-width: 0;
  }

  body[data-page="home"] .section--split-rail .section-heading {
    max-width: none;
    margin-bottom: 0;
  }

  body[data-page="home"] .section--split-rail .section-heading--editorial {
    display: block;
  }

  body[data-page="home"] .section-heading--editorial {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
    align-items: end;
    gap: 26px;
  }

  body[data-page="home"] .section-heading--wide {
    max-width: 1280px;
    margin-bottom: 34px;
  }

  body[data-page="home"] .section-heading-main {
    max-width: 900px;
  }

  body[data-page="home"] .section-heading--wide h2 {
    max-width: 18ch;
    font-size: clamp(3.2rem, 4vw, 5.1rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
  }

  body[data-page="home"] .section-heading-support {
    max-width: 32ch;
    margin: 18px 0 0;
    color: rgba(246, 243, 238, 0.72);
    font-size: 1.04rem;
    line-height: 1.72;
    text-align: left;
  }

  body[data-page="home"] .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  body[data-page="home"] .process-card {
    display: grid;
    align-content: start;
    min-height: 250px;
    padding: 34px 32px 30px;
  }

  body[data-page="home"] .process-card h3 {
    margin: 24px 0 14px;
    max-width: 10ch;
    font-size: 2.15rem;
  }

  body[data-page="home"] .process-card p {
    max-width: 36ch;
    font-size: 1rem;
    line-height: 1.62;
  }

  body[data-page="home"] .teaser-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(230px, auto);
    gap: 24px;
  }

  body[data-page="home"] .teaser-card {
    min-height: 0;
    padding: 32px;
  }

  body[data-page="home"] .teaser-card--feature {
    grid-column: span 2;
    grid-row: span 1;
    padding: 42px 40px 36px;
  }

  body[data-page="home"] .teaser-card--feature h3 {
    max-width: 10ch;
    font-size: clamp(3.1rem, 3.6vw, 4.5rem);
    line-height: 0.92;
  }

  body[data-page="home"] .teaser-card--feature p {
    max-width: 42ch;
    font-size: 1.05rem;
  }

  body[data-page="home"] .teaser-card--side {
    min-height: 0;
  }

  body[data-page="home"] .teaser-card--side h3 {
    max-width: 9ch;
    font-size: 2.25rem;
    line-height: 0.98;
  }

  body[data-page="home"] .teaser-card:not(.teaser-card--feature):not(.teaser-card--side) h3 {
    max-width: 11ch;
  }

  body[data-page="home"] .teaser-card--conversion {
    grid-column: span 2;
  }

  body[data-page="home"] .teaser-card-top {
    align-items: flex-start;
  }

  body[data-page="home"] .teaser-meta {
    max-width: 16ch;
    line-height: 1.25;
    text-align: right;
  }

  body[data-page="home"] .teaser-card p {
    max-width: 34ch;
  }

  body[data-page="home"] .teaser-points {
    margin-top: auto;
  }

  body[data-page="home"] .manifesto-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    gap: 22px;
    align-items: stretch;
  }

  body[data-page="home"] .manifesto-card,
  body[data-page="home"] .diagnostic-card {
    min-height: 100%;
  }
}

@media (min-width: 1181px) {
  body[data-page="home"] .home-preview-grid {
    grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
    gap: 24px;
    align-items: stretch;
  }

  body[data-page="home"] .home-preview-main--news {
    min-height: 620px;
  }

  body[data-page="home"] .home-preview-main--news .home-preview-copy-block h3 {
    max-width: 11ch;
    font-size: clamp(3rem, 3.7vw, 4.6rem);
    line-height: 0.92;
  }

  body[data-page="home"] .home-preview-side--news {
    display: grid;
    grid-template-rows: auto 1fr auto;
  }

  body[data-page="home"] .home-mini-news {
    gap: 16px;
  }

  body[data-page="home"] .home-mini-item--news {
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: start;
  }
}

/* Editorial flow refresh */
.intelligence-flow,
.intelligence-service-list,
.authority-flow,
.authority-column,
.authority-list,
.newsletter-stage {
  display: grid;
  gap: 20px;
}

.intelligence-visual,
.newsletter-visual-card,
.home-preview-side-visual,
.manifesto-card--visual,
.page-sidecard--visual {
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(212, 166, 70, 0.16);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(180deg, rgba(14, 26, 50, 0.96), rgba(10, 19, 37, 0.92));
}

.intelligence-visual img,
.newsletter-visual-card img,
.home-preview-side-visual img,
.manifesto-card--visual img,
.page-sidecard-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-sidecard--visual {
  padding: 0;
}

.page-sidecard-caption {
  display: grid;
  gap: 12px;
  padding: 22px 24px 26px;
}

.page-sidecard-caption p {
  margin: 0;
}

.newsletter-stage {
  max-width: 1460px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-card--form {
  display: grid;
  gap: 22px;
}

.button-primary,
.filter-button.is-active {
  background: linear-gradient(135deg, #e0b85c 0%, #b8872e 100%);
  color: #08111f;
  box-shadow: 0 18px 34px rgba(184, 135, 46, 0.24);
}

.button-primary:hover {
  box-shadow: 0 20px 40px rgba(184, 135, 46, 0.3);
}

@media (min-width: 1181px) {
  body[data-page="home"] .hero-strip {
    gap: 0;
    margin-top: 28px;
    padding: 10px 0;
    border-top: 1px solid rgba(212, 166, 70, 0.16);
    border-bottom: 1px solid rgba(212, 166, 70, 0.16);
    background: linear-gradient(180deg, rgba(14, 26, 50, 0.22), rgba(14, 26, 50, 0.08));
    border-radius: 0;
  }

  body[data-page="home"] .hero-strip-card {
    min-height: 0;
    padding: 22px 24px 18px;
    border: 0;
    border-left: 1px solid rgba(212, 166, 70, 0.12);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="home"] .hero-strip-card:first-child {
    border-left: 0;
  }

  body[data-page="home"] .intelligence-flow {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    align-items: stretch;
    gap: 28px;
  }

  body[data-page="home"] .intelligence-lead {
    padding: 12px 0 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="home"] .intelligence-lead::after {
    display: none;
  }

  body[data-page="home"] .intelligence-lead h3 {
    max-width: 8.5ch;
    font-size: clamp(3rem, 4vw, 4.8rem);
    line-height: 0.9;
  }

  body[data-page="home"] .intelligence-lead p {
    max-width: 42ch;
    font-size: 1.08rem;
  }

  body[data-page="home"] .intelligence-visual {
    min-height: 420px;
  }

  body[data-page="home"] .intelligence-service-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 18px;
    border-top: 1px solid rgba(212, 166, 70, 0.16);
    border-bottom: 1px solid rgba(212, 166, 70, 0.16);
  }

  body[data-page="home"] .intelligence-card,
  body[data-page="home"] .intelligence-card--accent {
    min-height: 0;
    padding: 26px 24px 20px;
    border: 0;
    border-left: 1px solid rgba(212, 166, 70, 0.12);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="home"] .intelligence-card:first-child {
    border-left: 0;
  }

  body[data-page="home"] .intelligence-card strong {
    max-width: 12ch;
    font-size: 1.45rem;
    line-height: 1.04;
  }

  body[data-page="home"] .process-grid {
    gap: 0;
    margin-top: 6px;
    border-top: 1px solid rgba(212, 166, 70, 0.16);
    border-bottom: 1px solid rgba(212, 166, 70, 0.16);
  }

  body[data-page="home"] .process-card {
    min-height: 0;
    padding: 28px 24px 20px;
    border: 0;
    border-left: 1px solid rgba(212, 166, 70, 0.12);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="home"] .process-card:first-child {
    border-left: 0;
  }

  body[data-page="home"] .process-index {
    width: auto;
    height: auto;
    margin: 0 0 16px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 0.82rem;
    letter-spacing: 0.16em;
  }

  body[data-page="home"] .process-card h3 {
    max-width: 8ch;
    margin: 0 0 14px;
    font-size: 2rem;
  }

  body[data-page="home"] .authority-flow {
    grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
    gap: 28px;
    align-items: stretch;
  }

  body[data-page="home"] .authority-column {
    gap: 0;
    border-top: 1px solid rgba(212, 166, 70, 0.16);
    border-bottom: 1px solid rgba(212, 166, 70, 0.16);
  }

  body[data-page="home"] .teaser-card--feature {
    min-height: 0;
    padding: 50px 44px 40px;
    border-radius: 36px;
  }

  body[data-page="home"] .teaser-card--feature h3 {
    max-width: 8ch;
    font-size: clamp(3.6rem, 4.2vw, 5rem);
    line-height: 0.9;
  }

  body[data-page="home"] .authority-column .teaser-card {
    min-height: 0;
    padding: 28px 0 24px;
    border: 0;
    border-top: 1px solid rgba(212, 166, 70, 0.12);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="home"] .authority-column .teaser-card:first-child {
    border-top: 0;
  }

  body[data-page="home"] .authority-column .teaser-card h3 {
    max-width: 8ch;
    font-size: 2.4rem;
    line-height: 0.96;
  }

  body[data-page="home"] .authority-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 24px;
    border-top: 1px solid rgba(212, 166, 70, 0.16);
  }

  body[data-page="home"] .authority-list .teaser-card {
    min-height: 0;
    padding: 26px 22px 18px;
    border: 0;
    border-left: 1px solid rgba(212, 166, 70, 0.12);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="home"] .authority-list .teaser-card:first-child {
    border-left: 0;
  }

  body[data-page="home"] .home-preview-grid {
    gap: 0;
    margin-top: 28px;
  }

  body[data-page="home"] .home-preview-main--news {
    min-height: 0;
    padding: 0 30px 0 0;
    border: 0;
    border-right: 1px solid rgba(212, 166, 70, 0.14);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="home"] .home-preview-main--news::after {
    display: none;
  }

  body[data-page="home"] .home-preview-main--news .home-preview-copy-block h3,
  body[data-page="home"] .home-preview-main--news h3 {
    max-width: 9ch;
    font-size: clamp(3.4rem, 4vw, 4.8rem);
    line-height: 0.9;
  }

  body[data-page="home"] .home-preview-side--news {
    padding: 0 0 0 30px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="home"] .home-preview-side-visual {
    margin-bottom: 24px;
    min-height: 290px;
  }

  body[data-page="home"] .home-mini-item {
    padding: 16px 0;
    border: 0;
    border-top: 1px solid rgba(212, 166, 70, 0.12);
    border-radius: 0;
    background: transparent;
  }

  body[data-page="home"] .home-mini-item:first-child {
    border-top: 0;
    padding-top: 0;
  }

  body[data-page="home"] .manifesto-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 28px;
    margin-top: 32px;
    align-items: stretch;
  }

  body[data-page="home"] .manifesto-card--visual {
    padding: 0;
  }

  body[data-page="home"] .diagnostic-card {
    padding: 30px 0 24px 30px;
    border: 0;
    border-left: 1px solid rgba(212, 166, 70, 0.14);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="newsletter"] .newsletter-stage {
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
    gap: 28px;
    align-items: stretch;
  }

  body[data-page="newsletter"] .newsletter-visual-card {
    min-height: 640px;
  }

  body[data-page="newsletter"] .newsletter-card--form {
    padding: 24px 0 24px 28px;
    border: 0;
    border-left: 1px solid rgba(212, 166, 70, 0.14);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="news"] .page-hero {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
    gap: 28px;
  }

  body[data-page="news"] .page-summary {
    padding: 8px 30px 8px 0;
    border: 0;
    border-right: 1px solid rgba(212, 166, 70, 0.14);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="news"] .page-sidecard--visual {
    min-height: 100%;
  }
}

@media (max-width: 1180px) {
  .intelligence-service-list,
  .authority-list,
  .authority-flow {
    gap: 20px;
  }

  .home-preview-side-visual {
    margin-bottom: 18px;
  }
}

/* Official logo */
.brand {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(42px, 4.4vw, 62px);
  object-fit: contain;
}

.brand-lockup,
.brand-wordmark,
.brand-name,
.brand-invest,
.brand-star,
.brand-mark {
  display: none !important;
}

@media (max-width: 920px) {
  .brand-logo {
    height: clamp(36px, 7vw, 48px);
  }
}

.telegraph-services-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 1181px) {
  body[data-page="home"] .market-intelligence--telegraph,
  body[data-page="home"] .process-section--telegraph,
  body[data-page="home"] .authority-section--telegraph,
  body[data-page="home"] .home-news-preview-section--telegraph {
    max-width: 1460px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }

  body[data-page="home"] .section--split-rail {
    display: block;
  }

  body[data-page="home"] .section--split-rail .section-rail {
    position: static;
    margin-bottom: 28px;
  }

  body[data-page="home"] .section--split-rail .section-content {
    min-width: 0;
  }

  body[data-page="home"] .section-heading--editorial,
  body[data-page="home"] .section-heading--split {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
    align-items: end;
    gap: 28px;
  }

  body[data-page="home"] .section-heading--wide {
    max-width: none;
    margin-bottom: 0;
  }

  body[data-page="home"] .section-heading--wide h2,
  body[data-page="home"] .section-heading--split h2 {
    max-width: 10ch;
    font-size: clamp(3.3rem, 4vw, 5.2rem);
    line-height: 0.9;
  }

  body[data-page="home"] .section-heading-support {
    max-width: 33ch;
    margin: 0;
    color: rgba(246, 243, 238, 0.72);
    font-size: 1rem;
    line-height: 1.72;
  }

  body[data-page="home"] .market-intelligence--telegraph .section-heading {
    margin-bottom: 26px;
  }

  body[data-page="home"] .market-intelligence--telegraph .section-heading h2 {
    max-width: 8ch;
    font-size: clamp(3.6rem, 4.2vw, 5.4rem);
    line-height: 0.88;
  }

  body[data-page="home"] .telegraph-services-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 0;
    align-items: start;
    border-top: 1px solid rgba(212, 166, 70, 0.18);
    padding-top: 26px;
  }

  body[data-page="home"] .telegraph-services-grid .intelligence-flow {
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(320px, 1fr);
    gap: 26px;
    padding-right: 36px;
  }

  body[data-page="home"] .telegraph-services-grid .intelligence-lead {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="home"] .telegraph-services-grid .intelligence-lead::after {
    display: none;
  }

  body[data-page="home"] .telegraph-services-grid .intelligence-lead h3 {
    max-width: 7.4ch;
    font-size: clamp(4rem, 4.5vw, 5.5rem);
    line-height: 0.86;
  }

  body[data-page="home"] .telegraph-services-grid .intelligence-lead p {
    max-width: 43ch;
    font-size: 1.08rem;
  }

  body[data-page="home"] .telegraph-services-grid .intelligence-points {
    margin-top: 24px;
  }

  body[data-page="home"] .telegraph-services-grid .intelligence-visual {
    min-height: 360px;
    border: 0;
    border-top: 1px solid rgba(212, 166, 70, 0.14);
    border-radius: 0;
    box-shadow: none;
  }

  body[data-page="home"] .telegraph-services-grid .intelligence-service-list {
    grid-template-columns: 1fr;
    gap: 0;
    padding-left: 36px;
    border-left: 1px solid rgba(212, 166, 70, 0.14);
  }

  body[data-page="home"] .telegraph-services-grid .intelligence-card,
  body[data-page="home"] .telegraph-services-grid .intelligence-card--accent {
    min-height: 0;
    padding: 22px 0;
    border: 0;
    border-top: 1px solid rgba(212, 166, 70, 0.14);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="home"] .telegraph-services-grid .intelligence-card:first-child {
    padding-top: 0;
    border-top: 0;
  }

  body[data-page="home"] .telegraph-services-grid .intelligence-card strong {
    display: block;
    max-width: 10ch;
    font-size: 1.9rem;
    line-height: 0.98;
  }

  body[data-page="home"] .telegraph-services-grid .intelligence-card p {
    max-width: 34ch;
  }

  body[data-page="home"] .process-section--telegraph .section-content,
  body[data-page="home"] .authority-section--telegraph .section-content {
    border-top: 1px solid rgba(212, 166, 70, 0.18);
    padding-top: 24px;
  }

  body[data-page="home"] .process-section--telegraph .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  body[data-page="home"] .process-section--telegraph .process-card {
    min-height: 0;
    padding: 18px 26px 16px;
    border: 0;
    border-left: 1px solid rgba(212, 166, 70, 0.14);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="home"] .process-section--telegraph .process-card:first-child {
    border-left: 0;
  }

  body[data-page="home"] .process-section--telegraph .process-index {
    width: auto;
    height: auto;
    margin: 0 0 16px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: 0.82rem;
    letter-spacing: 0.18em;
  }

  body[data-page="home"] .process-section--telegraph .process-card h3 {
    max-width: 8ch;
    margin: 0 0 14px;
    font-size: 2rem;
    line-height: 0.98;
  }

  body[data-page="home"] .process-section--telegraph .process-card p {
    max-width: 29ch;
  }

  body[data-page="home"] .authority-section--telegraph .authority-flow {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    gap: 0;
    align-items: start;
  }

  body[data-page="home"] .authority-section--telegraph .teaser-card--feature {
    min-height: 0;
    padding: 0 40px 0 0;
    border: 0;
    border-right: 1px solid rgba(212, 166, 70, 0.14);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="home"] .authority-section--telegraph .teaser-card--feature::after {
    display: none;
  }

  body[data-page="home"] .authority-section--telegraph .teaser-card--feature h3 {
    max-width: 6.8ch;
    font-size: clamp(4rem, 4.5vw, 5.5rem);
    line-height: 0.86;
  }

  body[data-page="home"] .authority-section--telegraph .teaser-card--feature p {
    max-width: 40ch;
    font-size: 1.08rem;
  }

  body[data-page="home"] .authority-section--telegraph .teaser-card--feature .teaser-points {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px 18px;
    margin-top: 28px;
    padding: 22px 0 0;
    border-top: 1px solid rgba(212, 166, 70, 0.14);
    list-style: none;
  }

  body[data-page="home"] .authority-section--telegraph .teaser-card--feature .teaser-points li {
    padding-left: 0;
  }

  body[data-page="home"] .authority-section--telegraph .teaser-card--feature .teaser-points li::before,
  body[data-page="home"] .authority-section--telegraph .teaser-card--feature .teaser-points li::marker {
    content: none;
  }

  body[data-page="home"] .authority-section--telegraph .authority-column {
    gap: 0;
    padding-left: 36px;
  }

  body[data-page="home"] .authority-section--telegraph .authority-column .teaser-card {
    min-height: 0;
    padding: 0 0 24px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="home"] .authority-section--telegraph .authority-column .teaser-card + .teaser-card {
    padding-top: 24px;
    border-top: 1px solid rgba(212, 166, 70, 0.14);
  }

  body[data-page="home"] .authority-section--telegraph .authority-column .teaser-card::after {
    display: none;
  }

  body[data-page="home"] .authority-section--telegraph .authority-column .teaser-card h3 {
    max-width: 7ch;
    font-size: 2.5rem;
    line-height: 0.94;
  }

  body[data-page="home"] .authority-section--telegraph .authority-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 28px;
    border-top: 1px solid rgba(212, 166, 70, 0.18);
  }

  body[data-page="home"] .authority-section--telegraph .authority-list .teaser-card {
    min-height: 0;
    padding: 22px 24px 16px;
    border: 0;
    border-left: 1px solid rgba(212, 166, 70, 0.14);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="home"] .authority-section--telegraph .authority-list .teaser-card:first-child {
    border-left: 0;
  }

  body[data-page="home"] .authority-section--telegraph .authority-list .teaser-card::after {
    display: none;
  }

  body[data-page="home"] .authority-section--telegraph .authority-list .teaser-card h3 {
    max-width: 8ch;
    font-size: 2.2rem;
    line-height: 0.96;
  }

  body[data-page="home"] .home-news-preview-section--telegraph .section-heading {
    margin-bottom: 0;
  }

  body[data-page="home"] .home-news-preview-section--telegraph .section-heading h2 {
    max-width: 9ch;
    font-size: clamp(3.3rem, 4vw, 5rem);
    line-height: 0.9;
  }

  body[data-page="home"] .home-news-preview-section--telegraph .home-preview-grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(360px, 0.84fr);
    gap: 0;
    margin-top: 22px;
    border-top: 1px solid rgba(212, 166, 70, 0.18);
    padding-top: 26px;
  }

  body[data-page="home"] .home-news-preview-section--telegraph .home-preview-main--news {
    min-height: 0;
    padding: 0 36px 0 0;
    border: 0;
    border-right: 1px solid rgba(212, 166, 70, 0.14);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="home"] .home-news-preview-section--telegraph .home-preview-main--news::after {
    display: none;
  }

  body[data-page="home"] .home-news-preview-section--telegraph .home-preview-main--news h3 {
    max-width: 7.8ch;
    font-size: clamp(4rem, 4.5vw, 5.2rem);
    line-height: 0.86;
  }

  body[data-page="home"] .home-news-preview-section--telegraph .home-preview-side--news {
    padding: 0 0 0 36px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="home"] .home-news-preview-section--telegraph .home-preview-side-visual {
    min-height: 280px;
    margin-bottom: 22px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  body[data-page="home"] .home-news-preview-section--telegraph .home-mini-news {
    gap: 0;
  }

  body[data-page="home"] .home-news-preview-section--telegraph .home-mini-item {
    padding: 18px 0;
    border: 0;
    border-top: 1px solid rgba(212, 166, 70, 0.14);
    border-radius: 0;
    background: transparent;
  }

  body[data-page="home"] .home-news-preview-section--telegraph .home-mini-item:first-child {
    padding-top: 0;
    border-top: 0;
  }

  body[data-page="home"] .home-news-preview-section--telegraph .manifesto-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
    gap: 0;
    margin-top: 34px;
    border-top: 1px solid rgba(212, 166, 70, 0.18);
    padding-top: 26px;
  }

  body[data-page="home"] .home-news-preview-section--telegraph .manifesto-card--visual {
    padding: 0 36px 0 0;
    border: 0;
    border-right: 1px solid rgba(212, 166, 70, 0.14);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="home"] .home-news-preview-section--telegraph .diagnostic-card {
    padding: 0 0 0 36px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
}
