:root {
  --jd-bg: #020b18;
  --jd-bg-2: #06182c;
  --jd-surface: #071426;
  --jd-surface-2: #0b1e34;
  --jd-text: #f6f8fb;
  --jd-muted: #9aaabd;
  --jd-orange: #f27a24;
  --jd-orange-2: #ff9a45;
  --jd-cyan: #27d3f2;
  --jd-line: rgba(242, 122, 36, .48);
  --jd-line-soft: rgba(154, 170, 189, .2);
  --jd-shadow: 0 28px 80px rgba(0, 0, 0, .34);
  --jd-shell: 1240px;
  --jd-radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.jd88-site {
  margin: 0;
  color: var(--jd-text);
  background:
    radial-gradient(circle at 76% 8%, rgba(39, 211, 242, .08), transparent 25%),
    radial-gradient(circle at 9% 38%, rgba(242, 122, 36, .06), transparent 23%),
    linear-gradient(180deg, #020b18 0%, #041122 47%, #020b18 100%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.jd88-site::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(rgba(255,255,255,.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.016) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
  z-index: -1;
}

.jd-shell { width: min(calc(100% - 40px), var(--jd-shell)); margin: 0 auto; }

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--jd-bg);
  background: var(--jd-cyan);
  border-radius: 8px;
}

.skip-link:focus { top: 12px; }

.jd-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(242, 122, 36, .32);
  background: rgba(2, 11, 24, .9);
  backdrop-filter: blur(16px);
}

.jd-nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.jd-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  font-size: 31px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -2px;
}

.jd-brand::before {
  content: "";
  width: 32px;
  height: 36px;
  border: 3px solid var(--jd-orange);
  clip-path: polygon(50% 0, 100% 26%, 88% 82%, 50% 100%, 12% 82%, 0 26%);
  box-shadow: inset 0 0 0 5px rgba(242, 122, 36, .08);
}

.jd-brand span { color: var(--jd-orange); }

.jd-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  margin-left: auto;
  font-size: 15px;
  font-weight: 650;
}

.jd-menu a { position: relative; padding: 27px 0 25px; color: #dfe6ef; }

.jd-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 16px;
  height: 2px;
  background: var(--jd-orange);
  transition: right .25s ease;
}

.jd-menu a:hover,
.jd-menu a.active { color: #fff; }

.jd-menu a:hover::after,
.jd-menu a.active::after { right: 0; }

.jd-nav-actions { display: flex; gap: 10px; margin-left: 4px; }

.jd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 21px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 10px;
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}

.jd-btn:hover { transform: translateY(-2px); border-color: var(--jd-cyan); }

.jd-btn-primary {
  color: #fff;
  border-color: var(--jd-orange);
  background: linear-gradient(135deg, #d85a0d, var(--jd-orange));
  box-shadow: 0 12px 32px rgba(242, 122, 36, .2);
}

.jd-btn-cyan { color: var(--jd-cyan); border-color: var(--jd-cyan); background: rgba(39,211,242,.04); }

.jd-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--jd-line);
  border-radius: 9px;
  color: #fff;
  background: transparent;
  font-size: 21px;
}

.jd-hero {
  position: relative;
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.15fr);
  align-items: center;
  gap: 18px;
  padding: 58px 0 70px;
}

.jd-hero::before,
.jd-section::before {
  content: "88";
  position: absolute;
  z-index: -1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 122, 36, .2);
  font-size: clamp(180px, 24vw, 360px);
  font-weight: 950;
  letter-spacing: -30px;
  line-height: 1;
}

.jd-hero::before { left: 31%; top: 72px; opacity: .8; }

.jd-hero-copy { position: relative; z-index: 2; max-width: 650px; padding-left: 8px; }

.jd-hero h1 {
  margin: 0 0 24px;
  font-size: clamp(48px, 5.2vw, 78px);
  line-height: 1.03;
  letter-spacing: -3px;
  text-wrap: balance;
}

.jd-hero h1 span { color: var(--jd-orange); }

.jd-hero-copy > p {
  max-width: 590px;
  margin: 0;
  color: #b8c4d2;
  font-size: 19px;
}

.jd-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 28px; }

.jd-hero-actions .jd-btn { min-height: 56px; padding: 0 27px; }

.jd-trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  color: #aab8c8;
  font-size: 13px;
}

.jd-trust-line span { position: relative; padding-left: 17px; }

.jd-trust-line span::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--jd-cyan);
}

.jd-hero-media {
  position: relative;
  min-height: 510px;
  margin-right: -110px;
  overflow: hidden;
  border: 1px solid var(--jd-line);
  clip-path: polygon(6% 0, 100% 0, 100% 91%, 94% 100%, 0 100%, 0 8%);
  box-shadow: var(--jd-shadow);
}

.jd-hero-media img { width: 100%; height: 100%; min-height: 510px; object-fit: cover; object-position: 50% center; }

.jd-orient {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  align-items: stretch;
  border: 1px solid var(--jd-line);
  background: rgba(7,20,38,.88);
  clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px);
  box-shadow: var(--jd-shadow);
}

.jd-orient > div,
.jd-orient > a { min-height: 146px; padding: 28px 30px; }

.jd-orient > * + * { border-left: 1px solid var(--jd-line-soft); }

.jd-orient h2 { margin: 0 0 9px; font-size: 28px; }

.jd-orient p { margin: 0; color: var(--jd-muted); font-size: 14px; }

.jd-orient a { display: flex; flex-direction: column; justify-content: center; transition: background .2s ease; }

.jd-orient a:hover { background: rgba(39,211,242,.045); }

.jd-orient b { color: var(--jd-orange); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; }

.jd-orient strong { margin: 6px 0 3px; font-size: 19px; }

.jd-section { position: relative; padding: 118px 0 0; }

.jd-section::before { right: 4%; top: 74px; font-size: 190px; letter-spacing: -16px; opacity: .8; }

.jd-section-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.jd-section-head h2 { margin: 0; font-size: clamp(35px, 4vw, 54px); line-height: 1.08; letter-spacing: -1.7px; }

.jd-section-head h2 span { color: var(--jd-orange); }

.jd-section-head p { max-width: 530px; margin: 12px 0 0; color: var(--jd-muted); }

.jd-text-link { color: var(--jd-cyan); font-weight: 800; white-space: nowrap; }

.jd-catalog {
  display: grid;
  grid-template-columns: .86fr 1.28fr;
  grid-template-rows: 250px 210px;
  gap: 16px;
}

.jd-destination {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--jd-line);
  background: var(--jd-surface);
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
}

.jd-destination::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,11,24,.9) 0%, rgba(2,11,24,.18) 64%, transparent 100%);
  pointer-events: none;
}

.jd-destination img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }

.jd-destination:hover img { transform: scale(1.035); }

.jd-destination-copy { position: absolute; z-index: 2; left: 30px; bottom: 25px; right: 24px; }

.jd-destination-copy i { color: var(--jd-cyan); font-size: 25px; }

.jd-destination-copy h3 { margin: 8px 0 2px; font-size: 26px; }

.jd-destination-copy p { margin: 0; max-width: 400px; color: #bdc8d4; font-size: 14px; }

.jd-destination-large { grid-row: 1 / span 2; }

.jd-destination-wide::after { background: linear-gradient(90deg, rgba(2,11,24,.93) 0%, rgba(2,11,24,.25) 60%, transparent); }

.jd-mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

.jd-mini-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--jd-line-soft);
  background:
    radial-gradient(circle at 80% 12%, rgba(39,211,242,.12), transparent 32%),
    linear-gradient(145deg, #0b1d32, #06101e);
  clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
  transition: transform .22s ease, border-color .22s ease;
}

.jd-mini-card:hover { transform: translateY(-5px); border-color: var(--jd-cyan); }

.jd-mini-card i { color: var(--jd-orange); font-size: 28px; }

.jd-mini-card strong { display: block; margin-top: 18px; font-size: 17px; }

.jd-mini-card span { color: var(--jd-cyan); font-size: 13px; }

.jd-journey {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 46px;
  align-items: center;
  padding: 48px;
  border: 1px solid var(--jd-line);
  background:
    linear-gradient(105deg, rgba(7,20,38,.97), rgba(5,16,31,.9)),
    radial-gradient(circle at 90% 10%, rgba(39,211,242,.12), transparent 34%);
  clip-path: polygon(25px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%, 0 25px);
}

.jd-journey h2 { margin: 0 0 38px; font-size: clamp(34px, 3.6vw, 48px); }

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

.jd-step { position: relative; padding-top: 62px; }

.jd-step::before {
  content: attr(data-step);
  position: absolute;
  left: 0;
  top: 0;
  display: grid;
  place-items: center;
  width: 46px;
  height: 42px;
  color: var(--jd-orange);
  border: 1px solid var(--jd-line);
  clip-path: polygon(9px 0, 100% 0, 100% calc(100% - 9px), calc(100% - 9px) 100%, 0 100%, 0 9px);
  font-weight: 900;
}

.jd-step::after { content: ""; position: absolute; left: 52px; right: -12px; top: 21px; height: 1px; background: var(--jd-line); }

.jd-step:last-child::after { display: none; }

.jd-step h3 { margin: 0 0 8px; font-size: 17px; }

.jd-step p { margin: 0; color: var(--jd-muted); font-size: 13px; }

.jd-app-visual { overflow: hidden; border: 1px solid rgba(39,211,242,.35); clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px); }

.jd-app-visual img { width: 100%; min-height: 360px; object-fit: cover; object-position: 44% center; }

.jd-editorial { display: grid; grid-template-columns: 1.18fr .82fr; gap: 22px; }

.jd-lead-story {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid var(--jd-line);
  clip-path: polygon(25px 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%, 0 25px);
}

.jd-lead-story::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(2,11,24,.98), rgba(2,11,24,.1) 70%); }

.jd-lead-story img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; }

.jd-lead-story div { position: absolute; z-index: 2; left: 35px; right: 35px; bottom: 32px; }

.jd-lead-story small { color: var(--jd-cyan); font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

.jd-lead-story h3 { margin: 9px 0 8px; font-size: 31px; line-height: 1.2; }

.jd-lead-story p { margin: 0; color: #b9c5d2; }

.jd-story-list { display: flex; flex-direction: column; gap: 16px; }

.jd-story-row {
  flex: 1;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 27px;
  border: 1px solid var(--jd-line-soft);
  background: rgba(7,20,38,.76);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
}

.jd-story-row i { color: var(--jd-orange); font-size: 34px; text-align: center; }

.jd-story-row h3 { margin: 0 0 6px; font-size: 20px; line-height: 1.3; }

.jd-story-row p { margin: 0; color: var(--jd-muted); font-size: 14px; }

.jd-story-row > span { color: var(--jd-cyan); font-size: 24px; }

.jd-dynamic-feed { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 24px; }

.jd-dynamic-card { padding: 22px; border: 1px solid var(--jd-line-soft); background: rgba(7,20,38,.75); }

.jd-dynamic-card time { color: var(--jd-cyan); font-size: 12px; }

.jd-dynamic-card h3 { margin: 9px 0; font-size: 18px; line-height: 1.3; }

.jd-dynamic-card p { margin: 0; color: var(--jd-muted); font-size: 13px; }

.jd-safety {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(39,211,242,.6);
  background: linear-gradient(110deg, #041525, #06223a);
  clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px);
}

.jd-safety-copy { padding: 52px; }

.jd-safety h2 { margin: 0; max-width: 720px; font-size: clamp(34px, 4vw, 52px); line-height: 1.1; }

.jd-safety-points { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 32px 0; }

.jd-safety-point { color: #c6d1dc; font-size: 13px; }

.jd-safety-point i { display: block; margin-bottom: 9px; color: var(--jd-cyan); font-size: 27px; }

.jd-safety-media { height: 100%; min-height: 400px; }

.jd-safety-media img { width: 100%; height: 100%; min-height: 400px; object-fit: cover; object-position: 63% center; }

.jd-faq-wrap { display: grid; grid-template-columns: 1fr .6fr; gap: 34px; align-items: start; }

.jd-faq details { border-top: 1px solid var(--jd-line-soft); }

.jd-faq details:last-child { border-bottom: 1px solid var(--jd-line-soft); }

.jd-faq summary { position: relative; padding: 23px 42px 23px 0; cursor: pointer; font-size: 19px; font-weight: 750; list-style: none; }

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

.jd-faq summary::after { content: "+"; position: absolute; right: 4px; color: var(--jd-orange); font-size: 28px; line-height: 1; }

.jd-faq details[open] summary::after { content: "−"; }

.jd-faq details p { max-width: 820px; margin: -4px 0 23px; color: var(--jd-muted); }

.jd-quick-links { padding: 30px; border: 1px solid var(--jd-line); background: rgba(7,20,38,.72); clip-path: polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px); }

.jd-quick-links h3 { margin: 0 0 16px; color: var(--jd-orange); font-size: 20px; }

.jd-quick-links a { display: flex; justify-content: space-between; gap: 16px; padding: 13px 0; color: #c8d2dd; border-bottom: 1px solid var(--jd-line-soft); }

.jd-quick-links a:last-child { border-bottom: 0; }

.jd-footer { margin-top: 120px; border-top: 1px solid var(--jd-line); background: #020912; }

.jd-footer-grid { display: grid; grid-template-columns: 1.35fr repeat(3, .8fr); gap: 52px; padding: 58px 0 42px; }

.jd-footer .jd-brand { margin-bottom: 16px; }

.jd-footer p { color: var(--jd-muted); font-size: 14px; }

.jd-footer h3 { margin: 0 0 17px; color: var(--jd-orange); font-size: 15px; text-transform: uppercase; letter-spacing: .08em; }

.jd-footer-links { display: flex; flex-direction: column; gap: 9px; color: #bcc7d2; font-size: 14px; }

.jd-footer-links a:hover { color: var(--jd-cyan); }

.jd-footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 20px 0 28px; color: #7f90a2; border-top: 1px solid var(--jd-line-soft); font-size: 13px; }

.jd-breadcrumb { border-bottom: 1px solid var(--jd-line-soft); background: rgba(7,20,38,.55); }

.jd-breadcrumb .jd-shell { display: flex; flex-wrap: wrap; gap: 10px; padding: 15px 0; color: #96a7b8; font-size: 13px; }

.jd-breadcrumb a { color: var(--jd-cyan); }

.jd-topic-hero {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 44px;
  padding: 68px 0 72px;
}

.jd-topic-copy h1 { margin: 0 0 20px; font-size: clamp(43px, 5vw, 68px); line-height: 1.06; letter-spacing: -2px; }

.jd-topic-copy p { margin: 0; color: #b3c0ce; font-size: 18px; }

.jd-topic-copy .jd-trust-line { margin-top: 25px; }

.jd-topic-media { overflow: hidden; border: 1px solid var(--jd-line); clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px); }

.jd-topic-media img { width: 100%; min-height: 430px; object-fit: cover; }

.jd-content-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 46px; align-items: start; }

.jd-prose { min-width: 0; }

.jd-prose h2 { margin: 54px 0 18px; font-size: 34px; line-height: 1.18; }

.jd-prose h3 { margin: 34px 0 13px; font-size: 23px; }

.jd-prose p { margin: 0 0 18px; color: #c0cad5; }

.jd-prose ul,
.jd-prose ol { margin: 0 0 24px; padding-left: 24px; color: #c0cad5; }

.jd-prose li { margin: 9px 0; }

.jd-prose a { color: var(--jd-cyan); text-decoration: underline; text-underline-offset: 3px; }

.jd-prose table { width: 100%; margin: 26px 0; border-collapse: collapse; background: rgba(7,20,38,.72); }

.jd-prose th,
.jd-prose td { padding: 15px 17px; border: 1px solid var(--jd-line-soft); text-align: left; vertical-align: top; }

.jd-prose th { color: var(--jd-orange); }

.jd-note {
  margin: 28px 0;
  padding: 22px 24px;
  color: #cdebf0;
  border-left: 3px solid var(--jd-cyan);
  background: rgba(39,211,242,.07);
}

.jd-warning { border-left-color: var(--jd-orange); background: rgba(242,122,36,.08); color: #f2d8c5; }

.jd-aside { position: sticky; top: 104px; display: flex; flex-direction: column; gap: 18px; }

.jd-aside-panel { padding: 26px; border: 1px solid var(--jd-line); background: rgba(7,20,38,.82); clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px); }

.jd-aside-panel h3 { margin: 0 0 16px; color: var(--jd-orange); font-size: 18px; }

.jd-aside-panel a { display: block; padding: 10px 0; color: #bdc8d3; border-bottom: 1px solid var(--jd-line-soft); font-size: 14px; }

.jd-aside-panel a:last-child { border-bottom: 0; }

.jd-topic-related { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 38px; }

.jd-topic-related a { padding: 21px; border: 1px solid var(--jd-line-soft); background: rgba(7,20,38,.7); }

.jd-topic-related strong { display: block; color: #fff; }

.jd-topic-related span { color: var(--jd-cyan); font-size: 13px; }

.jd-article-head { padding: 64px 0 38px; }

.jd-article-head h1 { max-width: 900px; margin: 0 0 18px; font-size: clamp(42px, 5vw, 67px); line-height: 1.08; letter-spacing: -2px; }

.jd-article-head p { max-width: 800px; margin: 0; color: #b3c0ce; font-size: 18px; }

.jd-article-meta { display: flex; flex-wrap: wrap; gap: 12px 24px; margin-top: 22px; color: #7f92a5; font-size: 13px; }

.jd-article-cover { overflow: hidden; margin-bottom: 36px; border: 1px solid var(--jd-line); clip-path: polygon(24px 0, 100% 0, 100% calc(100% - 24px), calc(100% - 24px) 100%, 0 100%, 0 24px); }

.jd-article-cover img { width: 100%; max-height: 560px; object-fit: cover; }

.jd-page-list { margin-top: 24px; color: var(--jd-muted); }

.jd-page-list .page-link { display: inline-block; margin: 4px; padding: 8px 12px; border: 1px solid var(--jd-line-soft); }

@media (max-width: 1120px) {
  .jd-menu { gap: 15px; font-size: 14px; }
  .jd-nav-actions .jd-btn:first-child { display: none; }
  .jd-hero { grid-template-columns: .88fr 1.12fr; }
  .jd-hero-media { margin-right: -50px; }
  .jd-journey { grid-template-columns: 1fr 330px; }
  .jd-steps { grid-template-columns: repeat(2, 1fr); }
  .jd-step:nth-child(2)::after { display: none; }
  .jd-safety { grid-template-columns: 1fr 330px; }
  .jd-safety-points { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .jd-shell { width: min(calc(100% - 28px), var(--jd-shell)); }
  .jd-nav { min-height: 68px; }
  .jd-brand { font-size: 27px; }
  .jd-brand::before { width: 27px; height: 31px; }
  .jd-menu-toggle { display: grid; place-items: center; }
  .jd-menu {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 1px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px;
    border: 1px solid var(--jd-line);
    background: #04101f;
    box-shadow: var(--jd-shadow);
  }
  .jd-menu.open { display: flex; }
  .jd-menu a { padding: 12px 0; border-bottom: 1px solid var(--jd-line-soft); }
  .jd-menu a::after { display: none; }
  .jd-nav-actions { margin-left: 0; }
  .jd-nav-actions .jd-btn { min-height: 42px; padding: 0 15px; font-size: 13px; }
  .jd-hero { min-height: 0; grid-template-columns: 1fr; padding: 54px 0 24px; }
  .jd-hero-copy { max-width: 750px; }
  .jd-hero h1 { max-width: 690px; font-size: clamp(46px, 9vw, 70px); }
  .jd-hero-media { min-height: 430px; margin: 24px 0 0; }
  .jd-hero-media img { min-height: 430px; object-position: 57% center; }
  .jd-orient { grid-template-columns: repeat(3, 1fr); }
  .jd-orient > div { grid-column: 1 / -1; min-height: auto; }
  .jd-orient > * + * { border-left: 0; border-top: 1px solid var(--jd-line-soft); }
  .jd-orient a + a { border-left: 1px solid var(--jd-line-soft); }
  .jd-section { padding-top: 90px; }
  .jd-section-head { align-items: start; flex-direction: column; }
  .jd-catalog { grid-template-columns: 1fr; grid-template-rows: 420px 240px auto; }
  .jd-destination-large { grid-row: auto; }
  .jd-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .jd-mini-card { min-height: 160px; }
  .jd-journey { grid-template-columns: 1fr; padding: 34px; }
  .jd-app-visual { max-height: 420px; }
  .jd-editorial { grid-template-columns: 1fr; }
  .jd-story-row { min-height: 150px; }
  .jd-dynamic-feed { grid-template-columns: repeat(2, 1fr); }
  .jd-safety { grid-template-columns: 1fr; }
  .jd-safety-media { max-height: 390px; }
  .jd-faq-wrap { grid-template-columns: 1fr; }
  .jd-footer-grid { grid-template-columns: 1.2fr repeat(2, 1fr); }
  .jd-footer-grid > div:last-child { grid-column: 2 / -1; }
  .jd-topic-hero { grid-template-columns: 1fr; }
  .jd-topic-media { order: -1; }
  .jd-content-layout { grid-template-columns: 1fr; }
  .jd-aside { position: static; }
}

@media (max-width: 620px) {
  .jd-shell { width: min(calc(100% - 22px), var(--jd-shell)); }
  .jd-brand::before { display: none; }
  .jd-nav-actions .jd-btn { display: none; }
  .jd-hero { padding-top: 42px; }
  .jd-hero h1 { font-size: 45px; letter-spacing: -2px; }
  .jd-hero-copy > p { font-size: 16px; }
  .jd-hero-actions { flex-direction: column; }
  .jd-hero-actions .jd-btn { width: 100%; }
  .jd-hero-media,
  .jd-hero-media img { min-height: 320px; }
  .jd-hero-media img { object-position: 63% center; }
  .jd-orient { grid-template-columns: 1fr; }
  .jd-orient > * + *,
  .jd-orient a + a { border-left: 0; border-top: 1px solid var(--jd-line-soft); }
  .jd-orient > div,
  .jd-orient > a { min-height: auto; padding: 23px; }
  .jd-section { padding-top: 76px; }
  .jd-section-head h2 { font-size: 36px; }
  .jd-catalog { grid-template-rows: 340px 230px auto; }
  .jd-mini-grid { grid-template-columns: 1fr 1fr; }
  .jd-mini-card { padding: 18px; }
  .jd-journey { padding: 25px; }
  .jd-journey h2 { margin-bottom: 28px; font-size: 34px; }
  .jd-steps { grid-template-columns: 1fr; }
  .jd-step::after { display: none; }
  .jd-app-visual img { min-height: 300px; }
  .jd-lead-story,
  .jd-lead-story img { min-height: 430px; }
  .jd-lead-story div { left: 24px; right: 24px; }
  .jd-lead-story h3 { font-size: 25px; }
  .jd-story-row { grid-template-columns: 50px 1fr; padding: 21px; }
  .jd-story-row > span { display: none; }
  .jd-dynamic-feed { grid-template-columns: 1fr; }
  .jd-safety-copy { padding: 30px 24px; }
  .jd-safety h2 { font-size: 34px; }
  .jd-safety-points { grid-template-columns: 1fr 1fr; }
  .jd-safety-media,
  .jd-safety-media img { min-height: 300px; }
  .jd-footer { margin-top: 84px; }
  .jd-footer-grid { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .jd-footer-grid > div:first-child,
  .jd-footer-grid > div:last-child { grid-column: 1 / -1; }
  .jd-footer-bottom { flex-direction: column; }
  .jd-topic-hero { padding-top: 36px; }
  .jd-topic-copy h1 { font-size: 43px; }
  .jd-topic-media img { min-height: 290px; }
  .jd-prose h2 { font-size: 29px; }
  .jd-prose table { font-size: 13px; }
  .jd-prose th,
  .jd-prose td { padding: 11px; }
  .jd-topic-related { grid-template-columns: 1fr; }
  .jd-article-head { padding-top: 42px; }
  .jd-article-head h1 { font-size: 41px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
