:root {
  --r2-ink-950: #061526;
  --r2-ink-900: #0d2039;
  --r2-ink-820: #17304e;
  --r2-ink-720: #1f3f63;
  --r2-sea-760: #155978;
  --r2-sea-620: #267391;
  --r2-sea-460: #58a3bd;
  --r2-sky-260: #a9dceb;
  --r2-sky-110: #edf8fb;
  --r2-cloud: #ffffff;
  --r2-cloud-60: #f7fbfc;
  --r2-mist-160: #d9e7ee;
  --r2-mist-220: #c7d8e2;
  --r2-sun-90: #fff7ea;
  --r2-sun-170: #f3dfbd;
  --r2-gold: #b7924a;
  --r2-copper: #d8aa64;
  --r2-text: #172537;
  --r2-muted: #607184;
  --r2-soft: #7b8997;
  --r2-line: rgba(13, 32, 57, 0.14);
  --r2-line-blue: rgba(38, 115, 145, 0.26);
  --r2-glass: rgba(255, 255, 255, 0.72);
  --r2-shadow: 0 28px 70px rgba(6, 21, 38, 0.16);
  --r2-shadow-soft: 0 18px 42px rgba(13, 32, 57, 0.1);
  --r2-page: 1240px;
  --r2-reading: 760px;
  --r2-tight: 620px;
}

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

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

html[data-r2-lock] {
  overflow: hidden;
}

body {
  margin: 0;
  color: var(--r2-text);
  background:
    radial-gradient(circle at 8% 8%, rgba(169, 220, 235, 0.32), transparent 30rem),
    linear-gradient(180deg, #f7fbfc 0%, #ffffff 32rem, #edf4f7 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans", "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.68;
  letter-spacing: 0;
}

body::selection {
  color: var(--r2-cloud);
  background: var(--r2-sea-760);
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(183, 146, 74, 0.72);
  outline-offset: 4px;
}

p,
h1,
h2,
h3,
h4,
dl,
dd,
figure {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.r2-shell {
  min-height: 100vh;
  overflow: clip;
}

.r2-wrap {
  width: min(100% - 48px, var(--r2-page));
  margin-inline: auto;
}

.r2-slim {
  width: min(100% - 48px, var(--r2-reading));
  margin-inline: auto;
}

.r2-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(13, 32, 57, 0.08);
  background: rgba(247, 251, 252, 0.86);
  backdrop-filter: blur(18px);
}

.r2-topbar__grid {
  display: grid;
  grid-template-columns: minmax(190px, auto) 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 78px;
}

.r2-brand {
  display: inline-grid;
  gap: 2px;
  color: var(--r2-ink-900);
  font-weight: 760;
  line-height: 1.12;
}

.r2-brand span {
  color: var(--r2-muted);
  font-size: 12px;
  font-weight: 560;
}

.r2-nav {
  justify-self: end;
}

.r2-nav ul,
.r2-footer-list {
  list-style: none;
}

.r2-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
}

.r2-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--r2-ink-820);
  font-size: 14px;
  font-weight: 680;
}

.r2-nav a:hover,
.r2-nav a[aria-current="page"] {
  background: rgba(38, 115, 145, 0.1);
  color: var(--r2-sea-760);
}

.r2-topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.r2-menu {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--r2-line);
  border-radius: 50%;
  background: var(--r2-cloud);
  color: var(--r2-ink-900);
  cursor: pointer;
}

.r2-menu span,
.r2-menu::before,
.r2-menu::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.r2-menu[aria-expanded="true"] span {
  opacity: 0;
}

.r2-menu[aria-expanded="true"]::before {
  transform: translateY(6px) rotate(45deg);
}

.r2-menu[aria-expanded="true"]::after {
  transform: translateY(-6px) rotate(-45deg);
}

.r2-action,
.r2-textlink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  line-height: 1.2;
  font-weight: 760;
}

.r2-action {
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--r2-cloud);
  background: linear-gradient(135deg, var(--r2-ink-900), var(--r2-sea-760));
  box-shadow: 0 14px 30px rgba(13, 32, 57, 0.18);
}

.r2-action:hover {
  color: var(--r2-cloud);
  background: linear-gradient(135deg, var(--r2-sea-760), var(--r2-ink-720));
}

.r2-action--pale {
  color: var(--r2-ink-900);
  border-color: rgba(13, 32, 57, 0.18);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: none;
}

.r2-action--pale:hover {
  color: var(--r2-ink-900);
  background: var(--r2-sun-90);
}

.r2-action--line {
  color: var(--r2-cloud);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.r2-action--line:hover {
  color: var(--r2-cloud);
  background: rgba(255, 255, 255, 0.16);
}

.r2-textlink {
  width: fit-content;
  color: var(--r2-sea-760);
}

.r2-textlink::after,
.r2-action::after {
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
}

.r2-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--r2-sea-760);
  font-size: 13px;
  font-weight: 790;
  line-height: 1.35;
}

.r2-kicker::before {
  width: 30px;
  height: 2px;
  background: var(--r2-gold);
  content: "";
}

.r2-section {
  position: relative;
  padding: 112px 0;
}

.r2-section--mist {
  background:
    linear-gradient(120deg, rgba(217, 231, 238, 0.72), rgba(237, 248, 251, 0.44)),
    var(--r2-mist-160);
}

.r2-section--ink {
  color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(135deg, rgba(6, 21, 38, 0.98), rgba(23, 48, 78, 0.96) 48%, rgba(21, 89, 120, 0.92)),
    var(--r2-ink-900);
}

.r2-section--sun {
  background:
    linear-gradient(135deg, rgba(255, 247, 234, 0.92), rgba(247, 251, 252, 0.78)),
    var(--r2-sun-90);
}

.r2-head {
  display: grid;
  gap: 18px;
  max-width: var(--r2-reading);
}

.r2-head--center {
  margin-inline: auto;
  text-align: center;
}

.r2-head--center .r2-kicker {
  justify-content: center;
}

.r2-head--center .r2-kicker::after {
  width: 30px;
  height: 2px;
  background: var(--r2-gold);
  content: "";
}

.r2-title {
  color: var(--r2-ink-900);
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.08;
  font-weight: 780;
  text-wrap: balance;
}

.r2-section--ink .r2-title,
.r2-section--ink .r2-kicker,
.r2-section--ink .r2-lead {
  color: var(--r2-cloud);
}

.r2-lead {
  color: var(--r2-muted);
  font-size: 18px;
  line-height: 1.72;
}

.r2-hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: center;
  padding: 82px 0 96px;
  background:
    radial-gradient(circle at 78% 16%, rgba(169, 220, 235, 0.56), transparent 24rem),
    linear-gradient(180deg, rgba(237, 248, 251, 0.94), rgba(255, 247, 234, 0.72) 58%, rgba(255, 255, 255, 0.95));
}

.r2-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, transparent 0 48%, rgba(13, 32, 57, 0.08) 48% 49%, transparent 49%),
    linear-gradient(145deg, transparent 0 68%, rgba(183, 146, 74, 0.16) 68% 69%, transparent 69%);
  content: "";
}

.r2-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.55fr);
  gap: 34px;
  align-items: end;
}

.r2-hero__copy {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 24px;
  max-width: 830px;
  padding: 34px 0 18px;
}

.r2-hero-title {
  max-width: 860px;
  color: var(--r2-ink-950);
  font-size: clamp(42px, 4.4vw, 64px);
  line-height: 1.05;
  font-weight: 790;
  text-wrap: balance;
}

.r2-hero-lead {
  max-width: 720px;
  color: var(--r2-text);
  font-size: clamp(18px, 1.45vw, 21px);
  line-height: 1.76;
}

.r2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.r2-after {
  margin-top: 30px;
}

.r2-module-gap {
  margin-top: 46px;
}

.r2-coast-plate {
  position: relative;
  min-height: 590px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(237, 248, 251, 0.95) 0%, rgba(169, 220, 235, 0.62) 28%, rgba(38, 115, 145, 0.82) 57%, rgba(6, 21, 38, 0.98) 100%);
  box-shadow: var(--r2-shadow);
}

.r2-coast-plate::before {
  position: absolute;
  inset: 18% 0 auto 0;
  height: 30%;
  border-top: 1px solid rgba(255, 255, 255, 0.58);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, rgba(255, 247, 234, 0.52), rgba(255, 247, 234, 0.04));
  clip-path: polygon(0 34%, 100% 0, 100% 52%, 0 100%);
  content: "";
}

.r2-coast-plate::after {
  position: absolute;
  inset: auto 0 13% 0;
  height: 42%;
  background: repeating-linear-gradient(160deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 25px);
  clip-path: polygon(0 18%, 100% 0, 100% 100%, 0 74%);
  content: "";
}

.r2-route-svg {
  position: absolute;
  inset: 8% 8% 16%;
  z-index: 1;
  width: 84%;
  height: 76%;
}

.r2-hero-doc {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 32px;
  width: min(72%, 360px);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 16px;
  background: rgba(6, 21, 38, 0.5);
  backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 54px rgba(6, 21, 38, 0.28);
}

.r2-hero-doc p {
  font-size: 14px;
  line-height: 1.58;
}

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

.r2-hero-doc__marks span {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 9px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 12px;
  line-height: 1.3;
}

.r2-page-hero {
  position: relative;
  padding: 96px 0 110px;
  background:
    radial-gradient(circle at 74% 20%, rgba(169, 220, 235, 0.48), transparent 25rem),
    linear-gradient(180deg, var(--r2-sky-110), var(--r2-cloud));
}

.r2-page-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: center;
}

.r2-page-title {
  max-width: 720px;
  color: var(--r2-ink-950);
  font-size: clamp(42px, 4.5vw, 58px);
  line-height: 1.05;
  font-weight: 790;
  text-wrap: balance;
}

.r2-page-copy {
  display: grid;
  gap: 24px;
}

.r2-route-doors {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.r2-door {
  position: relative;
  min-height: 430px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--r2-line-blue);
  border-radius: 18px;
  overflow: hidden;
  background: var(--r2-cloud);
  box-shadow: var(--r2-shadow-soft);
}

.r2-door::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(237, 248, 251, 0.9) 0 38%, transparent 38%),
    linear-gradient(28deg, transparent 0 66%, rgba(13, 32, 57, 0.08) 66%);
  content: "";
}

.r2-door--warm::before {
  background:
    linear-gradient(145deg, rgba(255, 247, 234, 0.92) 0 38%, transparent 38%),
    linear-gradient(28deg, transparent 0 66%, rgba(38, 115, 145, 0.08) 66%);
}

.r2-door > * {
  position: relative;
  z-index: 1;
}

.r2-door h3,
.r2-step h3,
.r2-market-file h2,
.r2-paper h3,
.r2-contact-option h3 {
  color: var(--r2-ink-900);
  line-height: 1.15;
}

.r2-door h3 {
  font-size: clamp(28px, 3vw, 40px);
}

.r2-door p,
.r2-step p,
.r2-market-file p,
.r2-paper p,
.r2-contact-option p {
  color: var(--r2-muted);
}

.r2-flow-strip {
  display: grid;
  gap: 16px;
  margin-top: 50px;
}

.r2-flow-item {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) 1fr;
  gap: 26px;
  align-items: start;
  padding: 26px 30px;
  border-radius: 18px;
  border-left: 5px solid var(--r2-sea-620);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--r2-shadow-soft);
}

.r2-flow-item:nth-child(even) {
  width: calc(100% - 54px);
  margin-left: auto;
  border-left-color: var(--r2-gold);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 234, 0.84));
}

.r2-flow-item h3 {
  margin: 0;
  color: var(--r2-ink-900);
  font-size: 21px;
  line-height: 1.22;
}

.r2-flow-item p {
  color: var(--r2-muted);
}

.r2-product-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
  gap: 30px;
  margin-top: 52px;
}

.r2-paper-stack {
  display: grid;
  gap: 18px;
}

.r2-paper {
  padding: 28px;
  border: 1px solid var(--r2-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--r2-shadow-soft);
}

.r2-paper--offset {
  margin-left: 44px;
  background: linear-gradient(135deg, rgba(255, 247, 234, 0.95), rgba(255, 255, 255, 0.92));
}

.r2-paper h3 {
  margin-bottom: 18px;
  font-size: 24px;
}

.r2-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.r2-chip-list li {
  padding: 10px 12px;
  border: 1px solid var(--r2-line-blue);
  border-radius: 999px;
  color: var(--r2-ink-820);
  background: rgba(237, 248, 251, 0.74);
  font-weight: 650;
}

.r2-note-ink {
  display: grid;
  align-content: end;
  gap: 22px;
  min-height: 100%;
  padding: 34px;
  border-radius: 18px;
  color: rgba(255, 255, 255, 0.86);
  background:
    linear-gradient(135deg, rgba(6, 21, 38, 0.98), rgba(21, 89, 120, 0.92)),
    var(--r2-ink-900);
  box-shadow: var(--r2-shadow);
}

.r2-market-teaser {
  display: grid;
  grid-template-columns: minmax(320px, 0.56fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  margin-top: 52px;
}

.r2-mini-map {
  position: relative;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #061526, #17304e 50%, #155978),
    var(--r2-ink-900);
  box-shadow: var(--r2-shadow);
}

.r2-approach-map {
  min-height: 320px;
}

.r2-mini-map svg {
  display: block;
  width: 100%;
  height: 100%;
}

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

.r2-market-glance {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--r2-line-blue);
  background: rgba(255, 255, 255, 0.86);
}

.r2-market-glance h3 {
  margin-bottom: 10px;
  color: var(--r2-ink-900);
  font-size: 21px;
}

.r2-market-glance p {
  color: var(--r2-muted);
}

.r2-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.r2-steps::before {
  position: absolute;
  top: 35px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, var(--r2-gold), var(--r2-sea-460));
  content: "";
}

.r2-step {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 76px 22px 24px;
  border-radius: 18px;
  background: var(--r2-cloud);
  box-shadow: var(--r2-shadow-soft);
}

.r2-step::before {
  position: absolute;
  top: 22px;
  left: 22px;
  width: 26px;
  height: 26px;
  border: 6px solid var(--r2-sun-170);
  border-radius: 50%;
  background: var(--r2-sea-760);
  content: "";
}

.r2-step h3 {
  font-size: 19px;
}

.r2-facts {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 34px;
  align-items: start;
  margin-top: 50px;
  padding: 40px;
  border-radius: 18px;
  background: var(--r2-cloud);
  box-shadow: var(--r2-shadow-soft);
}

.r2-fact-list {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) 1fr;
}

.r2-fact-list dt,
.r2-fact-list dd {
  padding: 15px 0;
  border-top: 1px solid var(--r2-line);
}

.r2-fact-list dt {
  color: var(--r2-ink-900);
  font-weight: 760;
}

.r2-fact-list dd {
  color: var(--r2-muted);
}

.r2-cta-field {
  position: relative;
  padding: 54px;
  border-radius: 22px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(135deg, rgba(6, 21, 38, 0.98), rgba(23, 48, 78, 0.96) 58%, rgba(21, 89, 120, 0.9)),
    var(--r2-ink-900);
  box-shadow: var(--r2-shadow);
}

.r2-cta-field::after {
  position: absolute;
  inset: 0 0 0 auto;
  width: 48%;
  background:
    linear-gradient(135deg, transparent 0 42%, rgba(255, 255, 255, 0.13) 42% 43%, transparent 43%),
    repeating-linear-gradient(160deg, rgba(169, 220, 235, 0.13) 0 1px, transparent 1px 26px);
  content: "";
}

.r2-cta-field > * {
  position: relative;
  z-index: 1;
}

.r2-cta-field .r2-title,
.r2-cta-field .r2-lead,
.r2-cta-field .r2-kicker {
  color: var(--r2-cloud);
}

.r2-approach {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(300px, 0.42fr);
  gap: 36px;
  align-items: start;
  margin-top: 50px;
}

.r2-criteria {
  padding: 30px;
  border-left: 5px solid var(--r2-gold);
  border-radius: 18px;
  background: var(--r2-cloud);
  box-shadow: var(--r2-shadow-soft);
}

.r2-bullets {
  display: grid;
  gap: 12px;
  list-style: none;
}

.r2-bullets li {
  position: relative;
  padding-left: 24px;
  color: var(--r2-text);
}

.r2-bullets li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--r2-gold);
  content: "";
}

.r2-market-files {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.r2-market-file {
  display: grid;
  gap: 17px;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--r2-line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(237, 248, 251, 0.58)),
    var(--r2-cloud);
  box-shadow: var(--r2-shadow-soft);
}

.r2-market-file h2 {
  font-size: 30px;
}

.r2-market-file h3 {
  margin-top: 6px;
  color: var(--r2-ink-900);
  font-size: 18px;
}

.r2-boundary {
  display: grid;
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: 34px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(183, 146, 74, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 247, 234, 0.96), rgba(255, 255, 255, 0.92)),
    var(--r2-sun-90);
}

.r2-contact-visual {
  position: relative;
  min-height: 520px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0 38%, rgba(237, 248, 251, 0.88) 38% 58%, rgba(6, 21, 38, 0.96) 58%),
    var(--r2-cloud);
  box-shadow: var(--r2-shadow);
}

.r2-contact-visual::before {
  position: absolute;
  inset: 62px 36px 60px auto;
  width: min(58%, 380px);
  border-radius: 18px;
  background: var(--r2-cloud);
  box-shadow: 0 20px 54px rgba(6, 21, 38, 0.22);
  content: "";
}

.r2-contact-lines {
  position: absolute;
  top: 100px;
  right: 70px;
  z-index: 1;
  display: grid;
  gap: 13px;
  width: min(46%, 300px);
}

.r2-contact-lines span {
  height: 10px;
  border-radius: 999px;
  background: var(--r2-mist-160);
}

.r2-contact-lines span:nth-child(1) {
  width: 62%;
  background: var(--r2-ink-900);
}

.r2-contact-lines span:nth-child(2) {
  width: 90%;
}

.r2-contact-lines span:nth-child(3) {
  width: 72%;
}

.r2-contact-lines span:nth-child(4) {
  width: 84%;
  background: var(--r2-sun-170);
}

.r2-contact-lines span:nth-child(5) {
  width: 68%;
}

.r2-contact-lines span:nth-child(6) {
  width: 78%;
}

.r2-contact-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.r2-contact-option {
  min-height: 250px;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--r2-line-blue);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--r2-shadow-soft);
}

.r2-contact-option h3 {
  font-size: 24px;
}

.r2-email-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: 32px;
  align-items: start;
  margin-top: 50px;
}

.r2-email-side {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
  padding: 32px;
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(135deg, rgba(6, 21, 38, 0.98), rgba(23, 48, 78, 0.95)),
    var(--r2-ink-900);
  box-shadow: var(--r2-shadow);
}

.r2-email-side .r2-title,
.r2-email-side .r2-lead,
.r2-email-side .r2-kicker {
  color: var(--r2-cloud);
}

.r2-email-doc {
  display: grid;
  gap: 18px;
}

.r2-email-field {
  padding: 26px;
  border: 1px solid var(--r2-line);
  border-radius: 18px;
  background: var(--r2-cloud);
  box-shadow: var(--r2-shadow-soft);
}

.r2-email-field h3 {
  margin-bottom: 12px;
  color: var(--r2-ink-900);
  font-size: 18px;
}

.r2-email-field code,
.r2-email-field pre {
  font-family: inherit;
}

.r2-email-field code {
  overflow-wrap: anywhere;
  color: var(--r2-sea-760);
  font-weight: 760;
}

.r2-format {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: var(--r2-text);
  font-size: 15px;
  line-height: 1.78;
}

.r2-support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.r2-support {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid var(--r2-line);
  background: var(--r2-cloud);
  box-shadow: var(--r2-shadow-soft);
}

.r2-support h2 {
  color: var(--r2-ink-900);
  font-size: 26px;
  line-height: 1.16;
}

.r2-help-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
  gap: 36px;
  align-items: start;
  margin-top: 46px;
}

.r2-contact-facts {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) 1fr;
  padding: 32px;
  border-radius: 18px;
  background: var(--r2-cloud);
  box-shadow: var(--r2-shadow-soft);
}

.r2-contact-facts dt,
.r2-contact-facts dd {
  padding: 15px 0;
  border-top: 1px solid var(--r2-line);
}

.r2-contact-facts dt {
  color: var(--r2-ink-900);
  font-weight: 760;
}

.r2-contact-facts dd {
  color: var(--r2-muted);
  overflow-wrap: anywhere;
}

.r2-footer {
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(145deg, #061526, #0d2039 52%, #17304e),
    var(--r2-ink-950);
}

.r2-footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1fr);
  gap: 46px;
  padding: 74px 0 52px;
}

.r2-footer-brand {
  display: grid;
  gap: 12px;
  align-content: start;
  max-width: 420px;
}

.r2-footer-brand strong {
  color: var(--r2-cloud);
  font-size: 22px;
  line-height: 1.18;
}

.r2-footer-brand span,
.r2-footer-brand p {
  color: rgba(255, 255, 255, 0.68);
}

.r2-footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.r2-footer-group h2,
.r2-footer-note h2 {
  margin: 0 0 14px;
  color: var(--r2-cloud);
  font-size: 14px;
}

.r2-footer-list {
  display: grid;
  gap: 8px;
}

.r2-footer-list a,
.r2-footer-note a {
  color: rgba(255, 255, 255, 0.7);
}

.r2-footer-list a:hover,
.r2-footer-note a:hover {
  color: var(--r2-cloud);
}

.r2-footer-notes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-bottom: 54px;
}

.r2-footer-note {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.r2-footer-note p {
  color: rgba(255, 255, 255, 0.68);
  overflow-wrap: anywhere;
}

.r2-footer-note p + p {
  margin-top: 10px;
}

.r2-footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

@media (max-width: 1120px) {
  .r2-topbar__grid {
    grid-template-columns: auto 1fr auto;
  }

  .r2-nav {
    position: fixed;
    inset: 82px 16px auto;
    display: none;
    padding: 18px;
    border: 1px solid var(--r2-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--r2-shadow);
  }

  .r2-nav[data-visible] {
    display: block;
  }

  .r2-nav ul {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .r2-nav a {
    justify-content: flex-start;
    min-height: 46px;
    padding: 0 14px;
  }

  .r2-menu {
    display: inline-block;
  }

  .r2-hero__grid,
  .r2-page-hero__grid,
  .r2-market-teaser,
  .r2-approach,
  .r2-email-layout {
    grid-template-columns: 1fr;
  }

  .r2-email-side {
    position: static;
  }

  .r2-coast-plate {
    min-height: 480px;
  }

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

  .r2-steps::before {
    display: none;
  }

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

@media (max-width: 820px) {
  body {
    font-size: 16px;
  }

  .r2-wrap,
  .r2-slim {
    width: min(100% - 40px, var(--r2-page));
  }

  .r2-section {
    padding: 74px 0;
  }

  .r2-hero,
  .r2-page-hero {
    min-height: auto;
    padding: 62px 0 76px;
  }

  .r2-hero-title,
  .r2-page-title {
    font-size: clamp(38px, 10vw, 46px);
  }

  .r2-route-doors,
  .r2-product-stage,
  .r2-market-files,
  .r2-boundary,
  .r2-facts,
  .r2-help-layout,
  .r2-support-grid,
  .r2-footer__grid {
    grid-template-columns: 1fr;
  }

  .r2-door {
    min-height: auto;
  }

  .r2-flow-item,
  .r2-flow-item:nth-child(even) {
    width: 100%;
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .r2-paper--offset {
    margin-left: 0;
  }

  .r2-market-grid {
    grid-template-columns: 1fr;
  }

  .r2-steps,
  .r2-contact-options {
    grid-template-columns: 1fr;
  }

  .r2-fact-list,
  .r2-contact-facts {
    grid-template-columns: 1fr;
  }

  .r2-fact-list dd,
  .r2-contact-facts dd {
    border-top: 0;
    padding-top: 0;
  }

  .r2-cta-field {
    padding: 36px;
  }
}

@media (max-width: 560px) {
  .r2-topbar__grid {
    min-height: 74px;
    gap: 12px;
  }

  .r2-brand {
    font-size: 15px;
  }

  .r2-brand span {
    font-size: 11px;
  }

  .r2-topbar__actions > .r2-action {
    display: none;
  }

  .r2-nav {
    inset: 78px 12px auto;
  }

  .r2-nav ul {
    grid-template-columns: 1fr;
  }

  .r2-action,
  .r2-textlink {
    width: 100%;
  }

  .r2-actions {
    width: 100%;
  }

  .r2-coast-plate,
  .r2-mini-map,
  .r2-contact-visual {
    min-height: 410px;
  }

  .r2-hero-doc {
    right: 18px;
    bottom: 20px;
    width: calc(100% - 36px);
    padding: 20px;
  }

  .r2-hero-doc__marks {
    grid-template-columns: 1fr;
  }

  .r2-door,
  .r2-paper,
  .r2-note-ink,
  .r2-facts,
  .r2-market-file,
  .r2-boundary,
  .r2-email-side,
  .r2-email-field,
  .r2-support,
  .r2-contact-facts {
    padding: 24px;
  }

  .r2-footer-nav,
  .r2-footer-notes {
    grid-template-columns: 1fr;
  }
}

/* Round 2.5 controlled visual revision */
.r2-shell {
  background:
    linear-gradient(90deg, rgba(13, 32, 57, 0.024) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(247, 251, 252, 0.96), rgba(255, 255, 255, 0.98) 36rem, rgba(217, 231, 238, 0.48));
  background-size: 144px 100%, auto;
}

.r2-topbar {
  border-bottom-color: rgba(13, 32, 57, 0.16);
  background: rgba(255, 255, 255, 0.9);
}

.r2-action {
  border-radius: 6px;
}

.r2-action--pale {
  background: rgba(255, 255, 255, 0.92);
}

.r2-menu,
.r2-nav a,
.r2-contact-option,
.r2-email-field,
.r2-support,
.r2-contact-facts,
.r2-criteria,
.r2-boundary,
.r2-cta-field,
.r2-market-file,
.r2-market-glance,
.r2-step,
.r2-facts {
  border-radius: 6px;
}

.r25-hero {
  min-height: calc(100vh - 78px);
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(237, 248, 251, 0.72) 44%, rgba(255, 247, 234, 0.52)),
    var(--r2-cloud);
}

.r25-hero::before {
  background:
    linear-gradient(90deg, rgba(13, 32, 57, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(13, 32, 57, 0.06) 0 1px, transparent 1px 100%);
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.75), transparent 78%);
}

.r25-hero__frame {
  position: relative;
  min-height: calc(100vh - 78px);
  display: grid;
  align-items: end;
  padding: 72px 0 94px;
}

.r25-hero__visual {
  position: absolute;
  inset: 46px 0 34px;
  overflow: hidden;
  border: 1px solid rgba(13, 32, 57, 0.16);
  border-radius: 6px;
  background:
    radial-gradient(circle at 73% 18%, rgba(169, 220, 235, 0.66), transparent 20rem),
    linear-gradient(138deg, rgba(255, 255, 255, 0.94) 0 33%, rgba(217, 231, 238, 0.76) 33% 47%, rgba(21, 89, 120, 0.88) 47% 68%, rgba(6, 21, 38, 0.98) 68%);
  box-shadow: 0 34px 82px rgba(6, 21, 38, 0.18);
}

.r25-hero__visual::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(116deg, transparent 0 48%, rgba(255, 255, 255, 0.22) 48% 49%, transparent 49%),
    repeating-linear-gradient(160deg, rgba(255, 255, 255, 0.16) 0 1px, transparent 1px 28px);
  content: "";
}

.r25-hero__visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.r25-hero-sea {
  opacity: 0.86;
}

.r25-hero-coast {
  fill: none;
  stroke: rgba(255, 247, 234, 0.86);
  stroke-width: 3;
}

.r25-hero-route {
  fill: none;
  stroke: rgba(255, 255, 255, 0.68);
  stroke-width: 3;
  stroke-dasharray: 10 12;
}

.r25-hero-route--gold {
  stroke: rgba(216, 170, 100, 0.84);
  stroke-width: 2.4;
  stroke-dasharray: none;
}

.r25-hero-origin {
  fill: var(--r2-gold);
  stroke: var(--r2-sun-90);
  stroke-width: 8;
}

.r25-hero-point {
  fill: rgba(255, 255, 255, 0.94);
  stroke: rgba(169, 220, 235, 0.62);
  stroke-width: 6;
}

.r25-hero__paper {
  position: absolute;
  top: 42px;
  right: 42px;
  z-index: 2;
  width: min(34%, 420px);
  padding: 26px 28px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-left: 5px solid var(--r2-gold);
  background: rgba(255, 255, 255, 0.78);
  color: var(--r2-ink-900);
  box-shadow: 0 20px 56px rgba(6, 21, 38, 0.16);
}

.r25-hero__paper p {
  font-size: 14px;
  line-height: 1.68;
}

.r25-hero__copy {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 23px;
  width: min(760px, 72%);
  padding: 42px 46px;
  border: 1px solid rgba(13, 32, 57, 0.14);
  border-left: 6px solid var(--r2-gold);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 68px rgba(6, 21, 38, 0.18);
  backdrop-filter: blur(10px);
}

.r25-hero .r2-hero-title {
  max-width: 700px;
  font-size: clamp(42px, 4.2vw, 62px);
  line-height: 1.07;
}

.r25-hero .r2-hero-lead {
  max-width: 680px;
  color: var(--r2-ink-820);
}

.r25-route-system {
  position: relative;
  grid-template-columns: minmax(0, 1fr) 168px minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
}

.r25-route-system::before {
  position: absolute;
  top: 50%;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--r2-sea-460), var(--r2-gold), var(--r2-sea-460));
  content: "";
}

.r25-route-origin {
  position: relative;
  z-index: 2;
  grid-column: 2;
  display: grid;
  place-items: center;
  min-height: 380px;
}

.r25-route-origin span {
  display: grid;
  place-items: center;
  width: 132px;
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(183, 146, 74, 0.42);
  border-radius: 50%;
  color: var(--r2-ink-900);
  background:
    radial-gradient(circle, var(--r2-sun-90) 0 46%, rgba(255, 255, 255, 0.94) 47%),
    var(--r2-cloud);
  box-shadow: 0 18px 42px rgba(13, 32, 57, 0.14);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.25;
  text-align: center;
}

.r25-route-panel {
  grid-row: 1;
  min-height: 380px;
  border-radius: 6px;
  box-shadow: none;
}

.r25-route-panel--buyers {
  grid-column: 1;
  margin-right: 28px;
  background:
    linear-gradient(145deg, rgba(6, 21, 38, 0.95), rgba(23, 48, 78, 0.92)),
    var(--r2-ink-900);
}

.r25-route-panel--suppliers {
  grid-column: 3;
  margin-left: 28px;
}

.r25-route-panel--buyers h3,
.r25-route-panel--buyers p,
.r25-route-panel--buyers .r2-textlink {
  color: var(--r2-cloud);
}

.r25-route-panel--buyers .r2-textlink {
  color: var(--r2-sun-170);
}

.r25-route-panel::before {
  opacity: 0.4;
}

.r25-operating-model {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(13, 32, 57, 0.16);
  border-bottom: 1px solid rgba(13, 32, 57, 0.16);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.8), rgba(237, 248, 251, 0.64)),
    var(--r2-cloud);
}

.r25-operating-model .r2-flow-item,
.r25-operating-model .r2-flow-item:nth-child(even) {
  width: auto;
  min-height: 286px;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-left: 0;
  padding: 30px 24px 34px;
  border: 0;
  border-right: 1px solid rgba(13, 32, 57, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.r25-operating-model .r2-flow-item::before {
  width: 42px;
  height: 3px;
  background: var(--r2-gold);
  content: "";
}

.r25-operating-model .r2-flow-item:nth-child(even)::before {
  background: var(--r2-sea-620);
}

.r25-operating-model .r2-flow-item:last-child {
  border-right: 0;
}

.r25-product-board {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  gap: 0;
  border: 1px solid rgba(13, 32, 57, 0.16);
  background: var(--r2-cloud);
  box-shadow: 0 24px 62px rgba(13, 32, 57, 0.12);
}

.r25-product-groups {
  gap: 0;
}

.r25-product-group,
.r25-product-group.r2-paper--offset {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(0, 1fr);
  gap: 28px;
  margin-left: 0;
  padding: 34px 38px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.r25-product-group--core {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 248, 251, 0.52));
}

.r25-product-group--selective {
  border-top: 1px solid rgba(13, 32, 57, 0.14);
  background: linear-gradient(180deg, rgba(255, 247, 234, 0.86), rgba(255, 255, 255, 0.94));
}

.r25-product-group .r25-category-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  list-style: none;
}

.r25-product-group .r25-category-list li {
  padding: 13px 0;
  border: 0;
  border-top: 1px solid rgba(13, 32, 57, 0.14);
  border-radius: 0;
  background: transparent;
  color: var(--r2-ink-820);
}

.r25-product-board .r2-note-ink {
  border-radius: 0;
  box-shadow: none;
}

.r2-market-teaser {
  align-items: stretch;
}

.r2-market-glance {
  box-shadow: none;
}

.r2-mini-map::before {
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  content: "";
  pointer-events: none;
}

.r25-contact-hero .r2-contact-visual {
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0 30%, rgba(217, 231, 238, 0.9) 30% 54%, rgba(6, 21, 38, 0.96) 54%),
    var(--r2-cloud);
}

.r25-contact-routes {
  border-top: 1px solid rgba(13, 32, 57, 0.16);
  border-bottom: 1px solid rgba(13, 32, 57, 0.16);
  gap: 0;
}

.r25-contact-routes .r2-contact-option {
  min-height: 236px;
  border: 0;
  border-right: 1px solid rgba(13, 32, 57, 0.14);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: none;
}

.r25-contact-routes .r2-contact-option:last-child {
  border-right: 0;
}

.r25-email-desk .r2-email-layout {
  gap: 0;
  border: 1px solid rgba(13, 32, 57, 0.14);
  background: var(--r2-cloud);
  box-shadow: 0 22px 58px rgba(13, 32, 57, 0.1);
}

.r25-email-desk .r2-email-side,
.r25-email-desk .r2-email-field {
  border-radius: 0;
  box-shadow: none;
}

.r25-email-desk .r2-email-side {
  min-height: 100%;
}

.r25-email-desk .r2-email-doc {
  gap: 0;
}

.r25-email-desk .r2-email-field {
  border: 0;
  border-bottom: 1px solid rgba(13, 32, 57, 0.12);
}

.r25-email-desk .r2-email-field:last-child {
  border-bottom: 0;
}

.r2-footer {
  background:
    linear-gradient(155deg, #061526 0%, #0d2039 48%, #102b47 100%),
    var(--r2-ink-950);
}

.r2-footer__grid {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.r2-footer-nav {
  gap: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.r2-footer-group {
  padding: 0 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.r2-footer-group:last-child {
  border-right: 0;
}

.r2-footer-notes {
  gap: 0;
  padding: 0 0 44px;
}

.r2-footer-note {
  padding: 26px 24px 26px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.r2-footer-note + .r2-footer-note {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1120px) {
  .r25-hero__frame {
    min-height: auto;
    padding: 54px 0 78px;
  }

  .r25-hero__visual {
    position: relative;
    inset: auto;
    min-height: 520px;
  }

  .r25-hero__copy {
    width: auto;
    margin: -118px 24px 0;
  }

  .r25-hero__paper {
    width: min(44%, 420px);
  }

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

  .r25-operating-model .r2-flow-item:nth-child(2n) {
    border-right: 0;
  }

  .r25-operating-model .r2-flow-item {
    border-bottom: 1px solid rgba(13, 32, 57, 0.12);
  }

  .r2-footer-nav {
    border-left: 0;
  }
}

@media (max-width: 820px) {
  .r25-hero__copy {
    margin: -92px 18px 0;
    padding: 34px;
    width: auto;
  }

  .r25-hero .r2-hero-title {
    font-size: clamp(36px, 9vw, 46px);
  }

  .r25-hero__paper {
    display: none;
  }

  .r25-route-system {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .r25-route-system::before {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
  }

  .r25-route-origin,
  .r25-route-panel,
  .r25-route-panel--buyers,
  .r25-route-panel--suppliers {
    grid-column: 1;
    grid-row: auto;
    margin: 0;
  }

  .r25-route-origin {
    min-height: 132px;
  }

  .r25-route-panel {
    min-height: 0;
  }

  .r25-operating-model,
  .r25-product-board,
  .r25-product-group,
  .r25-product-group.r2-paper--offset {
    grid-template-columns: 1fr;
  }

  .r25-operating-model .r2-flow-item,
  .r25-operating-model .r2-flow-item:nth-child(even),
  .r25-operating-model .r2-flow-item:nth-child(2n) {
    border-right: 0;
  }

  .r25-product-group .r25-category-list {
    grid-template-columns: 1fr;
  }

  .r25-contact-routes {
    border-bottom: 0;
  }

  .r25-contact-routes .r2-contact-option {
    border-right: 0;
    border-bottom: 1px solid rgba(13, 32, 57, 0.14);
  }

  .r25-email-desk .r2-email-layout {
    border: 0;
    box-shadow: none;
  }
}

@media (max-width: 560px) {
  .r25-hero__visual {
    min-height: 430px;
  }

  .r25-hero__copy {
    margin: -72px 10px 0;
    padding: 28px 24px;
  }

  .r25-hero .r2-hero-title {
    font-size: clamp(34px, 9.4vw, 40px);
  }

  .r25-product-group,
  .r25-product-group.r2-paper--offset {
    padding: 28px 24px;
  }

  .r2-footer-note,
  .r2-footer-note + .r2-footer-note {
    padding: 22px 0;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

/* Round 3 approved visual assets */
.r2-page-hero {
  padding: clamp(54px, 5vw, 82px) 0 clamp(66px, 6vw, 94px);
}

.image-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(13, 32, 57, 0.14);
  border-radius: 10px;
  background: var(--r2-cloud);
}

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

.hero-image-led {
  position: relative;
  padding: clamp(32px, 5vw, 76px) 0 clamp(64px, 7vw, 108px);
  background:
    linear-gradient(180deg, rgba(247, 251, 252, 0.98), rgba(255, 255, 255, 0.96) 58%, rgba(255, 247, 234, 0.52)),
    var(--r2-cloud);
}

.hero-image-led::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 32, 57, 0.028) 0 1px, transparent 1px),
    linear-gradient(180deg, rgba(13, 32, 57, 0.022) 0 1px, transparent 1px);
  background-size: 168px 168px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.44), transparent 76%);
  content: "";
}

.hero-image-led__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  min-height: min(820px, calc(100vh - 78px));
}

.hero-image-led__copy {
  position: relative;
  z-index: 2;
  grid-column: 1 / span 8;
  grid-row: 1;
  display: grid;
  gap: 24px;
  padding: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(13, 32, 57, 0.16);
  border-left: 5px solid var(--r2-gold);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 234, 0.9)),
    var(--r2-cloud);
  box-shadow: 0 20px 46px rgba(6, 21, 38, 0.12);
}

.hero-image-led__frame {
  grid-column: 5 / -1;
  grid-row: 1;
  min-height: clamp(520px, 48vw, 704px);
  border-radius: 10px;
  box-shadow: 0 24px 56px rgba(6, 21, 38, 0.16);
}

.hero-image-led__frame img {
  position: absolute;
  inset: 0;
  object-position: 60% center;
}

.hero-image-led .r2-hero-title {
  max-width: 820px;
  font-size: clamp(40px, 3.65vw, 56px);
  line-height: 1.04;
}

.hero-image-led .r2-hero-title span {
  display: block;
}

.hero-image-led .r2-hero-lead {
  max-width: 670px;
  color: var(--r2-ink-820);
}

.r25-operating-model {
  grid-template-columns: 1fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.76);
}

.r25-operating-model .r2-flow-item,
.r25-operating-model .r2-flow-item:nth-child(even) {
  position: relative;
  min-height: 0;
  grid-template-columns: minmax(230px, 0.42fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 48px);
  align-items: start;
  padding: 28px clamp(24px, 3vw, 40px);
  border-right: 0;
  border-bottom: 1px solid rgba(13, 32, 57, 0.12);
}

.r25-operating-model .r2-flow-item::before,
.r25-operating-model .r2-flow-item:nth-child(even)::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 68px;
  height: 3px;
}

.r25-operating-model .r2-flow-item:last-child {
  border-bottom: 0;
}

.product-focus-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 0.34fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
  margin-top: 54px;
}

.core-category-suite {
  display: grid;
  gap: 24px;
}

.core-category-suite h3,
.review-category-note h3 {
  color: var(--r2-ink-900);
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.14;
}

.image-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
}

.category-visual-card {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  border-top: 1px solid rgba(13, 32, 57, 0.16);
  background: rgba(255, 255, 255, 0.48);
}

.category-visual-card .image-frame {
  aspect-ratio: 4 / 3;
  margin-top: 14px;
  border-radius: 10px;
  box-shadow: 0 14px 30px rgba(13, 32, 57, 0.09);
}

.category-visual-copy {
  display: grid;
  gap: 9px;
  padding-top: 17px;
}

.category-visual-card h4 {
  color: var(--r2-ink-900);
  font-size: clamp(19px, 1.55vw, 23px);
  font-weight: 770;
  line-height: 1.24;
}

.category-visual-card p {
  max-width: 36ch;
  color: var(--r2-muted);
  line-height: 1.6;
}

.review-category-note {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 2.5vw, 32px);
  border: 1px solid rgba(13, 32, 57, 0.14);
  border-left: 3px solid rgba(183, 146, 74, 0.72);
  border-radius: 10px;
  color: var(--r2-ink-820);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(237, 248, 251, 0.72)),
    var(--r2-cloud);
  box-shadow: 0 12px 30px rgba(6, 21, 38, 0.08);
}

.review-category-note h3 {
  color: var(--r2-ink-900);
}

.review-category-note .r25-category-list {
  display: grid;
  gap: 0;
  list-style: none;
}

.review-category-note .r25-category-list li {
  padding: 13px 0;
  border-top: 1px solid rgba(13, 32, 57, 0.12);
  color: var(--r2-ink-900);
  font-weight: 720;
}

.review-category-note p {
  color: var(--r2-muted);
}

.review-category-note .r2-action--line {
  border-color: rgba(13, 32, 57, 0.22);
  color: var(--r2-ink-900);
}

.markets-teaser-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
  margin-top: 52px;
}

.markets-hero {
  padding: clamp(62px, 5.4vw, 92px) 0 clamp(24px, 3.2vw, 46px);
  background:
    radial-gradient(circle at 80% 10%, rgba(169, 220, 235, 0.26), transparent 30rem),
    linear-gradient(180deg, rgba(237, 248, 251, 0.68), rgba(255, 255, 255, 0.96) 64%, var(--r2-cloud));
}

.markets-hero__grid {
  display: grid;
  gap: clamp(28px, 3.2vw, 44px);
}

.markets-hero__copy {
  max-width: 910px;
}

.markets-hero .r2-page-title {
  max-width: 860px;
  font-size: clamp(48px, 5.2vw, 74px);
}

.markets-hero .r2-hero-lead {
  max-width: 780px;
}

.map-board {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(13, 32, 57, 0.13);
  border-radius: 7px;
  background: var(--r2-cloud);
  box-shadow: 0 10px 26px rgba(6, 21, 38, 0.06);
}

.map-board--compact {
  width: min(100%, 760px);
}

.map-board img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.map-board--primary {
  box-shadow: 0 14px 34px rgba(6, 21, 38, 0.075);
}

.markets-map-primary {
  width: 100%;
  border-color: rgba(13, 32, 57, 0.16);
  box-shadow: 0 16px 38px rgba(6, 21, 38, 0.07);
}

.map-board--teaser {
  width: min(100%, 620px);
  border-color: rgba(13, 32, 57, 0.11);
  box-shadow: 0 8px 18px rgba(6, 21, 38, 0.045);
}

.market-teaser-index {
  gap: 0;
  border-top: 1px solid rgba(13, 32, 57, 0.16);
  border-bottom: 1px solid rgba(13, 32, 57, 0.16);
}

.market-teaser-index .r2-market-glance {
  border: 0;
  border-right: 1px solid rgba(13, 32, 57, 0.12);
  border-bottom: 1px solid rgba(13, 32, 57, 0.12);
  border-radius: 0;
  background: transparent;
}

.market-teaser-index .r2-market-glance:nth-child(2n) {
  border-right: 0;
}

.official-table {
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86)),
    url("../img/company-document-background.png") center / cover;
}

.cta-band {
  background:
    linear-gradient(100deg, rgba(6, 21, 38, 0.96), rgba(13, 32, 57, 0.84)),
    url("../img/cta-navy-route-texture.png") center / cover,
    var(--r2-ink-900);
}

.cta-band::after {
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08));
}

.market-approach {
  grid-template-columns: minmax(0, 860px);
  margin-top: clamp(24px, 2.5vw, 34px);
  padding: clamp(24px, 2.7vw, 36px);
  border-top: 1px solid rgba(13, 32, 57, 0.16);
  border-bottom: 1px solid rgba(13, 32, 57, 0.16);
  background: rgba(255, 255, 255, 0.62);
}

.markets-approach-section {
  padding-top: clamp(38px, 5vw, 66px);
  padding-bottom: clamp(20px, 3vw, 38px);
}

.markets-index-section {
  padding-top: clamp(12px, 2vw, 20px);
  padding-bottom: clamp(38px, 5vw, 64px);
  background:
    linear-gradient(180deg, rgba(247, 251, 252, 0.82), rgba(255, 255, 255, 0.98));
}

.market-index {
  gap: 0;
  border-top: 1px solid rgba(13, 32, 57, 0.14);
  border-bottom: 1px solid rgba(13, 32, 57, 0.14);
  background: transparent;
  margin-top: 0;
}

.market-index .r2-market-file {
  position: relative;
  align-content: start;
  gap: clamp(14px, 1.8vw, 20px);
  border: 0;
  border-right: 1px solid rgba(13, 32, 57, 0.12);
  border-bottom: 1px solid rgba(13, 32, 57, 0.12);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: clamp(24px, 2.8vw, 36px);
}

.market-index .r2-market-file:nth-child(2n) {
  border-right: 0;
}

.market-index .r2-market-file .r2-kicker {
  width: max-content;
  min-width: 2.3em;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(13, 32, 57, 0.12);
  color: var(--r2-gold);
  font-size: 0.78rem;
  font-weight: 820;
  line-height: 1;
}

.market-index .r2-market-file h2 {
  font-size: clamp(25px, 2vw, 32px);
  font-weight: 760;
}

.market-index .r2-market-file p {
  max-width: 54ch;
  line-height: 1.74;
}

.market-principles,
.official-note {
  box-shadow: none;
}

.markets-review-section {
  padding-top: clamp(28px, 4vw, 50px);
  padding-bottom: clamp(34px, 4.6vw, 58px);
}

.market-principles {
  margin-top: clamp(24px, 2.8vw, 34px);
  padding: 0;
  border-top: 1px solid rgba(13, 32, 57, 0.16);
  border-right: 0;
  border-bottom: 1px solid rgba(13, 32, 57, 0.16);
  border-left: 0;
  border-radius: 0;
  background: transparent;
}

.market-principles .r2-bullets {
  gap: 0;
}

.market-principles .r2-bullets li {
  padding: 17px 0 17px 28px;
  border-top: 1px solid rgba(13, 32, 57, 0.1);
  line-height: 1.68;
}

.market-principles .r2-bullets li:first-child {
  border-top: 0;
}

.market-principles .r2-bullets li::before {
  top: 1.48em;
  width: 7px;
  height: 7px;
  background: rgba(183, 146, 74, 0.76);
}

.markets-note-section {
  padding-top: clamp(34px, 4.4vw, 58px);
}

.official-note {
  border-radius: 10px;
}

.contact-image {
  aspect-ratio: 3 / 2;
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(6, 21, 38, 0.12);
}

.contact-image img {
  object-position: center;
}

@media (max-width: 1120px) {
  .hero-image-led__grid {
    min-height: 0;
    align-items: start;
  }

  .hero-image-led__copy {
    grid-column: 1 / span 8;
  }

  .hero-image-led__frame {
    grid-column: 5 / -1;
    min-height: clamp(460px, 58vw, 640px);
  }

  .markets-teaser-layout {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 820px) {
  .hero-image-led {
    padding: 30px 0 62px;
  }

  .hero-image-led__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-image-led__copy,
  .hero-image-led__frame {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-image-led__copy {
    z-index: 2;
    justify-self: center;
    width: calc(100% - 32px);
    margin-top: -44px;
    padding: 30px 26px;
  }

  .hero-image-led__frame {
    order: -1;
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .hero-image-led .r2-hero-title {
    font-size: clamp(36px, 7.8vw, 48px);
    line-height: 1.05;
  }

  .r25-operating-model .r2-flow-item,
  .r25-operating-model .r2-flow-item:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .product-focus-editorial,
  .image-category-grid {
    grid-template-columns: 1fr;
  }

  #markets-h2 {
    font-size: clamp(34px, 6.6vw, 42px);
  }

  .market-index,
  .market-teaser-index {
    grid-template-columns: 1fr;
  }

  .market-index .r2-market-file,
  .market-teaser-index .r2-market-glance {
    border-right: 0;
  }
}

@media (max-width: 560px) {
  .image-frame,
  .hero-image-led__frame,
  .map-board--compact,
  .contact-image {
    border-radius: 10px;
  }

  .hero-image-led__copy {
    width: calc(100% - 20px);
    gap: 15px;
    margin-top: -34px;
    padding: 22px 18px;
  }

  .hero-image-led__frame {
    aspect-ratio: 4 / 3;
  }

  .hero-image-led__frame img {
    object-position: 64% center;
  }

  .hero-image-led .r2-hero-title {
    font-size: clamp(28px, 7.4vw, 34px);
    line-height: 1.06;
  }

  .hero-image-led .r2-hero-title span {
    display: inline;
  }

  .hero-image-led .r2-hero-lead {
    font-size: 15px;
    line-height: 1.58;
  }

  .category-visual-card h4 {
    font-size: 20px;
  }

  .map-board--teaser {
    width: min(100%, 330px);
  }

  #markets-h2 {
    font-size: clamp(28px, 7vw, 33px);
    line-height: 1.12;
  }

  #markets-h1 {
    max-width: 100%;
    font-size: clamp(30px, 7.8vw, 34px);
    line-height: 1.08;
    text-wrap: pretty;
  }

}

@media (max-width: 420px) {
  #markets-h1 {
    font-size: clamp(29px, 7.6vw, 32px);
  }
}

/* Round 3.9 Home / Contact polish */
.r25-contact-hero {
  padding: clamp(52px, 4.8vw, 78px) 0 clamp(58px, 5.4vw, 86px);
}

.r25-contact-hero .r2-page-hero__grid {
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.82fr);
  gap: clamp(32px, 4vw, 60px);
  align-items: center;
}

.r25-contact-hero .r2-page-copy {
  max-width: 680px;
}

.r25-contact-hero .contact-image {
  height: clamp(420px, 34vw, 480px);
  aspect-ratio: auto;
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(6, 21, 38, 0.08);
}

.r25-contact-hero .contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.r25-contact-routes {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(30px, 3.5vw, 42px);
}

.r25-contact-routes .r2-contact-option {
  min-height: 188px;
  padding: clamp(24px, 2.6vw, 30px);
  background: rgba(255, 255, 255, 0.66);
}

.review-category-note {
  gap: 14px;
  padding: clamp(20px, 2.2vw, 26px);
  border-color: rgba(13, 32, 57, 0.1);
  border-left-color: rgba(183, 146, 74, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(247, 251, 252, 0.5)),
    var(--r2-cloud);
  box-shadow: none;
}

.review-category-note .r25-category-list li {
  padding: 11px 0;
  border-top-color: rgba(13, 32, 57, 0.09);
}

.r2-topbar__actions > .r2-action {
  box-shadow: 0 8px 18px rgba(13, 32, 57, 0.12);
}

@media (max-width: 1120px) {
  .r2-topbar__actions > .r2-action {
    min-height: 44px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .r2-topbar__actions > .r2-action::after {
    width: 14px;
  }

  .r25-contact-hero .r2-page-hero__grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(330px, 0.84fr);
    gap: clamp(28px, 3.4vw, 44px);
  }
}

@media (max-width: 900px) {
  .r25-contact-routes {
    grid-template-columns: 1fr;
  }

  .r25-contact-routes {
    border-bottom: 0;
  }

  .r25-contact-routes .r2-contact-option {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(13, 32, 57, 0.14);
  }
}

@media (max-width: 640px) {
  .r25-contact-hero .r2-page-hero__grid {
    grid-template-columns: 1fr;
  }

  .r25-contact-hero .contact-image {
    height: auto;
    aspect-ratio: 3 / 2;
  }
}

/* Round 4.0 final controlled polish */
.hero-image-led {
  padding: clamp(28px, 4.4vw, 66px) 0 clamp(52px, 6vw, 92px);
}

.hero-image-led::before {
  background-size: 192px 192px;
  opacity: 0.48;
}

.hero-image-led__grid {
  min-height: min(760px, calc(100vh - 78px));
}

.hero-image-led__copy {
  border-left-width: 4px;
  border-radius: 7px;
  box-shadow: 0 16px 38px rgba(6, 21, 38, 0.1);
}

.hero-image-led__frame {
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(6, 21, 38, 0.12);
}

.hero-image-led .r2-hero-title {
  max-width: 780px;
  font-size: clamp(39px, 3.45vw, 54px);
  text-wrap: balance;
}

.r25-route-system::before {
  height: 1px;
  opacity: 0.78;
}

.r25-route-panel {
  min-height: clamp(300px, 28vw, 348px);
  border: 1px solid rgba(13, 32, 57, 0.16);
}

.r25-route-panel--buyers {
  background: linear-gradient(145deg, rgba(6, 21, 38, 0.93), rgba(20, 58, 86, 0.9));
}

.r25-route-panel--suppliers {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(232, 241, 244, 0.74));
}

.r25-route-origin {
  min-height: clamp(300px, 28vw, 348px);
}

.r25-route-origin span {
  width: 118px;
  min-height: 118px;
  font-size: 13px;
  box-shadow: none;
}

.r25-operating-model {
  border-top: 1px solid rgba(13, 32, 57, 0.14);
  border-bottom: 1px solid rgba(13, 32, 57, 0.14);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(246, 250, 251, 0.7));
}

.r25-operating-model .r2-flow-item {
  padding: clamp(22px, 3vw, 30px) clamp(18px, 3vw, 32px);
}

.category-visual-card {
  background: transparent;
}

.category-visual-card .image-frame {
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(6, 21, 38, 0.06);
}

.review-category-note {
  align-self: start;
  border-left-width: 1px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 247, 234, 0.58));
}

.map-board--teaser {
  box-shadow: 0 6px 14px rgba(6, 21, 38, 0.06);
}

.official-table {
  background:
    linear-gradient(100deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
    url("../img/company-document-background.png") center / cover;
}

.cta-band {
  border-radius: 8px;
  box-shadow: none;
}

.r25-contact-hero {
  padding: clamp(48px, 4.2vw, 70px) 0 clamp(52px, 5vw, 80px);
}

.r25-contact-hero .contact-image {
  border-radius: 7px;
  box-shadow: 0 8px 24px rgba(6, 21, 38, 0.07);
}

.r25-contact-routes .r2-contact-option {
  background: rgba(255, 255, 255, 0.58);
}

.r25-email-desk .r2-email-layout {
  box-shadow: 0 14px 36px rgba(6, 21, 38, 0.08);
}

.r2-support,
.r2-contact-facts {
  border-radius: 8px;
}

.r2-contact-facts {
  border: 1px solid rgba(13, 32, 57, 0.12);
  box-shadow: none;
}

@media (max-width: 820px) {
  .hero-image-led {
    padding: 24px 0 52px;
  }

  .hero-image-led__copy {
    box-shadow: 0 12px 28px rgba(6, 21, 38, 0.09);
  }

  .r25-route-origin {
    min-height: 124px;
  }

  .r25-route-origin span {
    width: auto;
    min-height: 0;
    box-shadow: none;
  }
}

@media (max-width: 560px) {
  .hero-image-led {
    padding-top: 18px;
  }

  .hero-image-led .r2-hero-title {
    font-size: clamp(27px, 7vw, 32px);
    line-height: 1.08;
  }

  .r25-contact-hero {
    padding: 38px 0 50px;
  }
}

/* Round 4.2 full-site asset activation */
.fs-hero {
  padding: clamp(46px, 5.4vw, 86px) 0 clamp(48px, 5.2vw, 84px);
  background:
    radial-gradient(circle at 18% 12%, rgba(169, 220, 235, 0.28), transparent 26rem),
    linear-gradient(138deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 252, 0.96) 55%, rgba(255, 247, 234, 0.72) 100%);
}

.fs-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: clamp(30px, 4.6vw, 74px);
  align-items: center;
}

.fs-hero .r2-page-title {
  max-width: 12.5em;
  font-size: clamp(40px, 4.7vw, 68px);
  line-height: 1.02;
  text-wrap: balance;
}

.fs-hero .r2-hero-lead {
  max-width: 680px;
}

.fs-hero__media {
  height: clamp(340px, 34vw, 480px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(13, 32, 57, 0.12);
  border-radius: 10px;
  background: var(--r2-cloud);
  box-shadow: 0 18px 42px rgba(6, 21, 38, 0.1);
}

.fs-hero__media img,
.fs-product-card img,
.fs-sensitive img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fs-row-list {
  display: grid;
  border-top: 1px solid rgba(13, 32, 57, 0.15);
  border-bottom: 1px solid rgba(13, 32, 57, 0.15);
}

.fs-row {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 42px);
  padding: clamp(22px, 3.2vw, 36px) 0;
  border-bottom: 1px solid rgba(13, 32, 57, 0.11);
}

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

.fs-number {
  color: var(--r2-gold);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.fs-row h3,
.fs-product-card h3,
.fs-sensitive h3,
.fs-qa h3 {
  margin: 0 0 8px;
  color: var(--r2-ink-900);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.22;
}

.fs-row p,
.fs-product-card p,
.fs-sensitive p,
.fs-qa p {
  margin: 0;
  max-width: 820px;
  color: var(--r2-muted);
}

.fs-detail {
  margin-top: 10px !important;
  color: var(--r2-sea-760) !important;
  font-size: 15px;
}

.fs-bullets {
  max-width: 900px;
  margin: 0;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(13, 32, 57, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: none;
}

.fs-bullets li + li {
  margin-top: 10px;
}

.fs-bullets li::marker {
  color: var(--r2-gold);
}

.fs-notice-wrap {
  display: grid;
  gap: 22px;
}

.fs-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 3.4vw, 44px);
}

.fs-product-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.44fr) minmax(0, 1fr);
  gap: clamp(18px, 2.6vw, 30px);
  align-items: stretch;
  padding-top: 24px;
  border-top: 1px solid rgba(13, 32, 57, 0.14);
}

.fs-product-card .image-frame {
  min-height: 180px;
  overflow: hidden;
  border: 1px solid rgba(13, 32, 57, 0.11);
  border-radius: 8px;
}

.fs-sensitive-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 3vw, 38px);
}

.fs-sensitive {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 28px);
  align-items: start;
  padding: clamp(20px, 3vw, 30px) 0;
  border-top: 1px solid rgba(13, 32, 57, 0.14);
  border-bottom: 1px solid rgba(13, 32, 57, 0.08);
}

.fs-sensitive .image-frame {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(13, 32, 57, 0.11);
  border-radius: 8px;
}

.fs-company-table {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(13, 32, 57, 0.15);
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 252, 0.9)),
    url("../img/company-document-background.png") center / cover;
}

.fs-company-table div {
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) minmax(0, 1fr);
  gap: 18px;
  padding: clamp(16px, 2.4vw, 24px) 0;
  border-bottom: 1px solid rgba(13, 32, 57, 0.1);
}

.fs-company-table dt {
  color: var(--r2-ink-900);
  font-weight: 760;
}

.fs-company-table dd {
  margin: 0;
  color: var(--r2-muted);
}

.fs-timeline {
  display: grid;
  gap: clamp(36px, 4.6vw, 60px);
}

.fs-faq-group {
  border-top: 1px solid rgba(13, 32, 57, 0.16);
}

.fs-faq-group h2 {
  margin: 0 0 10px;
  padding-top: 20px;
  color: var(--r2-ink-900);
  font-size: clamp(26px, 2.7vw, 38px);
  line-height: 1.15;
}

.fs-qa {
  padding: clamp(18px, 2.8vw, 28px) 0;
  border-bottom: 1px solid rgba(13, 32, 57, 0.1);
}

.fs-cta {
  background:
    linear-gradient(100deg, rgba(6, 21, 38, 0.94), rgba(13, 32, 57, 0.84)),
    url("../img/cta-navy-route-texture.png") center / cover;
}

.fs-compat {
  min-height: 58vh;
  display: grid;
  place-items: center;
}

.fs-ja-topbar {
  grid-template-columns: 1fr auto;
}

.fs-ja-topbar .r2-brand {
  max-width: 68vw;
  font-size: 18px;
}

@media (max-width: 900px) {
  .fs-hero__grid,
  .fs-product-grid,
  .fs-sensitive-grid,
  .fs-company-table {
    grid-template-columns: 1fr;
  }

  .fs-hero__media {
    order: -1;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .fs-product-card,
  .fs-sensitive {
    grid-template-columns: 1fr;
  }

  .fs-product-card .image-frame {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 640px) {
  .fs-hero {
    padding: 32px 0 48px;
  }

  .fs-hero .r2-page-title {
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.08;
  }

  .fs-hero__grid {
    gap: 24px;
  }

  .fs-hero__media {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
  }

  .fs-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px 0;
  }

  .fs-number {
    font-size: 12px;
  }

  .fs-company-table div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .fs-ja-topbar {
    min-height: 68px;
  }

  .fs-ja-topbar .r2-brand {
    font-size: 16px;
  }
}
