:root {
  --ink: #0f172a;
  --ink-light: #1e293b;
  --muted: #64748b;
  --paper: #f8fafc;
  --white: #ffffff;
  --line: #e2e8f0;
  --navy: #0f172a;
  --navy-deep: #090d16;
  --accent: #0284c7;
  --accent-light: #38bdf8;
  --teal: #059669;
  --teal-light: #34d399;
  --gold: #d97706;
  --danger: #e11d48;
  --card-bg: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  line-height: 1.2;
}

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

button {
  font: inherit;
  cursor: pointer;
}

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

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

a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

summary {
  cursor: pointer;
}

summary::marker {
  color: var(--accent);
}

.wrap {
  width: min(1200px, calc(100% - 80px));
  margin-inline: auto;
}

.section {
  padding-block: 96px;
}

/* Eyebrow badge */
.eyebrow, .small-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  color: var(--accent);
}

.eyebrow > span {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 9px;
}

/* Announcement Top Notice */
.notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 10px 20px;
  background: var(--navy-deep);
  color: #e2e8f0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.notice a {
  color: var(--accent-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.notice a:hover {
  text-decoration: underline;
}

/* Header & Nav */
header {
  position: sticky;
  top: 0;
  background: rgba(248, 250, 252, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}

.header-inner {
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
  font-weight: 800;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.brand img {
  flex-shrink: 0;
  border-radius: 8px;
}

.brand small {
  display: block;
  font-size: 10px;
  letter-spacing: 1.8px;
  font-weight: 600;
  color: var(--muted);
  margin-top: 3px;
}

nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: clamp(10px, 1.4vw, 22px);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-light);
}

nav a {
  padding-block: 8px;
  transition: color 0.2s;
  white-space: nowrap;
}

nav a:hover {
  color: var(--accent);
}

nav a[aria-current] {
  color: var(--accent);
  box-shadow: inset 0 -2px var(--accent);
}

.login-nav {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 8px 14px;
  border-radius: 6px;
  margin-left: 4px;
  font-weight: 700;
  transition: all 0.2s;
  white-space: nowrap;
}

.login-nav:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(2, 132, 199, 0.12);
}

.menu-toggle {
  display: none;
}

/* Hero Section */
.hero {
  padding-top: 72px;
}

.hero-top {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 48px;
}

h1 {
  font-size: clamp(40px, 4.5vw, 62px);
  letter-spacing: -2.5px;
  font-weight: 800;
  color: var(--ink);
}

h1 > span {
  color: var(--accent);
}

.hero-intro {
  padding-bottom: 6px;
}

.edition {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  margin-bottom: 18px;
}

.hero-intro p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--muted);
}

.actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: #fff;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 14px 24px;
  min-height: 48px;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.btn:hover {
  background: #1e293b;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.18);
}

.btn-accent {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.25);
}

.btn-accent:hover {
  background: #0369a1;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-light);
  border-bottom: 1px solid #cbd5e1;
  transition: all 0.2s;
}

.text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Photo-Journal Visual Layout (mbs-alfurqon style) */
.photo-journal {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.8fr;
  gap: 20px;
  align-items: stretch;
}

.photo-journal figure {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-journal figure:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.photo-journal img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  cursor: pointer;
}

.photo-journal figcaption {
  padding: 16px 20px;
}

.photo-journal figcaption span {
  display: block;
  font-size: 10px;
  letter-spacing: 1.4px;
  font-weight: 700;
  color: var(--accent);
}

.photo-journal figcaption strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 4px;
  line-height: 1.4;
}

.journal-note {
  background: #f1f5f9;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.journal-note .small-label {
  color: var(--muted);
}

.journal-note p {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.6;
  margin-top: 24px;
}

.journal-note a {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid #cbd5e1;
  background: var(--white);
  border-radius: 50%;
  margin-top: auto;
  font-weight: 700;
  color: var(--ink);
  transition: all 0.2s ease;
}

.journal-note a:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: translateY(2px);
}

/* Facts Bar */
.facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 40px 0;
  margin-top: 44px;
  border-top: 1px solid var(--line);
  gap: 24px;
}

.facts > div {
  border-right: 1px solid var(--line);
  padding-right: 20px;
}

.facts > div:last-child {
  border: 0;
  padding-right: 0;
}

.facts strong {
  font-size: 22px;
  font-weight: 800;
  display: block;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.facts span {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  display: block;
}

/* Common Section Header */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 48px;
}

h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  letter-spacing: -1.5px;
  font-weight: 800;
  color: var(--ink);
}

.section-head > p {
  max-width: 420px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* Feature Dark Section (mbs-alfurqon style) */
.dark-section {
  background: var(--navy);
  color: #fff;
  margin-top: 40px;
}

.dark-section h2 {
  color: #ffffff;
}

.dark-section .eyebrow {
  color: var(--accent-light);
}

.dark-section .eyebrow > span {
  background: var(--accent-light);
}

.dark-section .section-head > p {
  color: #94a3b8;
}

/* Feature Interactive Explorer */
.program-explorer {
  position: relative;
  min-height: 580px;
}

.program-item {
  width: 36%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.program-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 14px;
  min-height: 84px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.4;
  color: #cbd5e1;
  transition: all 0.2s ease;
}

.program-item summary::-webkit-details-marker {
  display: none;
}

.program-index {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent-light);
}

.plus {
  margin-left: auto;
  color: var(--accent-light);
  font-size: 18px;
  transition: transform 0.25s ease;
}

.program-item[open] summary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.program-item[open] .plus {
  transform: rotate(45deg);
}

.program-panel {
  position: absolute;
  left: 42%;
  right: 0;
  top: 0;
  animation: appear 0.35s ease;
}

.program-panel figure {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.program-panel img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  cursor: pointer;
}

.program-panel figcaption {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 10px;
}

.program-description {
  padding-top: 24px;
}

.program-description h3 {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.program-description p,
.program-description dd {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.8;
}

.program-description dl {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 12px 24px;
  margin-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.program-description dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--accent-light);
  text-transform: uppercase;
}

/* Story Grid Section (Architecture / LAN Security) */
.story-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 65px;
  align-items: center;
}

.story-photo figure {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.story-photo img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  cursor: pointer;
}

.story-photo figcaption {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  padding: 14px 20px;
  border-top: 1px solid var(--line);
}

.story-list article {
  display: flex;
  gap: 25px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.story-list article:first-child {
  padding-top: 0;
}

.story-list article > span {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
}

.story-list h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.story-list p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* Photo Strip Showcase */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.photo-open {
  padding: 0;
  border: 0;
  position: relative;
  width: 100%;
  background: #e2e8f0;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.photo-open img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.photo-open:hover img {
  transform: scale(1.04);
}

.photo-open span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  border-radius: 50%;
  background: #ffffff;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.photo-strip figcaption {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-light);
  margin-top: 10px;
}

/* Dual-Market Use Cases Section */
.market-section {
  background: #f1f5f9;
}

.market-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
}

.market-heading > p:not(.eyebrow) {
  color: var(--muted);
  margin-top: 20px;
  font-size: 16px;
}

.market-heading .btn {
  margin-top: 28px;
}

.market-heading figure {
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.market-heading img {
  width: 100%;
  max-height: 290px;
  object-fit: cover;
}

.market-heading figcaption {
  font-size: 12px;
  color: var(--muted);
  padding: 12px 18px;
  border-top: 1px solid var(--line);
}

.market-topics article {
  padding: 30px 0;
  border-bottom: 1px solid #cbd5e1;
}

.market-topics article:first-child {
  padding-top: 0;
}

.market-topics article > span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent);
}

.market-topics h3 {
  font-size: 22px;
  margin: 10px 0;
  font-weight: 700;
  color: var(--ink);
}

.market-topics p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
}

.market-topics a {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  min-height: 40px;
  margin-top: 8px;
}

.market-topics a:hover {
  text-decoration: underline;
}

/* Pricing Fee-Grid */
.fee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.fee-card {
  border: 1px solid var(--line);
  padding: 36px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.fee-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.fee-card.featured {
  border: 2px solid var(--accent);
}

.fee-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.fee-top h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
}

.fee-top > span {
  font-size: 11px;
  font-weight: 700;
  background: #e0f2fe;
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.fee-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--muted);
  margin-top: 28px;
  text-transform: uppercase;
}

.price {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--ink);
  margin: 6px 0 24px;
}

.price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

.fee-lines > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid var(--line);
  padding-block: 14px;
  font-size: 14px;
}

.fee-lines dt {
  color: var(--muted);
}

.fee-lines dd {
  font-weight: 600;
  color: var(--ink);
}

.fee-note {
  font-size: 13px;
  color: var(--muted);
  margin: 20px 0 28px;
  line-height: 1.6;
}

.fee-card .btn {
  width: 100%;
}

.cost-note {
  font-size: 13px;
  color: var(--muted);
  max-width: 850px;
  margin-top: 24px;
  line-height: 1.7;
}

/* Download Section Cards */
.download-section {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.download-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px;
  background: var(--paper);
  display: flex;
  flex-direction: column;
}

.download-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.download-badge.server {
  background: #dbeafe;
  color: #1e40af;
}

.download-badge.client {
  background: #dcfce7;
  color: #166534;
}

.download-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.download-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.download-meta {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
}

.download-card .btn {
  width: 100%;
}

.smartscreen-box {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 24px;
  margin-top: 36px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.smartscreen-box .icon {
  font-size: 28px;
  line-height: 1;
}

.smartscreen-box h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 6px;
}

.smartscreen-box p {
  font-size: 13px;
  color: #1e40af;
  line-height: 1.6;
}

/* FAQ Layout */
.faq-layout {
  padding-top: 0;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}

.faq-layout > div > p:not(.eyebrow) {
  color: var(--muted);
  margin: 24px 0;
  line-height: 1.8;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.faq-list details:first-child {
  padding-top: 0;
}

.faq-list summary {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  padding: 6px 0;
}

.faq-list p {
  font-size: 15px;
  color: var(--muted);
  margin-top: 14px;
  line-height: 1.8;
}

.faq-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-top: 8px;
}

/* Closing Banner */
.closing {
  background: var(--navy-deep);
  color: #fff;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.closing .eyebrow {
  color: var(--accent-light);
}

.closing p:not(.eyebrow) {
  color: #94a3b8;
  margin-top: 24px;
  font-size: 16px;
  line-height: 1.8;
}

.btn-cyan {
  background: var(--accent);
  color: #fff;
}

.btn-cyan:hover {
  background: #0284c7;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #ffffff;
}

.closing .actions {
  gap: 16px;
}

/* Footer */
footer {
  padding-block: 48px;
  display: flex;
  justify-content: space-between;
  gap: 35px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.footer-brand img {
  border-radius: 8px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.6;
}

footer strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
}

footer > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  text-align: right;
}

footer small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  margin-top: 8px;
}

footer a:hover {
  color: var(--accent);
}

/* Mobile Fixed Action Bar */
.mobile-actions {
  display: none;
}

/* Skip link */
.skip {
  position: fixed;
  top: -100px;
  z-index: 100;
  background: #ffffff;
  padding: 12px;
  font-weight: 700;
  color: var(--ink);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.skip:focus {
  top: 10px;
  left: 10px;
}

/* Lightbox Dialog */
dialog {
  padding: 16px;
  border: 0;
  border-radius: 12px;
  max-width: min(1050px, 94vw);
  max-height: 92dvh;
  background: var(--paper);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

dialog::backdrop {
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(8px);
}

dialog img {
  max-height: 75dvh;
  object-fit: contain;
  margin: auto;
  border-radius: 6px;
}

dialog p {
  text-align: center;
  padding: 16px 40px 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.dialog-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  font-size: 22px;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Animation & Transitions */
@keyframes appear {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.reveal {
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-pending {
  opacity: 0;
  transform: translateY(20px);
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .hero-top {
    gap: 40px;
  }
  nav {
    gap: 20px;
  }
  .photo-journal {
    grid-template-columns: 1.2fr 1fr;
  }
  .journal-note {
    display: none;
  }
  .market-layout {
    gap: 50px;
  }
  .program-explorer {
    min-height: 650px;
  }
  .program-description dl {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .program-description dd {
    margin-bottom: 8px;
  }
}

/* ============================================================
   Registration & Instant Trial Onboarding Section
============================================================ */
.register-section {
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
}

.register-container {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.register-info-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px;
}

.register-info-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.register-perks {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.register-perks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.6;
}

.register-perks li .check-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: rgba(5, 150, 105, 0.12);
  color: var(--teal);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
  margin-top: 2px;
}

.register-form-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-group label span.required {
  color: var(--danger);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-help {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.4;
}

.trial-result-card {
  display: none;
  background: linear-gradient(135deg, #090d16 0%, #0f172a 100%);
  color: #ffffff;
  border-radius: 12px;
  padding: 32px;
  margin-top: 20px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.trial-result-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.trial-license-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px dashed var(--accent-light);
  border-radius: 8px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 16px 0;
  gap: 12px;
}

.trial-license-key {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--accent-light);
}

.btn-copy {
  background: rgba(56, 189, 248, 0.15);
  border: 1px solid var(--accent-light);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-copy:hover {
  background: var(--accent);
}

@media (max-width: 900px) {
  .header-inner {
    height: 76px;
  }
  .menu-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: transparent;
    font-size: 20px;
  }
  nav {
    display: none;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 20px 24px;
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
    max-height: calc(100dvh - 80px);
    overflow: auto;
    border-bottom: 1px solid var(--line);
  }
  nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding: 10px 14px;
  }
  .login-nav {
    margin-left: 0;
    margin-top: 10px;
    text-align: center;
    justify-content: center;
  }
  .hero-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .edition {
    display: none;
  }
  .program-explorer {
    min-height: 0;
  }
  .program-item {
    width: 100%;
  }
  .program-panel {
    position: static;
    padding: 20px 10px 30px;
  }
  .program-panel img {
    height: auto;
    max-height: 320px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .section-head > p {
    max-width: 600px;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .story-photo img {
    height: 340px;
  }
  .market-layout {
    grid-template-columns: 1fr;
  }
  .market-heading figure {
    display: none;
  }
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .photo-strip {
    grid-template-columns: 1fr;
  }
  .fee-grid, .download-grid, .register-container, .form-grid-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  html {
    scroll-padding-top: 86px;
  }
  body {
    padding-bottom: 78px;
  }
  .wrap {
    width: calc(100% - 32px);
  }
  .notice {
    font-size: 11px;
    gap: 10px;
    padding: 8px 14px;
  }
  .brand {
    font-size: 14px;
  }
  .brand img {
    width: 36px;
    height: 36px;
  }
  .hero {
    padding-top: 36px;
  }
  h1 {
    font-size: clamp(34px, 9vw, 44px);
    letter-spacing: -1.5px;
  }
  h2 {
    font-size: 28px;
    letter-spacing: -1px;
  }
  .hero-top {
    gap: 24px;
    margin-bottom: 30px;
  }
  .photo-journal {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .photo-journal img {
    height: 220px;
  }
  .facts {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 28px;
    padding: 24px 0;
  }
  .facts > div:nth-child(2) {
    border: 0;
  }
  .facts strong {
    font-size: 18px;
  }
  .section {
    padding-block: 54px;
  }
  .fee-card {
    padding: 24px;
  }
  .price {
    font-size: 30px;
  }
  footer {
    flex-direction: column;
    padding-block: 36px;
    text-align: left;
  }
  footer > div:last-child {
    text-align: left;
  }
  .mobile-actions {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 40;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    gap: 10px;
    background: rgba(248, 250, 252, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
  }
  .mobile-actions a {
    display: grid;
    place-items: center;
    min-height: 44px;
    flex: 1;
    font-size: 13px;
    font-weight: 700;
    border: 1px solid var(--line);
    border-radius: 6px;
  }
  .mobile-actions a:last-child {
    background: var(--ink);
    color: #ffffff;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *:before, *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal.is-pending {
    opacity: 1;
    transform: none;
  }
}
