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

:root {
  --bg: #f4f7fb;
  --bg-strong: #e9f0f8;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-solid: #ffffff;
  --surface-muted: #eef3f8;
  --text: #10243d;
  --text-soft: #48607c;
  --heading: #0b1c31;
  --border: rgba(16, 36, 61, 0.11);
  --line: rgba(16, 36, 61, 0.08);
  --accent: #0a7bd9;
  --accent-deep: #0b5db6;
  --accent-soft: #dff2ff;
  --accent-alt: #49c0de;
  --shadow: 0 24px 70px rgba(13, 38, 76, 0.12);
  --shadow-soft: 0 14px 40px rgba(13, 38, 76, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100% - 2rem));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(73, 192, 222, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(10, 123, 217, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg) 42%, #edf2f8 100%);
  line-height: 1.65;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

p,
ul,
ol {
  margin: 0 0 1rem;
}

ul,
ol {
  padding-left: 1.2rem;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", sans-serif;
  color: var(--heading);
  margin: 0 0 1rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.9rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

.eyebrow,
.pill,
.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.eyebrow {
  background: rgba(10, 123, 217, 0.08);
  border: 1px solid rgba(10, 123, 217, 0.16);
  color: var(--accent-deep);
}

.pill,
.meta-chip {
  background: var(--surface-muted);
  border: 1px solid rgba(16, 36, 61, 0.09);
  color: var(--text-soft);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(248, 251, 255, 0.76);
  border-bottom: 1px solid rgba(16, 36, 61, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(145deg, #0b5db6 0%, #1e9bf0 55%, #8feaff 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.logo-mark::before,
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.56);
}

.logo-mark::after {
  inset: 16px;
  border-radius: 50%;
}

.logo-text strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
  color: var(--heading);
}

.logo-text span {
  display: block;
  font-size: 0.87rem;
  color: var(--text-soft);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.8rem;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--heading);
  margin: 3px 0;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-nav a {
  padding: 0.78rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  color: var(--text-soft);
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.active {
  color: var(--heading);
  background: rgba(10, 123, 217, 0.08);
  transform: translateY(-1px);
}

.hero {
  padding: 3.8rem 0 2rem;
}

.hero-grid,
.cta-panel,
.trust-panel,
.page-hero-grid,
.contact-grid {
  display: grid;
  gap: 1.5rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 2rem;
}

.hero-copy,
.glass-card,
.section-card,
.category-card,
.mini-card,
.trust-card,
.timeline-card,
.faq-card,
.contact-card,
.legal-card,
.footer-panel,
.content-card,
.category-spotlight,
.cta-band,
.table-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  padding: clamp(1.6rem, 2vw, 2rem);
}

.hero-copy p.lead,
.page-hero-copy p,
.section-intro {
  font-size: 1.16rem;
  color: var(--text-soft);
  max-width: 62ch;
}

.button-row,
.inline-links,
.tag-row,
.stats-row,
.info-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(10, 123, 217, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--heading);
  border: 1px solid rgba(16, 36, 61, 0.1);
}

.button-link {
  background: transparent;
  color: var(--accent-deep);
  padding: 0;
  min-height: auto;
}

.hero-visual,
.page-hero-visual {
  position: relative;
  min-height: 520px;
  border-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(143, 234, 255, 0.68), transparent 26%),
    radial-gradient(circle at 80% 18%, rgba(10, 123, 217, 0.22), transparent 24%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.82), rgba(229, 240, 251, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow);
}

.hero-orbit,
.page-orbit {
  position: absolute;
  inset: auto;
  border-radius: 50%;
  border: 1px solid rgba(11, 93, 182, 0.12);
}

.hero-orbit.one,
.page-orbit.one {
  width: 330px;
  height: 330px;
  right: 8%;
  top: 13%;
}

.hero-orbit.two,
.page-orbit.two {
  width: 220px;
  height: 220px;
  left: 10%;
  bottom: 8%;
}

.hero-core,
.page-core {
  position: absolute;
  inset: 22% 25% auto auto;
  width: 180px;
  height: 180px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(11, 93, 182, 0.96), rgba(73, 192, 222, 0.9));
  box-shadow:
    0 18px 50px rgba(11, 93, 182, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-core::before,
.hero-core::after,
.page-core::before,
.page-core::after {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.58);
}

.hero-core::after,
.page-core::after {
  inset: 52px;
  border-radius: 50%;
}

.visual-card {
  position: absolute;
  min-width: 160px;
  padding: 1rem 1.1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.visual-card strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Sora", sans-serif;
  color: var(--heading);
}

.visual-card span {
  color: var(--text-soft);
  font-size: 0.95rem;
}

.visual-card.top-left {
  top: 12%;
  left: 8%;
}

.visual-card.bottom-left {
  left: 7%;
  bottom: 9%;
}

.visual-card.bottom-right {
  right: 6%;
  bottom: 12%;
}

.stats-row {
  margin-top: 1.35rem;
}

.stat-box {
  flex: 1 1 160px;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(16, 36, 61, 0.08);
}

.stat-box strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  color: var(--heading);
}

.section {
  padding: 1.75rem 0 0.5rem;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.section-header p {
  max-width: 60ch;
  color: var(--text-soft);
  font-size: 1.08rem;
}

.grid-2,
.grid-3,
.grid-4,
.footer-grid,
.legal-grid,
.category-grid,
.content-grid,
.trust-grid,
.info-grid {
  display: grid;
  gap: 1.2rem;
}

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

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

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

.section-card,
.category-card,
.content-card,
.trust-card,
.timeline-card,
.contact-card,
.legal-card,
.table-card {
  padding: 1.45rem;
}

.section-card h3,
.category-card h3,
.content-card h3,
.trust-card h3,
.timeline-card h3,
.contact-card h3,
.legal-card h3,
.table-card h3 {
  margin-bottom: 0.65rem;
}

.card-kicker {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-weight: 800;
  color: var(--accent-deep);
  text-transform: uppercase;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.category-card {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.card-icon {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(10, 123, 217, 0.14), rgba(73, 192, 222, 0.22));
  font-family: "Sora", sans-serif;
  font-weight: 800;
  color: var(--accent-deep);
}

.card-list,
.check-list,
.link-list,
.plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-list li,
.check-list li,
.link-list li,
.plain-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--text-soft);
}

.card-list li::before,
.check-list li::before,
.link-list li::before,
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-alt));
}

.link-list a {
  font-weight: 700;
  color: var(--heading);
}

.faq-grid {
  display: grid;
  gap: 1rem;
}

.faq-card details {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-lg);
}

.faq-card summary {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: var(--heading);
  cursor: pointer;
  list-style: none;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card p {
  margin-top: 0.85rem;
  color: var(--text-soft);
}

.page-hero {
  padding: 2.6rem 0 0.7rem;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  align-items: stretch;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
}

.page-hero-copy,
.page-hero-visual {
  padding: 1.7rem;
}

.page-hero-visual {
  min-height: 360px;
}

.page-hero-visual .visual-card {
  min-width: 130px;
}

.breadcrumbs {
  margin-bottom: 1rem;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.breadcrumbs a {
  color: var(--accent-deep);
  font-weight: 700;
}

.prose {
  display: grid;
  gap: 1.2rem;
}

.prose h2,
.prose h3 {
  margin-top: 0.2rem;
}

.prose p,
.prose li {
  color: var(--text-soft);
  font-size: 1.04rem;
}

.split-layout {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.4fr);
}

.article-layout {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.42fr);
}

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

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1rem 0 0;
}

.toc-card,
.author-card,
.rank-card {
  padding: 1.35rem;
}

.toc-card ol {
  margin: 0;
  padding-left: 1.1rem;
}

.toc-card li {
  margin-bottom: 0.65rem;
  color: var(--text-soft);
}

.toc-card a {
  color: var(--heading);
  font-weight: 700;
}

.rank-grid {
  display: grid;
  gap: 1rem;
}

.rank-card {
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft);
}

.rank-card h3 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.rank-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(10, 123, 217, 0.16), rgba(73, 192, 222, 0.28));
  color: var(--accent-deep);
  font-family: "Sora", sans-serif;
  font-weight: 800;
}

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

.mini-note {
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(16, 36, 61, 0.08);
}

.article-highlight {
  margin-top: 1.2rem;
  padding: 1.15rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(10, 123, 217, 0.08), rgba(73, 192, 222, 0.12));
  border: 1px solid rgba(10, 123, 217, 0.12);
}

.featured-article {
  display: grid;
  gap: 0.85rem;
  padding: 1.45rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(235, 244, 252, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-soft);
}

.editorial-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 1.2rem;
}

.editorial-hero,
.editorial-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.editorial-hero {
  padding: 1.8rem;
  background:
    radial-gradient(circle at top right, rgba(143, 234, 255, 0.42), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(225, 239, 252, 0.98));
}

.editorial-hero::after,
.editorial-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 123, 217, 0.18), transparent 68%);
  pointer-events: none;
}

.editorial-hero h3 {
  font-size: clamp(1.8rem, 2.4vw, 2.45rem);
  max-width: 12ch;
  margin-bottom: 0.75rem;
}

.editorial-hero p {
  max-width: 50ch;
  color: var(--text-soft);
  font-size: 1.06rem;
}

.editorial-stack {
  display: grid;
  gap: 1rem;
}

.editorial-card {
  padding: 1.3rem 1.35rem;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.94), rgba(239, 245, 252, 0.96));
}

.editorial-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.55rem;
}

.editorial-card p {
  color: var(--text-soft);
  margin-bottom: 0.8rem;
}

.editorial-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.9rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  background: rgba(10, 123, 217, 0.1);
  border: 1px solid rgba(10, 123, 217, 0.16);
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.editorial-card-marketing {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(236, 247, 250, 0.98));
}

.editorial-card-marketing .editorial-tag {
  background: rgba(73, 192, 222, 0.12);
  border-color: rgba(73, 192, 222, 0.18);
}

.editorial-card-visual {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(243, 240, 255, 0.96));
}

.editorial-card-visual .editorial-tag {
  background: rgba(126, 114, 242, 0.1);
  border-color: rgba(126, 114, 242, 0.16);
  color: #4d3fc6;
}

.editorial-card-business {
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.95), rgba(237, 245, 238, 0.96));
}

.editorial-card-business .editorial-tag {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.16);
  color: #12753a;
}

.sticky-side {
  position: sticky;
  top: 96px;
  align-self: start;
}

.article-layout .sticky-side {
  display: grid;
  gap: 0.8rem;
}

.article-layout .toc-card,
.article-layout .author-card {
  padding: 1.05rem;
  border-radius: 24px;
}

.article-layout .toc-card ol {
  padding-left: 1rem;
}

.article-layout .toc-card li {
  margin-bottom: 0.5rem;
}

.article-layout .toc-card a {
  font-size: 0.96rem;
}

.article-layout .author-card p {
  margin-bottom: 0.8rem;
  font-size: 0.98rem;
  line-height: 1.55;
}

.article-layout .author-card .button {
  min-height: 46px;
  padding: 0.8rem 1rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

label {
  display: grid;
  gap: 0.4rem;
  font-weight: 700;
  color: var(--heading);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(16, 36, 61, 0.12);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  color: var(--text);
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(10, 123, 217, 0.18);
  border-color: rgba(10, 123, 217, 0.28);
}

textarea {
  min-height: 180px;
  resize: vertical;
}

.cta-band {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1.6rem;
  background:
    linear-gradient(135deg, rgba(10, 123, 217, 0.95), rgba(11, 93, 182, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  color: #ffffff;
}

.cta-band h2,
.cta-band p,
.cta-band a {
  color: inherit;
}

.footer {
  margin-top: 3rem;
  padding: 1.5rem 0 2rem;
}

.footer-panel {
  padding: 1.5rem;
}

.footer-grid {
  grid-template-columns: 1.3fr 0.9fr 0.9fr 0.9fr;
}

.footer h3 {
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.footer p,
.footer li,
.footer a {
  color: var(--text-soft);
}

.footer .plain-list li {
  padding-left: 0;
}

.footer .plain-list li::before {
  display: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(16, 36, 61, 0.08);
  color: var(--text-soft);
  font-size: 0.95rem;
}

.muted {
  color: var(--text-soft);
}

.highlight {
  color: var(--accent-deep);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

th,
td {
  text-align: left;
  padding: 0.95rem 0.85rem;
  border-bottom: 1px solid rgba(16, 36, 61, 0.08);
}

th {
  font-family: "Sora", sans-serif;
  color: var(--heading);
  font-size: 0.96rem;
}

.notice {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(10, 123, 217, 0.06);
  border: 1px solid rgba(10, 123, 217, 0.12);
}

.button-inline {
  min-height: 44px;
  padding: 0.75rem 1rem;
}

.cookie-backdrop {
  position: fixed;
  inset: 0;
  z-index: 38;
  background: rgba(8, 21, 37, 0.32);
  backdrop-filter: blur(4px);
}

.cookie-banner,
.cookie-panel,
.cookie-launcher {
  position: fixed;
  z-index: 40;
}

.cookie-banner,
.cookie-panel {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(16, 36, 61, 0.1);
  box-shadow: var(--shadow);
}

.cookie-banner {
  right: 1rem;
  bottom: 1rem;
  width: min(560px, calc(100vw - 2rem));
  border-radius: 28px;
  padding: 1.35rem;
}

.cookie-copy h2,
.cookie-panel-head h2 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  margin-bottom: 0.7rem;
}

.cookie-copy p,
.cookie-panel-intro,
.cookie-option small {
  color: var(--text-soft);
}

.cookie-actions {
  margin-top: 1rem;
}

.cookie-panel {
  left: 50%;
  top: 50%;
  width: min(720px, calc(100vw - 2rem));
  border-radius: 30px;
  padding: 1.4rem;
  transform: translate(-50%, -50%);
}

.cookie-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.cookie-close {
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--heading);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-pref-grid {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.1rem;
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border-radius: 18px;
  background: var(--surface-muted);
  border: 1px solid rgba(16, 36, 61, 0.08);
}

.cookie-option span {
  display: grid;
  gap: 0.2rem;
}

.cookie-option small {
  font-size: 0.94rem;
  line-height: 1.45;
}

.cookie-option input {
  width: 20px;
  height: 20px;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.cookie-option-locked {
  background: rgba(10, 123, 217, 0.08);
}

.cookie-launcher {
  left: 1rem;
  bottom: 1rem;
  min-height: 48px;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(16, 36, 61, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  color: var(--heading);
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
}

.cookie-panel-open {
  overflow: hidden;
}

.flow > * + * {
  margin-top: 1rem;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.visual-card,
.hero-core,
.page-core {
  animation: float 7s ease-in-out infinite;
}

.visual-card.bottom-left {
  animation-delay: 0.4s;
}

.visual-card.bottom-right {
  animation-delay: 0.8s;
}

@media (max-width: 1024px) {
  .hero-grid,
  .page-hero-grid,
  .split-layout,
  .article-layout,
  .contact-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

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

  .grid-3,
  .trust-grid,
  .content-grid,
  .footer-grid,
  .verdict-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .editorial-showcase {
    grid-template-columns: 1fr;
  }

  .sticky-side {
    position: static;
  }

  .cookie-banner {
    left: 1rem;
    width: auto;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
  }

  .main-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.75rem);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(16, 36, 61, 0.1);
    border-radius: 24px;
    box-shadow: var(--shadow);
    padding: 0.6rem;
    display: none;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .main-nav a {
    display: block;
    width: 100%;
  }

  .cookie-panel-head {
    flex-direction: column;
  }

  .cookie-close {
    align-self: flex-end;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: clamp(2.25rem, 10vw, 3.2rem);
  }

  .hero,
  .page-hero {
    padding-top: 2rem;
  }

  .hero-visual,
  .page-hero-visual {
    min-height: 420px;
  }

  .hero-core,
  .page-core {
    inset: 24% 22% auto auto;
    width: 145px;
    height: 145px;
  }

  .visual-card {
    min-width: 120px;
    padding: 0.9rem;
  }

  .cookie-banner,
  .cookie-panel {
    width: calc(100vw - 1.25rem);
    left: 50%;
    right: auto;
    bottom: 0.625rem;
    padding: 1.1rem;
    border-radius: 24px;
    transform: translateX(-50%);
  }

  .cookie-panel {
    top: auto;
    max-height: calc(100vh - 1.25rem);
    overflow-y: auto;
  }

  .cookie-option {
    align-items: flex-start;
  }

  .cookie-launcher {
    left: 50%;
    bottom: 0.75rem;
    transform: translateX(-50%);
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .trust-grid,
  .content-grid,
  .category-grid,
  .footer-grid,
  .field-grid,
  .verdict-grid {
    grid-template-columns: 1fr;
  }

  .editorial-hero,
  .editorial-card {
    padding: 1.15rem;
  }

  .editorial-hero h3 {
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
