:root {
  --lime: #bfd96d;
  --lime-dark: #8eae38;
  --lavender: #b7a6d7;
  --lavender-deep: #8064aa;
  --train-teal: #31bbae;
  --silver: #f3f5f1;
  --silver-deep: #e5eeea;
  --charcoal: #26302d;
  --ink: #17201d;
  --muted: #69736d;
  --white: #fbfcf8;
  --line: rgba(38, 48, 45, 0.16);
  --shadow: 0 22px 65px rgba(39, 54, 45, 0.12);
  --sans: "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  --display: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
  width: min(1180px, calc(100% - 80px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: linear-gradient(118deg, #c8df7d 0%, var(--lime) 56%, #b9a9d7 100%);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  color: var(--ink);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 0;
}

.brand-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
}

.brand-tagline {
  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.17em;
  line-height: 1.6;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.desktop-nav > a:not(.nav-contact) {
  position: relative;
}

.desktop-nav > a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.desktop-nav > a:not(.nav-contact):hover::after,
.desktop-nav > a:not(.nav-contact):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  padding: 11px 17px;
  border: 1px solid rgba(38, 48, 45, 0.5);
  border-radius: 100px;
  transition: color 180ms ease, background 180ms ease;
}

.nav-contact:hover,
.nav-contact:focus-visible {
  color: var(--white);
  background: var(--charcoal);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  background: var(--lime);
}

.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, rgba(255, 255, 255, 0.2), transparent 47%, rgba(255, 255, 255, 0.08));
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  min-height: 710px;
  padding-top: 100px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 40px 0 70px;
}

.eyebrow,
.section-kicker,
.placeholder-label,
.visual-label,
.news-category,
.status-pill,
.hero-footnote,
.footer-bottom {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 23px;
  color: rgba(23, 32, 29, 0.72);
}

.eyebrow span {
  display: inline-block;
  width: 26px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 700px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.6vw, 4.3rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 1.2;
}

.hero-line {
  display: block;
  white-space: nowrap;
}

.hero h1 em,
.contact h2 em,
.concept-heading h2 em {
  color: var(--lavender-deep);
  font-style: normal;
}

.hero-lead {
  max-width: 510px;
  margin: 28px 0 0;
  color: rgba(23, 32, 29, 0.76);
  font-size: 15px;
  letter-spacing: 0.06em;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 27px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 23px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button-primary {
  padding: 16px 20px 16px 23px;
  color: var(--white);
  background: var(--charcoal);
  box-shadow: 0 10px 20px rgba(23, 32, 29, 0.13);
}

.button-primary span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  font-size: 14px;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--lavender-deep);
  box-shadow: 0 14px 25px rgba(59, 46, 93, 0.2);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(38, 48, 45, 0.45);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: gap 180ms ease, color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible,
.arrow-link:hover,
.arrow-link:focus-visible {
  gap: 15px;
  color: var(--lavender-deep);
}

.hero-visual {
  position: relative;
  min-height: 580px;
}

.hero-grid {
  position: absolute;
  top: 0;
  right: 0;
  width: 51%;
  height: 100%;
  opacity: 0.26;
  background-image: linear-gradient(rgba(38, 48, 45, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(38, 48, 45, 0.12) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(90deg, transparent, black 34%);
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.hero-orbit-one {
  top: 97px;
  right: -90px;
  width: 630px;
  height: 390px;
}

.hero-orbit-two {
  top: 198px;
  right: -130px;
  width: 570px;
  height: 255px;
  border-color: rgba(129, 112, 172, 0.48);
}

.route-map {
  position: absolute;
  top: 42px;
  right: 25px;
  width: min(560px, 52vw);
  overflow: visible;
}

.map-contour {
  fill: rgba(255, 255, 255, 0.28);
  stroke: rgba(38, 48, 45, 0.7);
  stroke-width: 2;
}

.map-inner {
  fill: none;
  stroke: rgba(49, 187, 174, 0.72);
  stroke-width: 1.5;
}

.route {
  fill: none;
  stroke: var(--lavender-deep);
  stroke-dasharray: 5 8;
  stroke-linecap: round;
  stroke-width: 2;
}

.route-main {
  stroke: var(--charcoal);
}

.route-secondary {
  stroke: var(--train-teal);
}

.route-node {
  fill: var(--lavender-deep);
  stroke: var(--white);
  stroke-width: 3;
}

.route-node-origin {
  fill: var(--charcoal);
}

.route-glow {
  fill: none;
  stroke: rgba(129, 112, 172, 0.52);
  stroke-width: 1;
}

.map-text {
  fill: var(--charcoal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
}

.visual-label {
  position: absolute;
  z-index: 1;
  color: rgba(38, 48, 45, 0.58);
  writing-mode: vertical-rl;
}

.visual-label-top {
  top: 73px;
  right: 24px;
}

.visual-label-bottom {
  bottom: 41px;
  left: 29px;
  color: rgba(255, 255, 255, 0.73);
}

.visual-card {
  position: absolute;
  display: grid;
  gap: 0;
  width: 138px;
  padding: 15px 17px 16px;
  background: rgba(251, 252, 248, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(7px);
}

.visual-card strong {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.visual-card > span:last-child {
  color: var(--muted);
  font-size: 7px;
  letter-spacing: 0.18em;
}

.card-index {
  color: var(--lavender-deep);
  font-size: 9px;
  letter-spacing: 0.1em;
}

.visual-card-producer {
  top: 120px;
  left: 35px;
}

.visual-card-value {
  right: 19px;
  bottom: 97px;
  background: rgba(182, 164, 217, 0.86);
}

.visual-card-market {
  bottom: 3px;
  left: 130px;
  background: var(--charcoal);
  color: var(--white);
}

.visual-card-market > span:last-child {
  color: rgba(255, 255, 255, 0.55);
}

.hero-footnote {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(23, 32, 29, 0.55);
}

.scroll-line {
  display: inline-block;
  width: 58px;
  height: 1px;
  background: rgba(23, 32, 29, 0.35);
}

.hero-footnote-copy {
  margin-left: auto;
  color: rgba(23, 32, 29, 0.63);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: none;
}

.section {
  padding: 124px 0;
}

.intro {
  background: var(--white);
}

.intro-heading-row {
  margin-bottom: 54px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 78px;
}

.section-kicker {
  display: flex;
  align-items: center;
  align-self: start;
  gap: 12px;
  color: var(--muted);
  white-space: nowrap;
}

.section-number {
  color: var(--lavender-deep);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}

.section-rule {
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--lavender-deep);
}

.section-label {
  margin: 0 0 13px;
  color: var(--lavender-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.intro-content h2,
.partners-heading h2,
.concept-heading h2,
.news-heading h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.38;
}

.intro-content h2 {
  font-size: clamp(2.5rem, 4.6vw, 4.2rem);
}

.intro-content h2 > span,
.partners-heading h2 .heading-line > span {
  color: var(--lime-dark);
}

.heading-line {
  display: block;
  white-space: nowrap;
}

.intro-text {
  max-width: 455px;
  margin: 28px 0 31px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.05em;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  transition: gap 180ms ease, color 180ms ease;
}

.arrow-link span {
  color: var(--lavender-deep);
  font-size: 16px;
}

.intro-statements {
  display: grid;
  align-content: end;
  gap: 11px;
}

.statement-card {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  min-height: 91px;
  padding: 13px 17px;
  background: var(--silver);
}

.statement-card p {
  margin: 0;
  font-family: var(--display);
  font-size: 18px;
  line-height: 1.42;
}

.statement-card strong {
  color: var(--lavender-deep);
  font-weight: 500;
}

.statement-line {
  width: 15px;
  height: 15px;
  border: 1px solid var(--lime-dark);
  border-radius: 50%;
}

.statement-card-lavender {
  background: rgba(182, 164, 217, 0.3);
}

.statement-card-lavender .statement-line {
  border-color: var(--lavender-deep);
}

.statement-card-dark {
  color: var(--white);
  background: var(--charcoal);
}

.statement-card-dark strong {
  color: var(--lime);
}

.statement-card-dark .statement-line {
  border-color: var(--lime);
}

.section-tinted {
  background: var(--silver);
}

.section-heading-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.heading-note {
  margin: 0;
  color: var(--muted);
  font-family: var(--display);
  font-size: 16px;
  line-height: 1.7;
  text-align: right;
}

.concept-heading {
  display: grid;
  grid-template-columns: 1.07fr 0.93fr;
  gap: 50px;
  align-items: end;
  margin-top: 54px;
}

.concept-heading h2 {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
}

.concept-heading p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.05em;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 58px;
}

.criteria-card {
  position: relative;
  min-height: 270px;
  padding: 27px 27px 25px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.criteria-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.criteria-card-featured {
  color: var(--white);
  background: var(--lavender-deep);
}

.criteria-number {
  color: var(--lime-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.criteria-card-featured .criteria-number {
  color: var(--lime);
}

.criteria-card h3 {
  margin: 27px 0 13px;
  font-family: var(--display);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.45;
}

.criteria-card p {
  max-width: 275px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.criteria-card-featured p {
  color: rgba(255, 255, 255, 0.75);
}

.criteria-icon {
  position: absolute;
  right: 24px;
  bottom: 22px;
  color: var(--lavender-deep);
  font-size: 22px;
}

.criteria-card-featured .criteria-icon {
  color: var(--lime);
}

.partners {
  background: var(--white);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border: 1px solid rgba(142, 174, 59, 0.5);
  border-radius: 100px;
  color: var(--lime-dark);
}

.status-pill span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime-dark);
}

.partners-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: end;
  margin-top: 50px;
}

.partners-heading h2 {
  font-size: clamp(2.4rem, 4.3vw, 4rem);
}

.partners-heading > p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 14px;
}

.partner-placeholder {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 335px;
  margin-top: 57px;
  overflow: hidden;
  background: var(--silver-deep);
}

.partner-placeholder::before,
.partner-placeholder::after {
  position: absolute;
  border: 1px solid rgba(142, 174, 59, 0.45);
  border-radius: 50%;
  content: "";
  transform: rotate(-15deg);
}

.partner-placeholder::before {
  top: -130px;
  right: 76px;
  width: 640px;
  height: 400px;
}

.partner-placeholder::after {
  top: -73px;
  right: 17px;
  width: 560px;
  height: 285px;
  border-color: rgba(129, 112, 172, 0.43);
}

.placeholder-orb {
  position: absolute;
  right: 250px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--lime) 8%, rgba(185, 213, 106, 0.2) 70%);
  filter: blur(0.2px);
}

.placeholder-orb::after {
  position: absolute;
  top: 25px;
  right: 29px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--lavender);
  content: "";
  opacity: 0.78;
}

.placeholder-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 15px;
  margin-left: 58px;
}

.placeholder-copy strong {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.5;
}

.placeholder-copy .arrow-link {
  width: fit-content;
  margin-top: 8px;
}

.placeholder-note {
  position: absolute;
  right: 52px;
  bottom: 34px;
  z-index: 1;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.7;
  text-align: right;
}

.news {
  color: var(--white);
  background: var(--charcoal);
}

.section-kicker-light,
.text-link-light {
  color: rgba(255, 255, 255, 0.65);
}

.section-kicker-light .section-number {
  color: var(--lime);
}

.section-kicker-light .section-rule {
  background: var(--lime);
}

.text-link-light {
  border-color: rgba(255, 255, 255, 0.4);
}

.text-link-light:hover,
.text-link-light:focus-visible {
  color: var(--lime);
}

.news-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 48px 0 40px;
}

.news-heading h2 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.news-heading p {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.63);
  font-size: 14px;
}

.news-list {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.news-item {
  display: grid;
  grid-template-columns: 100px 105px 1fr 30px;
  align-items: center;
  gap: 15px;
  min-height: 92px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: color 180ms ease, padding 180ms ease;
}

.news-item:hover,
.news-item:focus-visible {
  padding-right: 8px;
  padding-left: 8px;
  color: var(--lime);
}

.news-item time {
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--display);
  font-size: 14px;
}

.news-category {
  color: var(--lavender);
}

.news-item strong {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.news-arrow {
  color: var(--lime);
  font-size: 20px;
  text-align: right;
}

.contact {
  padding: 102px 0 110px;
  background: var(--lavender);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.contact h2 {
  font-size: clamp(2.7rem, 5vw, 4.8rem);
}

.contact h2 em {
  color: var(--white);
}

.contact-copy > p:last-child {
  margin: 25px 0 0;
  color: rgba(38, 48, 45, 0.75);
  font-size: 14px;
}

.contact-button {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  width: 250px;
  padding: 14px 16px 14px 24px;
  border: 1px solid rgba(38, 48, 45, 0.55);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-button-arrow {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--charcoal);
  font-size: 18px;
}

.contact-button:hover,
.contact-button:focus-visible {
  color: var(--white);
  background: var(--charcoal);
  transform: translateY(-3px);
}

.site-footer {
  padding: 50px 0 25px;
  color: var(--white);
  background: var(--ink);
}

.brand-footer .brand-mark {
  border-color: var(--lime);
  color: var(--lime);
}

.brand-footer .brand-name {
  color: var(--white);
}

.brand-footer .brand-tagline {
  color: rgba(255, 255, 255, 0.48);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 55px;
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--display);
  font-size: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
}

:focus-visible {
  outline: 3px solid var(--lavender-deep);
  outline-offset: 4px;
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 44px, 720px);
  }

  .desktop-nav {
    gap: 17px;
    font-size: 10px;
  }

  .hero {
    min-height: 1020px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-content: start;
    min-height: 940px;
    padding-top: 160px;
  }

  .hero-copy {
    padding: 25px 0 0;
  }

  .hero-visual {
    min-height: 480px;
    margin-top: -15px;
  }

  .route-map {
    top: 0;
    right: 9%;
    width: min(560px, 80vw);
  }

  .visual-card-producer {
    top: 75px;
    left: 2%;
  }

  .visual-card-market {
    bottom: 0;
    left: 16%;
  }

  .visual-label-top {
    top: 20px;
    right: 0;
  }

  .intro-grid {
    grid-template-columns: 1fr 0.84fr;
    gap: 40px;
  }

  .intro-statements {
    grid-column: auto;
  }

  .partners-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .partners-heading > p {
    margin-top: 0;
  }

  .section-kicker {
    font-size: 9px;
  }
}

@media (max-width: 650px) {
  .container {
    width: min(100% - 36px, 520px);
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    display: grid;
    gap: 5px;
    width: 42px;
    padding: 10px;
    cursor: pointer;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--ink);
  }

  .mobile-nav nav {
    position: absolute;
    top: 46px;
    right: 0;
    display: grid;
    min-width: 180px;
    padding: 9px;
    border: 1px solid rgba(38, 48, 45, 0.15);
    background: rgba(251, 252, 248, 0.96);
    box-shadow: var(--shadow);
  }

  .mobile-nav nav a {
    padding: 10px 13px;
    font-size: 12px;
  }

  .hero {
    min-height: 885px;
  }

  .hero-inner {
    min-height: 815px;
    padding-top: 139px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9.2vw, 3.5rem);
    letter-spacing: -0.1em;
  }

  .hero-lead {
    max-width: 330px;
    font-size: 13px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-visual {
    min-height: 350px;
    margin-top: 3px;
  }

  .route-map {
    top: -3px;
    right: -7%;
    width: 100%;
  }

  .visual-card {
    width: 119px;
    padding: 11px 13px 12px;
  }

  .visual-card strong {
    font-size: 13px;
  }

  .visual-card-producer {
    top: 42px;
    left: 0;
  }

  .visual-card-value {
    right: 0;
    bottom: 74px;
  }

  .visual-card-market {
    bottom: -2px;
    left: 18%;
  }

  .visual-label-bottom {
    bottom: 9px;
    left: 0;
  }

  .hero-footnote {
    display: none;
  }

  .section {
    padding: 80px 0;
  }

  .section-heading-row {
    align-items: flex-start;
    gap: 20px;
  }

  .section-kicker {
    gap: 8px;
    white-space: normal;
  }

  .section-rule {
    width: 16px;
  }

  .heading-note {
    font-size: 13px;
    line-height: 1.5;
  }

  .intro-grid,
  .concept-heading,
  .partners-heading {
    display: block;
  }

  .intro-grid > .section-kicker {
    margin-bottom: 45px;
  }

  .intro-content h2,
  .concept-heading h2,
  .partners-heading h2,
  .news-heading h2,
  .contact h2 {
    font-size: clamp(2.35rem, 12vw, 3.3rem);
  }

  .intro-content h2 {
    font-size: clamp(1.9rem, 9.4vw, 3rem);
  }

  .partners-heading h2 {
    font-size: clamp(1.9rem, 8.8vw, 3.2rem);
  }

  .intro-statements {
    margin-top: 48px;
  }

  .concept-heading {
    margin-top: 43px;
  }

  .concept-heading p,
  .partners-heading > p {
    margin-top: 24px;
    font-size: 13px;
  }

  .criteria-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 39px;
  }

  .criteria-card {
    min-height: 215px;
  }

  .criteria-card h3 {
    margin-top: 19px;
    font-size: 22px;
  }

  .partners-heading {
    margin-top: 42px;
  }

  .partner-placeholder {
    min-height: 400px;
    align-items: flex-start;
  }

  .placeholder-copy {
    margin: 46px 25px 0;
  }

  .placeholder-copy strong {
    font-size: 23px;
  }

  .placeholder-orb {
    right: -16px;
    bottom: 24px;
    width: 200px;
    height: 200px;
  }

  .placeholder-note {
    right: 22px;
    bottom: 22px;
  }

  .news-heading {
    display: block;
    margin: 42px 0 28px;
  }

  .news-heading p {
    margin-top: 20px;
    font-size: 13px;
  }

  .news-item {
    grid-template-columns: 78px 1fr 22px;
    gap: 8px;
    min-height: 112px;
  }

  .news-item time {
    grid-row: span 2;
    align-self: start;
    padding-top: 27px;
  }

  .news-category {
    align-self: end;
    font-size: 8px;
  }

  .news-item strong {
    align-self: start;
    font-size: 14px;
    line-height: 1.55;
  }

  .news-arrow {
    grid-column: 3;
    grid-row: 1 / span 2;
  }

  .contact-inner {
    display: block;
  }

  .contact-copy > p:last-child {
    font-size: 13px;
  }

  .contact-button {
    width: 100%;
    margin-top: 35px;
  }

  .footer-top {
    display: block;
    padding-bottom: 35px;
  }

  .footer-top > p {
    margin-top: 27px;
    font-size: 15px;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
    line-height: 1.6;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
