:root {
  --navy-950: #09182c;
  --navy-900: #10233f;
  --navy-800: #173353;
  --navy-700: #244767;
  --navy-600: #3e5e7b;
  --slate-700: #46596e;
  --slate-600: #66758a;
  --slate-500: #7b899a;
  --slate-300: #cbd3dc;
  --slate-200: #dfe5e9;
  --slate-100: #edf1f2;
  --paper: #fbfcfa;
  --warm: #f4f5f1;
  --white: #fff;
  --red: #e43c4f;
  --red-dark: #c92c40;
  --red-soft: #fff0f1;
  --teal: #0d938d;
  --teal-dark: #08736f;
  --teal-soft: #e8f7f5;
  --amber: #bd7a18;
  --amber-soft: #fff7e7;
  --font-sans: Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Segoe UI", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --container: 1240px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 18px rgb(9 24 44 / 0.06);
  --shadow: 0 18px 50px rgb(9 24 44 / 0.11);
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--navy-900);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.search-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  display: block;
}

::selection {
  color: var(--white);
  background: var(--red);
}

:focus-visible {
  outline: 3px solid rgb(13 147 141 / 0.42);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 18px;
  clip: auto;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 8px;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.section {
  padding: 104px 0;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--teal-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  background: var(--red);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgb(228 60 79 / 0.1);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 42px;
}

.section-heading--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  max-width: none;
  gap: 40px;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.045em;
}

.section-heading > p,
.section-heading--row > p {
  max-width: 430px;
  margin: 0;
  color: var(--slate-600);
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 8px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 800;
}

.text-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 0.25s var(--ease);
}

.text-link:hover svg {
  transform: translateX(4px);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: 76px;
  background: rgb(251 252 250 / 0.92);
  border-bottom: 1px solid rgb(16 35 63 / 0.09);
  backdrop-filter: blur(18px) saturate(145%);
}

.admin-bar .site-header {
  top: 32px;
}

.site-header__inner,
.header-inner,
.site-header .container {
  display: flex;
  align-items: center;
  height: 100%;
}

.site-header__inner {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 202px;
}

.site-brand img,
.site-brand__logo {
  width: 202px;
  height: auto;
  max-height: 56px;
}

.site-brand__logo .custom-logo-link,
.site-brand__logo img {
  display: block;
  width: 202px;
  max-height: 56px;
  object-fit: contain;
  object-position: left center;
}

.site-brand__name {
  display: grid;
  line-height: 1.2;
}

.site-brand__primary {
  color: var(--navy-900);
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.site-brand__tagline {
  margin-top: 3px;
  color: var(--slate-500);
  font-size: 9px;
  font-weight: 650;
}

.site-brand__fallback {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  color: var(--navy-900);
  font-size: 23px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.site-brand__fallback b {
  color: var(--red);
}

.primary-nav {
  margin-left: auto;
}

.primary-nav ul,
.primary-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-nav a,
.primary-menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 13px;
  color: var(--navy-800);
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s, background 0.2s;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-menu a:hover {
  color: var(--red-dark);
  background: var(--red-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
}

.search-trigger,
.header-search-button,
[data-search-open] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 13px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 11px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.search-trigger:hover,
[data-search-open]:hover {
  border-color: var(--slate-300);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.search-trigger svg,
[data-search-open] svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.search-trigger kbd,
[data-search-open] kbd {
  margin-left: 9px;
  color: var(--slate-500);
  font-family: var(--font-mono);
  font-size: 10px;
}

.menu-toggle,
[data-menu-toggle] {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 9px;
  cursor: pointer;
}

.menu-toggle__icon,
[data-menu-toggle] .menu-toggle__icon {
  position: relative;
  width: 22px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 9px;
}

.menu-toggle .screen-reader-text,
[data-menu-toggle] .screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  background: transparent;
}

.menu-toggle__icon::before,
.menu-toggle__icon::after,
[data-menu-toggle] .menu-toggle__icon::before,
[data-menu-toggle] .menu-toggle__icon::after {
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  content: "";
  background: var(--navy-900);
  border-radius: 9px;
  transition: transform 0.2s, top 0.2s;
}

.menu-toggle__icon::before,
[data-menu-toggle] .menu-toggle__icon::before {
  top: -7px;
}

.menu-toggle__icon::after,
[data-menu-toggle] .menu-toggle__icon::after {
  top: 7px;
}

.menu-toggle__label {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 715px;
  padding: 86px 0 92px;
  background:
    radial-gradient(circle at 7% 8%, rgb(13 147 141 / 0.1), transparent 27%),
    radial-gradient(circle at 94% 90%, rgb(228 60 79 / 0.09), transparent 25%),
    linear-gradient(135deg, #f7f9f7 0%, #f1f4f1 57%, #f7f7f3 100%);
  border-bottom: 1px solid rgb(16 35 63 / 0.08);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.36;
  background-image:
    linear-gradient(rgb(16 35 63 / 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgb(16 35 63 / 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, #000, transparent 52%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(410px, 0.72fr);
  align-items: center;
  gap: clamp(60px, 8vw, 118px);
}

.hero__content {
  min-width: 0;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 760;
  line-height: 1.15;
  letter-spacing: -0.058em;
}

.hero h1 strong {
  position: relative;
  color: var(--red);
  font-weight: 900;
}

.hero h1 strong::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 5px;
  content: "";
  opacity: 0.22;
  background: var(--red);
  border-radius: 10px;
}

.hero__lead {
  max-width: 650px;
  margin: 25px 0 30px;
  color: var(--slate-700);
  font-size: 17px;
  line-height: 1.8;
}

.hero-search {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 670px;
  min-height: 68px;
  padding: 7px 7px 7px 20px;
  background: var(--white);
  border: 2px solid var(--navy-900);
  border-radius: 15px;
  box-shadow: 0 16px 35px rgb(9 24 44 / 0.11);
}

.hero-search > svg {
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: var(--slate-600);
  stroke-linecap: round;
  stroke-width: 2;
}

.hero-search input {
  width: 100%;
  min-width: 0;
  height: 50px;
  padding: 0 14px;
  color: var(--navy-950);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 15px;
}

.hero-search input::placeholder {
  color: #8995a3;
}

.hero-search > button {
  flex: 0 0 auto;
  min-width: 83px;
  height: 50px;
  color: var(--white);
  background: var(--navy-900);
  border: 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.hero-search > button:hover {
  background: var(--red);
  transform: translateY(-1px);
}

.search-suggestions {
  position: absolute;
  z-index: 30;
  top: calc(100% + 9px);
  right: 0;
  left: 0;
  overflow: hidden;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 13px;
  box-shadow: var(--shadow);
}

.search-suggestions a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 8px;
}

.search-suggestions a:hover,
.search-suggestions a.is-selected {
  background: var(--slate-100);
}

.search-suggestions a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 58px;
  height: 24px;
  padding: 0 7px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 5px;
  font-size: 10px;
  font-weight: 800;
}

.search-suggestions a strong {
  font-size: 14px;
}

.search-suggestions__empty {
  margin: 0;
  padding: 16px;
  color: var(--slate-600);
  font-size: 14px;
  text-align: center;
}

.popular-keywords {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 14px;
  margin-top: 15px;
  color: var(--slate-600);
  font-size: 12px;
}

.popular-keywords > span {
  color: var(--navy-900);
  font-weight: 800;
}

.popular-keywords a {
  border-bottom: 1px solid transparent;
}

.popular-keywords a:hover {
  color: var(--red-dark);
  border-color: currentColor;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 0;
  margin: 30px 0 0;
  color: var(--slate-600);
  list-style: none;
  font-size: 12px;
  font-weight: 700;
}

.trust-row li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-row svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.trust-row li > span {
  display: inline-flex;
  align-items: center;
  height: 17px;
  padding: 0 4px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 3px;
  font-family: var(--font-mono);
  font-size: 8px;
}

.hero-board {
  position: relative;
  overflow: hidden;
  padding: 31px;
  color: var(--white);
  background:
    radial-gradient(circle at 110% -10%, rgb(13 147 141 / 0.42), transparent 37%),
    linear-gradient(145deg, #112b48, #09182c 74%);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 24px;
  box-shadow: 0 28px 60px rgb(9 24 44 / 0.2);
  transform: rotate(1.2deg);
}

.hero-board::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.07;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}

.hero-board > * {
  position: relative;
}

.hero-board__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgb(255 255 255 / 0.15);
}

.hero-board__kicker {
  margin: 0 0 7px;
  color: #70d7cf;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.hero-board h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.hero-board time {
  color: rgb(255 255 255 / 0.44);
  font-family: var(--font-mono);
  font-size: 12px;
}

.field-checklist {
  padding: 8px 0 4px;
  margin: 0;
  list-style: none;
}

.field-checklist li {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 77px;
  border-bottom: 1px solid rgb(255 255 255 / 0.1);
}

.field-checklist li > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  color: #9ce0db;
  background: rgb(13 147 141 / 0.16);
  border: 1px solid rgb(112 215 207 / 0.22);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
}

.field-checklist strong,
.field-checklist small {
  display: block;
}

.field-checklist strong {
  margin-bottom: 2px;
  font-size: 14px;
}

.field-checklist small {
  color: rgb(255 255 255 / 0.55);
  font-size: 11px;
}

.field-checklist i {
  padding: 4px 7px;
  color: #76d8d0;
  background: rgb(13 147 141 / 0.12);
  border-radius: 4px;
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
}

.hero-board__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #b9c7d7;
  font-size: 12px;
  font-weight: 700;
}

.hero-board__link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.hero-board__stamp {
  position: absolute;
  right: -32px;
  bottom: -31px;
  display: flex;
  align-items: center;
  gap: 6px;
  width: 116px;
  height: 116px;
  padding: 21px 0 0 19px;
  color: rgb(255 255 255 / 0.12);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 999px;
  transform: rotate(-13deg);
}

.hero-board__stamp span {
  font-size: 22px;
  font-weight: 900;
}

.hero-board__stamp small {
  font-family: var(--font-mono);
  font-size: 6px;
  line-height: 1.25;
}

/* Official shortcuts */
.quick-section {
  background: var(--paper);
}

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

.quick-card {
  position: relative;
  display: grid;
  grid-template-columns: 45px 1fr 20px;
  align-items: center;
  gap: 13px;
  min-height: 114px;
  padding: 19px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  transition: border-color 0.24s, box-shadow 0.24s, transform 0.24s var(--ease);
}

.quick-card:hover {
  z-index: 2;
  border-color: rgb(13 147 141 / 0.5);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.quick-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 12px;
}

.quick-card:nth-child(3n + 1) .quick-card__icon {
  color: var(--red-dark);
  background: var(--red-soft);
}

.quick-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.quick-card__icon:not(:has(svg)) {
  font-family: var(--font-serif, serif);
  font-size: 17px;
  font-weight: 900;
}

.quick-card > b {
  color: var(--slate-300);
  font-size: 16px;
  font-weight: 500;
}

.quick-card__body {
  min-width: 0;
}

.quick-card__body > * {
  display: block;
}

.quick-card__body small {
  margin-bottom: 1px;
  color: var(--slate-500);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.quick-card__body strong {
  overflow: hidden;
  margin-bottom: 2px;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-card__body > span {
  overflow: hidden;
  color: var(--slate-600);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-card__arrow {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--slate-300);
  stroke-width: 1.8;
  transition: stroke 0.2s, transform 0.2s;
}

.quick-card:hover .quick-card__arrow {
  stroke: var(--teal);
  transform: translateX(3px);
}

/* Workflow */
.workflow-section {
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.workflow-section .eyebrow {
  color: #68d3cb;
}

.workflow-section .section-heading h2 {
  color: var(--white);
}

.workflow-section .section-heading > p {
  margin-top: 14px;
  color: #91a2b6;
}

.workflow-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 11px;
}

.workflow-step {
  position: relative;
  z-index: 2;
  min-height: 245px;
  padding: 25px 23px;
  background: rgb(255 255 255 / 0.045);
  border: 1px solid rgb(255 255 255 / 0.1);
  border-radius: 15px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s var(--ease);
}

.workflow-step:hover {
  background: rgb(255 255 255 / 0.085);
  border-color: rgb(104 211 203 / 0.42);
  transform: translateY(-5px);
}

.workflow-step__number {
  display: block;
  margin-bottom: 32px;
  color: #68d3cb;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
}

.workflow-step strong {
  display: block;
  margin-bottom: 9px;
  font-size: 18px;
  letter-spacing: -0.025em;
}

.workflow-step p {
  min-height: 51px;
  margin: 0;
  color: #8ea0b4;
  font-size: 12px;
  line-height: 1.65;
}

.workflow-step__link {
  position: absolute;
  right: 23px;
  bottom: 22px;
  left: 23px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #b9c6d4;
  font-size: 11px;
  font-weight: 700;
}

.workflow-step__link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.workflow-connector {
  display: none;
}

/* Data */
.data-section {
  background: #f1f4f2;
}

.data-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(520px, 1fr);
  align-items: center;
  gap: clamp(70px, 9vw, 132px);
}

.data-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 53px);
  line-height: 1.18;
  letter-spacing: -0.05em;
}

.data-copy h2 strong {
  color: var(--teal-dark);
}

.data-copy > p:not(.eyebrow) {
  margin: 22px 0 27px;
  color: var(--slate-600);
  line-height: 1.82;
}

.data-principles {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.data-principles li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.data-principles svg {
  width: 23px;
  height: 23px;
  padding: 4px;
  fill: none;
  stroke: var(--teal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.data-principles strong,
.data-principles small {
  display: block;
}

.data-principles strong {
  font-size: 13px;
}

.data-principles small {
  color: var(--slate-600);
  font-size: 11px;
}

.market-card {
  position: relative;
  overflow: hidden;
  padding: 29px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.market-card::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 190px;
  height: 190px;
  content: "";
  background: radial-gradient(circle at top right, rgb(13 147 141 / 0.08), transparent 68%);
  pointer-events: none;
}

.market-card.is-loading {
  opacity: 0.72;
}

.market-card.is-loading [data-market-refresh] {
  pointer-events: none;
}

.market-card__head,
.market-summary,
.market-card__foot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
  color: var(--teal-dark);
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.status-badge i {
  width: 6px;
  height: 6px;
  background: #25b89f;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgb(37 184 159 / 0.12);
}

.market-card h3 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.market-card__unit {
  padding: 5px 8px;
  color: var(--slate-600);
  background: var(--slate-100);
  border-radius: 5px;
  font-size: 9px;
  font-weight: 700;
}

.market-summary {
  justify-content: flex-start;
  gap: 60px;
  padding: 23px 0 13px;
}

.market-summary small,
.market-summary strong {
  display: block;
}

.market-summary small {
  margin-bottom: 3px;
  color: var(--slate-500);
  font-size: 10px;
}

.market-summary strong {
  font-size: 17px;
}

.market-summary__value {
  color: var(--red-dark);
  font-family: var(--font-mono);
  font-size: 22px !important;
}

.market-chart {
  position: relative;
  height: 245px;
  margin-top: 8px;
}

.chart-grid {
  position: absolute;
  inset: 17px 0 37px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.chart-grid span {
  height: 1px;
  background: var(--slate-100);
}

.chart-bars {
  position: absolute;
  inset: 11px 12px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  gap: 20px;
}

.chart-bar {
  display: grid;
  grid-template-rows: 24px 1fr 28px;
  align-items: end;
  width: 52px;
  height: 100%;
  text-align: center;
}

.chart-bar span {
  align-self: center;
  color: var(--slate-500);
  font-family: var(--font-mono);
  font-size: 9px;
}

.chart-bar i {
  display: block;
  width: 100%;
  height: calc(var(--value) * 1%);
  min-height: 6px;
  background: linear-gradient(to top, #bccbd2, #dce6e9);
  border-radius: 6px 6px 2px 2px;
  transition: height 0.55s var(--ease), background 0.3s;
}

.chart-bar.is-latest i {
  background: linear-gradient(to top, var(--teal-dark), #3fc0b5);
  box-shadow: 0 9px 18px rgb(13 147 141 / 0.18);
}

.chart-bar.is-latest span {
  color: var(--teal-dark);
  font-weight: 800;
}

.chart-bar small {
  align-self: center;
  color: var(--slate-600);
  font-size: 10px;
  font-weight: 700;
}

.market-card__foot {
  min-height: 44px;
  padding-top: 12px;
  border-top: 1px solid var(--slate-100);
}

.market-card__foot span {
  color: var(--slate-500);
  font-size: 9px;
}

.market-card__foot button {
  padding: 6px 9px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border: 0;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.market-card__notice {
  margin: 8px 0 0;
  color: #8b96a3;
  font-size: 9px;
  line-height: 1.55;
}

/* Transaction insights */
.transaction-insights,
.real-price-section {
  background: var(--paper);
}

.insight-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.insight-links a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 13px;
  min-height: 128px;
  padding: 24px;
  color: var(--slate-900);
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 15px;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.insight-links a:hover {
  border-color: rgb(13 147 141 / 0.45);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.insight-links span {
  grid-row: 1 / span 2;
  min-width: 54px;
  height: 54px;
  padding: 18px 7px 0;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 13px;
  font-size: 10px;
  font-weight: 800;
  text-align: center;
}

.insight-links strong {
  align-self: end;
  font-size: 17px;
}

.insight-links small {
  color: var(--slate-500);
  line-height: 1.5;
}

.real-home-status,
.real-data-status {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 13px;
  padding: 14px 17px;
  margin-top: 18px;
  color: var(--slate-600);
  background: var(--slate-100);
  border-radius: 10px;
  font-size: 11px;
}

.real-home-status strong,
.real-data-status strong { color: var(--slate-900); }

.real-home-status::before,
.real-data-status::before {
  width: 8px;
  height: 8px;
  content: "";
  background: #d3a72c;
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgb(211 167 44 / 0.14);
}

.real-home-status.is-ready::before,
.real-data-status.is-ready::before {
  background: #25a889;
  box-shadow: 0 0 0 4px rgb(37 168 137 / 0.14);
}

.real-home-status.is-error::before,
.real-data-status.is-error::before {
  background: var(--red);
  box-shadow: 0 0 0 4px rgb(201 65 59 / 0.13);
}

.real-price-hero {
  padding: clamp(72px, 9vw, 124px) 0;
  color: var(--white);
  background: radial-gradient(circle at 82% 18%, rgb(31 181 168 / 0.22), transparent 28%), linear-gradient(135deg, #0b2338, #123b4b);
}

.real-price-hero h1 {
  max-width: 800px;
  margin: 10px 0 21px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.08;
  letter-spacing: -0.055em;
}

.real-price-hero h1 strong { color: #58d1c7; }

.real-price-hero > .container > p:not(.eyebrow) {
  max-width: 650px;
  color: #c4d3db;
  line-height: 1.75;
}

.real-price-hero .real-data-status {
  max-width: 650px;
  color: #c4d3db;
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.12);
}

.real-price-hero .real-data-status strong { color: var(--white); }

.real-filter {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(210px, 1fr) minmax(180px, 1fr) auto;
  align-items: end;
  gap: 12px;
  padding: 20px;
  margin-bottom: 55px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
}

.real-filter label span {
  display: block;
  margin: 0 0 7px;
  color: var(--slate-600);
  font-size: 10px;
  font-weight: 800;
}

.real-filter select,
.real-filter input {
  width: 100%;
  height: 48px;
  padding: 0 13px;
  color: var(--slate-900);
  background: var(--slate-100);
  border: 1px solid var(--slate-200);
  border-radius: 8px;
}

.real-filter button { min-width: 110px; height: 48px; }

.real-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}

.real-section-heading h2 {
  margin: 4px 0 0;
  font-size: clamp(30px, 4vw, 46px);
  letter-spacing: -0.045em;
}

.real-section-heading > p {
  max-width: 480px;
  margin: 0;
  color: var(--slate-500);
  font-size: 11px;
  line-height: 1.6;
  text-align: right;
}

.real-section-heading--transactions { margin-top: 70px; }

.real-ranking-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.real-ranking-grid[aria-busy="true"] { opacity: 0.55; }

.real-rank-card {
  position: relative;
  min-height: 175px;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
}

.real-rank-card__rank {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #c5cfd7;
  font-family: var(--font-mono);
  font-size: 21px;
  font-weight: 800;
}

.real-rank-card small,
.real-rank-card strong,
.real-rank-card b { display: block; }

.real-rank-card small {
  max-width: calc(100% - 45px);
  color: var(--teal-dark);
  font-size: 9px;
  font-weight: 800;
}

.real-rank-card strong {
  margin-top: 11px;
  overflow: hidden;
  font-size: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.real-rank-card p { margin: 8px 0 18px; color: var(--slate-500); font-size: 11px; }
.real-rank-card b { color: var(--red-dark); font-size: 18px; }

.real-empty {
  grid-column: 1 / -1;
  padding: 55px 25px;
  color: var(--slate-600);
  background: var(--white);
  border: 1px dashed var(--slate-300);
  border-radius: 14px;
  text-align: center;
}

.real-empty strong { color: var(--slate-900); font-size: 18px; }
.real-empty p { margin: 8px 0 0; }

.real-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 14px;
}

.real-table { width: 100%; min-width: 740px; border-collapse: collapse; }

.real-table th,
.real-table td {
  padding: 15px 17px;
  border-bottom: 1px solid var(--slate-100);
  font-size: 11px;
  text-align: left;
  white-space: pre-line;
}

.real-table th { color: var(--slate-600); background: var(--slate-100); font-size: 9px; }
.real-table__price { color: var(--red-dark); font-weight: 800; }

.real-disclaimer {
  margin: 15px 0 0;
  color: var(--slate-500);
  font-size: 10px;
  line-height: 1.65;
}

/* Calculators */
.calculator-section {
  background: var(--paper);
}

.calculator-tabs {
  display: flex;
  gap: 7px;
  overflow-x: auto;
  padding: 5px;
  margin-bottom: 15px;
  background: var(--slate-100);
  border-radius: 13px;
  scrollbar-width: none;
}

.calculator-tabs::-webkit-scrollbar {
  display: none;
}

.calculator-tabs button {
  flex: 1 0 auto;
  min-width: 120px;
  height: 45px;
  padding: 0 16px;
  color: var(--slate-600);
  background: transparent;
  border: 0;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.calculator-tabs button[aria-selected="true"] {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 2px 9px rgb(9 24 44 / 0.08);
}

.calculator-shell {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.calculator-panel {
  display: grid;
  grid-template-columns: minmax(225px, 0.38fr) minmax(420px, 1fr) minmax(290px, 0.65fr);
  min-height: 420px;
}

.calculator-panel__intro {
  display: flex;
  flex-direction: column;
  gap: 21px;
  padding: 34px 30px;
  background:
    radial-gradient(circle at 100% 100%, rgb(13 147 141 / 0.17), transparent 43%),
    var(--navy-900);
  color: var(--white);
}

.calculator-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  height: 49px;
  color: #83ded7;
  background: rgb(13 147 141 / 0.17);
  border: 1px solid rgb(131 222 215 / 0.18);
  border-radius: 13px;
}

.calculator-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.calculator-panel__intro small {
  color: #72d3cb;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.calculator-panel__intro h3 {
  margin: 5px 0 10px;
  font-size: 23px;
  line-height: 1.28;
  letter-spacing: -0.035em;
}

.calculator-panel__intro p {
  margin: 0;
  color: #9fb0c1;
  font-size: 12px;
  line-height: 1.75;
}

.calculator-panel form {
  padding: 34px 31px;
}

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

.form-grid--compact {
  grid-template-columns: 1fr;
}

.form-grid label {
  display: block;
  min-width: 0;
}

.form-grid label > span:first-child {
  display: block;
  margin-bottom: 7px;
  color: var(--navy-800);
  font-size: 11px;
  font-weight: 800;
}

.input-unit {
  position: relative;
  display: block;
}

.form-grid input,
.form-grid select {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  color: var(--navy-950);
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: 9px;
  outline: 0;
  font-size: 13px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-grid input:hover,
.form-grid select:hover {
  border-color: var(--slate-300);
}

.form-grid input:focus,
.form-grid select:focus {
  background: var(--white);
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgb(13 147 141 / 0.12);
}

.input-unit input {
  padding-right: 50px;
}

.input-unit em {
  position: absolute;
  top: 50%;
  right: 13px;
  color: var(--slate-500);
  font-size: 11px;
  font-style: normal;
  transform: translateY(-50%);
  pointer-events: none;
}

.field-help {
  display: block;
  margin-top: 5px;
  color: var(--slate-500);
  font-size: 9px;
}

.form-actions {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

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

.button--primary {
  color: var(--white);
  background: var(--teal-dark);
  border: 1px solid var(--teal-dark);
}

.button--primary:hover {
  background: var(--navy-900);
  border-color: var(--navy-900);
}

.button--ghost {
  color: var(--slate-600);
  background: var(--white);
  border: 1px solid var(--slate-200);
}

.calculator-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 32px 29px;
  background: #f5f7f5;
  border-left: 1px solid var(--slate-200);
}

.calculator-result > p {
  margin: 0;
  color: var(--slate-600);
  font-size: 12px;
  line-height: 1.75;
}

.calculator-result__eyebrow {
  margin: 0 0 4px;
  color: var(--teal-dark);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.calculator-result__value {
  margin: 0 0 12px;
  color: var(--navy-950);
  font-size: clamp(27px, 3vw, 39px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.045em;
}

.calculator-result__value em {
  color: var(--red-dark);
  font-style: normal;
}

.calculator-result__summary {
  display: grid;
  gap: 7px;
  padding: 14px 0;
  margin: 0;
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.calculator-result__row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--slate-600);
  font-size: 12px;
}

.calculator-result__row strong {
  color: var(--navy-800);
  text-align: right;
}

.calculator-result__formula,
.calculator-result__notice {
  margin: 11px 0 0;
  color: var(--slate-500);
  font-size: 11px;
  line-height: 1.55;
}

.calculator-result__error {
  padding: 13px;
  color: #a72c3a;
  background: var(--red-soft);
  border: 1px solid rgb(228 60 79 / 0.18);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
}

.calculator-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 15px 18px;
  margin: 14px 0 0;
  color: var(--slate-600);
  background: var(--amber-soft);
  border: 1px solid rgb(189 122 24 / 0.16);
  border-radius: 11px;
  font-size: 10px;
  line-height: 1.65;
}

.calculator-disclaimer svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  fill: none;
  stroke: var(--amber);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.calculator-disclaimer strong {
  color: #82500c;
}

/* Posts */
.posts-section {
  background: var(--warm);
}

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

.post-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease);
}

.post-card:hover {
  border-color: var(--slate-300);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.post-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #e8edeb;
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.post-card:hover .post-card__media img {
  transform: scale(1.035);
}

.post-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #8fa19e;
  background:
    linear-gradient(135deg, rgb(13 147 141 / 0.08), rgb(16 35 63 / 0.06)),
    repeating-linear-gradient(45deg, transparent 0 12px, rgb(255 255 255 / 0.36) 12px 13px);
}

.post-card__placeholder svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.25;
}

.post-card__content {
  padding: 22px;
}

.post-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 11px;
  color: var(--slate-500);
  font-family: var(--font-mono);
  font-size: 9px;
}

.post-card__meta span {
  color: var(--teal-dark);
  font-weight: 800;
}

.post-card h3 {
  display: -webkit-box;
  overflow: hidden;
  min-height: 55px;
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.post-card h2 {
  display: -webkit-box;
  overflow: hidden;
  min-height: 55px;
  margin: 0 0 9px;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.post-card h2 a:hover {
  color: var(--red-dark);
}

.post-card__excerpt p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 61px;
  margin: 0 0 16px;
  color: var(--slate-600);
  font-size: 12px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.post-card h3 a:hover {
  color: var(--red-dark);
}

.post-card__content > p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 61px;
  margin: 0 0 16px;
  color: var(--slate-600);
  font-size: 12px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.post-card__more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 800;
}

.post-card__more svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.empty-posts {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 190px;
  padding: 32px;
  background: var(--white);
  border: 1px dashed var(--slate-300);
  border-radius: var(--radius);
}

.empty-posts > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  color: var(--teal);
  background: var(--teal-soft);
  border-radius: 14px;
}

.empty-posts svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.empty-posts h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.empty-posts p {
  margin: 0;
  color: var(--slate-600);
  font-size: 12px;
}

/* Editorial standards */
.standards-section {
  padding-top: 82px;
  padding-bottom: 82px;
  background: var(--paper);
}

.standards-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  padding: 55px 60px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0, rgb(228 60 79 / 0.2), transparent 32%),
    var(--navy-900);
  border-radius: 22px;
}

.standards-card .eyebrow {
  color: #73d6cf;
}

.standards-card h2 {
  margin: 0;
  font-size: clamp(31px, 3.2vw, 46px);
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.standards-card h2 strong {
  color: #83ded7;
}

.standards-list {
  display: grid;
  gap: 0;
}

.standards-list > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  padding: 19px 0;
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
}

.standards-list > div:first-child {
  padding-top: 3px;
}

.standards-list > div:last-child {
  border-bottom: 0;
}

.standards-list > div > span {
  color: #6bd0c8;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 800;
}

.standards-list p {
  margin: 0;
}

.standards-list strong,
.standards-list small {
  display: block;
}

.standards-list strong {
  margin-bottom: 3px;
  font-size: 13px;
}

.standards-list small {
  color: #94a6b9;
  font-size: 11px;
}

/* Search command */
.search-dialog,
.global-search,
.site-search {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: min(13vh, 110px) 20px 40px;
  background: rgb(9 24 44 / 0.68);
  backdrop-filter: blur(10px);
}

.search-dialog__panel,
.global-search__panel,
.site-search__inner {
  position: relative;
  overflow: visible;
  width: min(100%, 680px);
  max-height: min(75vh, 650px);
  background: var(--white);
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 17px;
  box-shadow: 0 34px 90px rgb(0 0 0 / 0.28);
}

.search-dialog__form,
.global-search__form,
.site-search__form {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--slate-200);
}

.search-dialog__form svg,
.global-search__form svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--slate-500);
  stroke-width: 2;
}

.site-search__form > span[aria-hidden="true"] {
  color: var(--slate-500);
  font-size: 23px;
  line-height: 1;
}

.search-dialog__form input,
.global-search__form input,
.site-search__form input {
  flex: 1;
  min-width: 0;
  height: 44px;
  padding: 0;
  color: var(--navy-950);
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 17px;
}

.site-search__form > button {
  min-width: 65px;
  height: 38px;
  color: var(--white);
  background: var(--navy-900);
  border: 0;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.search-dialog__close,
.global-search__close,
.site-search__close,
[data-search-close] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 32px;
  color: var(--slate-600);
  background: var(--slate-100);
  border: 0;
  border-radius: 7px;
  font-family: var(--font-mono);
  font-size: 10px;
  cursor: pointer;
}

.site-search__close {
  position: absolute;
  z-index: 2;
  top: -43px;
  right: 0;
  width: 36px;
  min-width: 36px;
  height: 36px;
  color: var(--white);
  background: rgb(255 255 255 / 0.12);
  font-size: 22px;
}

.search-dialog__results,
.global-search__results,
.site-search__suggestions,
[data-global-results] {
  overflow-y: auto;
  max-height: 485px;
  padding: 10px;
}

.global-result-group > p {
  padding: 7px 9px 4px;
  margin: 0;
  color: var(--slate-500);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.global-result {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px;
  border-radius: 9px;
}

.global-result:hover,
.global-result.is-selected {
  background: var(--slate-100);
}

.global-result__type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 39px;
  height: 39px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 9px;
  font-size: 10px;
  font-weight: 900;
}

.global-result strong,
.global-result small {
  display: block;
}

.global-result strong {
  font-size: 13px;
}

.global-result small {
  color: var(--slate-500);
  font-size: 10px;
}

.search-dialog__hint,
.global-search__hint {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 16px;
  color: var(--slate-500);
  background: #f8f9f7;
  border-top: 1px solid var(--slate-200);
  font-size: 9px;
}

/* Generic content pages */
.content-header,
.archive-header,
.search-header {
  padding: 72px 0 52px;
  background: var(--warm);
  border-bottom: 1px solid var(--slate-200);
}

.content-header h1,
.archive-header h1,
.search-header h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.2;
  letter-spacing: -0.05em;
}

.content-wrap,
.archive-content,
.search-content {
  padding: 70px 0 100px;
}

.entry-content {
  max-width: 780px;
  margin-inline: auto;
  color: #263c53;
  font-size: 17px;
  line-height: 1.9;
}

.entry-content h2,
.entry-content h3 {
  color: var(--navy-950);
  letter-spacing: -0.035em;
}

.entry-content h2 {
  margin: 2.2em 0 0.75em;
  font-size: 31px;
}

.entry-content h3 {
  margin: 1.8em 0 0.65em;
  font-size: 23px;
}

.entry-content a {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.entry-content blockquote {
  padding: 18px 22px;
  margin: 28px 0;
  color: var(--navy-800);
  background: var(--teal-soft);
  border-left: 4px solid var(--teal);
  border-radius: 0 10px 10px 0;
}

.entry-content table {
  width: 100%;
  border-spacing: 0;
  border-collapse: separate;
  border: 1px solid var(--slate-200);
  border-radius: 10px;
}

.entry-content th,
.entry-content td {
  padding: 12px;
  border-bottom: 1px solid var(--slate-200);
  text-align: left;
}

.entry-content th {
  background: var(--slate-100);
}

.entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 13px;
  color: var(--slate-600);
  font-size: 12px;
}

.entry__title {
  max-width: 920px;
  margin: 0;
  color: var(--navy-950);
  font-size: clamp(34px, 4.7vw, 62px);
  line-height: 1.18;
  letter-spacing: -0.052em;
}

.entry__category {
  margin-bottom: 11px;
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 800;
}

.entry__featured-image {
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto 52px;
  border-radius: 18px;
}

.entry__featured-image img {
  width: 100%;
  height: auto;
}

.entry__footer,
.entry-after {
  max-width: 780px;
  padding-bottom: 70px;
  margin-inline: auto;
}

.entry__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 28px;
  margin-top: 42px;
  border-top: 1px solid var(--slate-200);
}

.entry__tags a {
  padding: 6px 10px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
}

.archive-header__description {
  max-width: 680px;
  margin: 15px 0 0;
  color: var(--slate-600);
}

.archive-header__eyebrow {
  margin: 0 0 8px;
  color: var(--teal-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
}

.archive-header__query {
  display: block;
  margin-top: 5px;
  color: var(--red-dark);
  font-size: 0.62em;
}

.archive-search,
.error-page__search {
  display: flex;
  max-width: 620px;
  min-height: 54px;
  padding: 5px;
  margin-top: 28px;
  background: var(--white);
  border: 1px solid var(--slate-300);
  border-radius: 11px;
}

.archive-search input,
.error-page__search input {
  flex: 1;
  min-width: 0;
  padding: 0 13px;
  background: transparent;
  border: 0;
  outline: 0;
}

.archive-search button,
.error-page__search button {
  min-width: 72px;
  color: var(--white);
  background: var(--navy-900);
  border: 0;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.search-result-count {
  margin: 0 0 22px;
  color: var(--slate-600);
  font-size: 13px;
}

.search-results {
  display: grid;
  gap: 12px;
}

.search-result {
  position: relative;
  padding: 26px 30px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 13px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-result:hover {
  border-color: var(--slate-300);
  box-shadow: var(--shadow-sm);
}

.search-result__type {
  margin: 0 0 5px;
  color: var(--teal-dark);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 800;
}

.search-result__title {
  margin: 0 0 7px;
  font-size: 21px;
  letter-spacing: -0.03em;
}

.search-result__title a:hover {
  color: var(--red-dark);
}

.search-result__excerpt p {
  margin: 0;
  color: var(--slate-600);
  font-size: 12px;
}

.search-result__date {
  display: block;
  margin-top: 12px;
  color: var(--slate-500);
  font-family: var(--font-mono);
  font-size: 9px;
}

.empty-state,
.error-page {
  max-width: 720px;
  padding: 65px 30px;
  margin-inline: auto;
  text-align: center;
}

.empty-state h2,
.error-page h1 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 43px);
  letter-spacing: -0.04em;
}

.empty-state p,
.error-page__description {
  color: var(--slate-600);
}

.empty-state .button,
.error-page > .button {
  margin-top: 16px;
  color: var(--white);
  background: var(--navy-900);
  border: 1px solid var(--navy-900);
}

.error-page__code {
  margin: 0 0 -15px;
  color: var(--red);
  font-family: var(--font-mono);
  font-size: clamp(72px, 13vw, 135px);
  font-weight: 900;
  line-height: 1;
  opacity: 0.16;
}

.error-page__search {
  margin-right: auto;
  margin-left: auto;
}

.post-navigation .nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.post-navigation a {
  display: block;
  min-height: 95px;
  padding: 18px;
  background: var(--warm);
  border: 1px solid var(--slate-200);
  border-radius: 11px;
}

.post-navigation__label,
.post-navigation__title {
  display: block;
}

.post-navigation__label {
  margin-bottom: 4px;
  color: var(--slate-500);
  font-size: 9px;
}

.post-navigation__title {
  font-size: 13px;
  font-weight: 800;
}

.pagination,
.nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
}

.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
}

.page-numbers.current,
.page-numbers:hover {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
}

/* Footer */
.site-footer {
  color: #c5d0dc;
  background: #071425;
}

.site-footer__main,
.footer-main,
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 60px;
  padding-top: 58px;
  padding-bottom: 46px;
}

.site-footer__inner,
.site-footer__bottom {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-footer__inner {
  min-height: 185px;
}

.site-footer__name {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--white) !important;
  font-size: 23px !important;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.site-footer__description {
  max-width: 430px;
  color: #8193a7;
  font-size: 11px;
  line-height: 1.8;
}

.site-footer__nav {
  grid-column: 2 / -1;
}

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

.site-footer__bottom p {
  margin: 0;
}

.site-footer__brand img,
.footer-brand img {
  width: 190px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.site-footer__brand p,
.footer-brand p {
  max-width: 400px;
  margin: 0;
  color: #8193a7;
  font-size: 11px;
  line-height: 1.8;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 12px;
}

.site-footer ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-footer li,
.site-footer a {
  color: #8fa0b3;
  font-size: 11px;
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer__bottom,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 66px;
  color: #66788c;
  border-top: 1px solid rgb(255 255 255 / 0.08);
  font-family: var(--font-mono);
  font-size: 9px;
}

.mobile-dock {
  display: none;
}

/* Responsive */
@media (max-width: 1120px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(365px, 0.7fr);
    gap: 55px;
  }

  .hero h1 {
    font-size: clamp(42px, 5.4vw, 59px);
  }

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

  .workflow-track {
    grid-template-columns: repeat(5, 220px);
    overflow-x: auto;
    padding-bottom: 14px;
    scrollbar-color: rgb(255 255 255 / 0.22) transparent;
  }

  .data-layout {
    grid-template-columns: minmax(0, 0.75fr) minmax(470px, 1fr);
    gap: 55px;
  }

  .calculator-panel {
    grid-template-columns: 230px 1fr;
  }

  .calculator-result {
    grid-column: 1 / -1;
    min-height: 170px;
    border-top: 1px solid var(--slate-200);
    border-left: 0;
  }
}

@media (max-width: 920px) {
  .section {
    padding: 82px 0;
  }

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

  .real-filter {
    grid-template-columns: 1fr 1fr;
  }

  .real-filter button {
    grid-column: 1 / -1;
  }

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

  .real-filter {
    grid-template-columns: 1fr 1fr;
  }

  .real-filter button {
    grid-column: 1 / -1;
  }

  /*
   * backdrop-filter creates a containing block for fixed descendants in
   * WebKit/Chromium. Disable it on the mobile header so the open navigation
   * is fixed to the viewport instead of collapsing to the header's height.
   */
  .site-header {
    height: 132px;
    background: var(--paper);
    backdrop-filter: none;
  }

  .site-header .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: 76px 56px;
    width: 100%;
    padding: 0 20px;
  }

  .site-brand {
    grid-row: 1;
    grid-column: 1;
    justify-self: start;
  }

  .header-actions {
    grid-row: 1;
    grid-column: 2;
    margin-left: 0;
  }

  .primary-nav {
    position: static;
    z-index: 1;
    grid-row: 2;
    grid-column: 1 / -1;
    display: block;
    width: calc(100% + 40px);
    height: 56px;
    padding: 0 94px 0 20px;
    margin: 0 -20px;
    overflow: hidden;
    background: var(--white);
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
  }

  .menu-open .primary-nav,
  .primary-nav.is-open {
    position: fixed;
    z-index: 990;
    top: 132px;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: auto;
    height: auto;
    padding: 18px 20px;
    margin: 0;
    overflow-y: auto;
    background: var(--paper);
    border-top: 1px solid var(--slate-200);
  }

  .primary-nav ul,
  .primary-menu {
    display: flex;
    flex-wrap: nowrap;
    gap: 0;
    height: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .primary-nav ul::-webkit-scrollbar,
  .primary-menu::-webkit-scrollbar {
    display: none;
  }

  .primary-nav li,
  .primary-menu li {
    flex: 0 0 auto;
  }

  .primary-nav a,
  .primary-menu a {
    min-height: 56px;
    padding: 0 15px;
    border-radius: 0;
    font-size: 15px;
    white-space: nowrap;
  }

  .menu-open .primary-nav ul,
  .primary-nav.is-open ul,
  .menu-open .primary-menu,
  .primary-nav.is-open .primary-menu {
    display: grid;
    gap: 5px;
    height: auto;
    overflow: visible;
  }

  .menu-open .primary-nav li,
  .primary-nav.is-open li {
    width: 100%;
  }

  .menu-open .primary-nav a,
  .primary-nav.is-open a {
    min-height: 52px;
    padding: 0 14px;
    border-radius: 9px;
    font-size: 16px;
  }

  .menu-toggle,
  [data-menu-toggle] {
    position: relative;
    z-index: 2;
    grid-row: 2;
    grid-column: 2;
    display: inline-flex;
    gap: 9px;
    width: 94px;
    height: 56px;
    padding: 0 18px;
    background: var(--white);
    border-left: 1px solid var(--slate-200);
    border-radius: 0;
  }

  .menu-toggle__label {
    display: block;
    font-size: 15px;
    font-weight: 850;
    letter-spacing: -0.03em;
  }

  .menu-open .menu-toggle__icon,
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon {
    background: transparent;
  }

  .menu-open .menu-toggle__icon::before,
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon::before {
    top: 0;
    transform: rotate(45deg);
  }

  .menu-open .menu-toggle__icon::after,
  .menu-toggle[aria-expanded="true"] .menu-toggle__icon::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .admin-bar .primary-nav.is-open,
  .admin-bar.menu-open .primary-nav {
    top: 164px;
  }

  .search-trigger kbd,
  [data-search-open] kbd {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 72px 0 75px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero-board {
    width: min(100%, 600px);
    transform: none;
  }

  .data-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .data-copy {
    max-width: 690px;
  }

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

  .standards-card {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 45px;
  }

  .site-footer__main,
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__brand,
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .admin-bar .primary-nav.is-open,
  .admin-bar.menu-open .primary-nav {
    top: 178px;
  }
}

@media (max-width: 680px) {
  :root {
    --radius-lg: 18px;
  }

  html {
    scroll-padding-top: 130px;
  }

  body {
    padding-bottom: 66px;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 68px 0;
  }

  .insight-links,
  .real-ranking-grid,
  .real-filter {
    grid-template-columns: 1fr;
  }

  .insight-links a {
    min-height: 112px;
    padding: 18px;
  }

  .real-filter button {
    grid-column: auto;
  }

  .real-section-heading {
    display: block;
  }

  .real-section-heading > p {
    margin-top: 10px;
    text-align: left;
  }

  .real-home-status,
  .real-data-status {
    grid-template-columns: auto 1fr;
  }

  .real-home-status span,
  .real-data-status span {
    grid-column: 2;
  }

  .site-header {
    height: 120px;
  }

  .site-header .site-header__inner {
    grid-template-rows: 66px 54px;
    padding: 0 15px;
  }

  .site-brand {
    min-width: 0;
  }

  .site-brand img,
  .site-brand__logo {
    width: min(165px, 48vw);
  }

  .header-actions {
    margin-left: auto;
  }

  .search-trigger,
  [data-search-open] {
    width: 42px;
    min-width: 42px;
    height: 42px;
    padding: 0;
  }

  .primary-nav {
    width: calc(100% + 30px);
    height: 54px;
    padding-right: 88px;
    padding-left: 8px;
    margin: 0 -15px;
  }

  .primary-nav a,
  .primary-menu a {
    min-height: 54px;
    padding: 0 12px;
    font-size: 14px;
  }

  .menu-toggle,
  [data-menu-toggle] {
    width: 88px;
    height: 54px;
    padding: 0 14px;
  }

  .menu-open .primary-nav,
  .primary-nav.is-open {
    top: 120px;
    width: auto;
    height: auto;
    padding: 18px 20px;
    margin: 0;
  }

  .admin-bar .primary-nav.is-open,
  .admin-bar.menu-open .primary-nav {
    top: 166px;
  }

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

  .section-heading--row {
    display: block;
  }

  .section-heading h2 {
    font-size: 31px;
  }

  .section-heading--row > p,
  .section-heading--row > .text-link {
    margin-top: 13px;
  }

  .hero {
    padding: 58px 0 62px;
  }

  .hero::before {
    mask-image: linear-gradient(to bottom, #000, transparent 65%);
  }

  .hero h1 {
    font-size: clamp(37px, 10.6vw, 48px);
    line-height: 1.2;
  }

  .hero__lead {
    margin: 21px 0 25px;
    font-size: 15px;
  }

  .hero-search {
    min-height: 61px;
    padding: 6px 6px 6px 15px;
  }

  .hero-search > svg {
    width: 20px;
    height: 20px;
  }

  .hero-search input {
    height: 47px;
    padding: 0 10px;
    font-size: 13px;
  }

  .hero-search > button {
    min-width: 65px;
    height: 47px;
  }

  .popular-keywords {
    gap: 7px 11px;
  }

  .trust-row {
    display: grid;
    gap: 8px;
  }

  .hero-board {
    padding: 25px 22px;
  }

  .field-checklist li {
    grid-template-columns: 32px 1fr;
  }

  .field-checklist i {
    display: none;
  }

  .quick-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .quick-card {
    min-height: 94px;
    padding: 15px;
  }

  .workflow-step {
    min-height: 225px;
  }

  .data-copy h2 {
    font-size: 36px;
  }

  .market-card {
    padding: 21px 17px;
    border-radius: 16px;
  }

  .market-summary {
    gap: 27px;
  }

  .market-chart {
    height: 215px;
  }

  .chart-bars {
    gap: 8px;
  }

  .chart-bar {
    width: 36px;
  }

  .calculator-tabs {
    margin-right: -15px;
    margin-left: -15px;
    padding-right: 15px;
    padding-left: 15px;
    background: transparent;
    border-radius: 0;
  }

  .calculator-tabs button {
    background: var(--slate-100);
  }

  .calculator-panel {
    grid-template-columns: 1fr;
  }

  .calculator-panel__intro {
    flex-direction: row;
    align-items: flex-start;
    padding: 25px 21px;
  }

  .calculator-icon {
    flex: 0 0 auto;
  }

  .calculator-panel form {
    padding: 25px 20px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .calculator-result {
    min-height: 170px;
    padding: 25px 20px;
  }

  .post-grid {
    grid-template-columns: 1fr;
  }

  .post-card h3 {
    min-height: 0;
  }

  .empty-posts {
    align-items: flex-start;
    padding: 24px;
  }

  .standards-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .standards-card {
    gap: 28px;
    width: calc(100% - 20px);
    padding: 35px 25px;
  }

  .standards-card h2 {
    font-size: 31px;
  }

  .standards-list > div {
    grid-template-columns: 28px 1fr;
  }

  .site-footer__main,
  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 48px;
  }

  .site-footer__brand,
  .footer-brand {
    grid-column: auto;
  }

  .site-footer__bottom,
  .footer-bottom {
    display: block;
    padding: 17px 0;
  }

  .mobile-dock {
    position: fixed;
    z-index: 1500;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    height: 66px;
    padding-bottom: env(safe-area-inset-bottom);
    background: rgb(255 255 255 / 0.96);
    border-top: 1px solid var(--slate-200);
    box-shadow: 0 -7px 24px rgb(9 24 44 / 0.07);
    backdrop-filter: blur(14px);
  }

  .mobile-dock a,
  .mobile-dock button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-width: 0;
    padding: 0;
    color: var(--slate-600);
    background: transparent;
    border: 0;
    font-size: 9px;
    font-weight: 700;
  }

  .mobile-dock svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
  }

  .mobile-dock a:first-child {
    color: var(--red);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .mobile-dock,
  .hero-search,
  .calculator-tabs,
  .form-actions {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  .section {
    padding: 24px 0;
  }

  .calculator-panel,
  .data-layout,
  .standards-card {
    display: block;
  }

  .calculator-panel__intro,
  .workflow-section,
  .standards-card {
    color: #000;
    background: #fff;
  }
}
