* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --ink: #f4f6fb;
  --accent: #ffbf1f;
  --accent-strong: #ffab00;
  --line: rgba(255, 255, 255, 0.18);
  --header-height: 112px;
  --panel-shadow: 0 22px 56px rgba(0, 0, 0, 0.5);
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #05070b;
  overflow-x: hidden;
  caret-color: transparent;
}

body.modal-open {
  overflow: hidden;
}

input,
textarea,
select,
[contenteditable="true"] {
  caret-color: auto;
}

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

.page {
  position: relative;
  min-height: 100svh;
  isolation: isolate;
  transition: filter 0.25s ease;
}

.page.is-blurred {
  filter: blur(5px);
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background: url("../images/bgforcommercial.png") center / cover no-repeat;
  transform: scale(1.08);
  filter: blur(8px) saturate(0.95) brightness(0.58);
}

.page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(740px 460px at 22% 26%, rgba(18, 26, 44, 0.7), transparent 72%),
    radial-gradient(560px 360px at 86% 74%, rgba(255, 191, 31, 0.13), transparent 72%),
    linear-gradient(111deg, rgba(3, 7, 14, 0.92) 0%, rgba(3, 7, 14, 0.78) 37%, rgba(3, 7, 14, 0.36) 60%, rgba(3, 7, 14, 0.78) 100%);
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-height);
  padding: 0 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(0, 0, 0, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(2px);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-toggle:focus-visible {
  outline: 2px solid rgba(255, 191, 31, 0.7);
  outline-offset: 4px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--text);
}

.logo img {
  height: clamp(120px, 10.2vh, 300px);
  width: auto;
}

.pagetitle {
  font-family: Poppins;
  font-size: clamp(1.7rem, 2.9vw, 4rem);
  letter-spacing: 0.6px;
  font-weight: 700;
}

.nav {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.75vw, 34px);
  white-space: nowrap;
  padding: 14px clamp(14px, 1.5vw, 24px) 14px clamp(34px, 2.8vw, 54px);
}

.nav::before {
  content: "";
  position: absolute;
  inset: -14px -18px -14px -72px;
  z-index: 0;
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
  background: linear-gradient(
    103deg,
    rgba(255, 255, 255, 0.07) 0%,
    rgba(0, 0, 0, 0.62) 18%,
    rgba(0, 0, 0, 0.88) 48%,
    rgba(0, 0, 0, 0.96) 100%
  );
}

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

.dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav > a,
.nav .dropdown > a {
  color: var(--ink);
  text-decoration: none;
  font-size: clamp(0.95rem, 1.05vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.22px;
  position: relative;
}

.nav > a::after,
.nav .dropdown > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav > a:hover::after,
.nav .dropdown > a:hover::after,
.nav > a:focus-visible::after,
.nav .dropdown > a:focus-visible::after {
  transform: scaleX(1);
}

.nav > a:focus-visible,
.nav .dropdown > a:focus-visible {
  outline: 2px solid rgba(255, 191, 31, 0.7);
  outline-offset: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  padding: 10px;
  display: grid;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.92);
  box-shadow: var(--panel-shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.is-open .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-menu a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.84rem;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(255, 191, 31, 0.2);
  transform: translateX(2px);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  padding: clamp(26px, 4.2vh, 50px) 4% clamp(28px, 4vh, 44px);
  display: grid;
  grid-template-columns: minmax(430px, 1.05fr) minmax(310px, 0.8fr);
  gap: clamp(28px, 4.4vw, 58px);
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    106deg,
    rgba(6, 12, 22, 0.88) 0%,
    rgba(6, 12, 22, 0.72) 34%,
    rgba(6, 12, 22, 0.2) 55%,
    rgba(6, 12, 22, 0.52) 78%,
    rgba(6, 12, 22, 0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
}

.feature-list {
  list-style: none;
  display: grid;
  gap: clamp(8px, 1.3vh, 12px);
}

.feature-card {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: clamp(11px, 1.5vh, 16px) clamp(12px, 1.1vw, 17px);
  border-radius: 18px;
  color: #FFF;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.54rem;
  color: var(--accent-strong);
  background: linear-gradient(152deg, rgba(255, 245, 214, 0.95), rgba(255, 238, 186, 0.76));
}

.feature-card h2 {
  font-family: "Outfit", "Sora", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.68rem);
  line-height: 1.15;
  letter-spacing: 0.2px;
}

.feature-card p {
  margin-top: 4px;
  color: #FFA508;
  font-size: clamp(0.68rem, 0.78vw, 0.82rem);
}

.hero-cta {
  margin-top: clamp(16px, 2.5vh, 26px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 28px;
  border-radius: 999px;
  color: #111;
  text-decoration: none;
  font-size: clamp(0.92rem, 1.2vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.2px;
  background: linear-gradient(130deg, #ffd13f, #ffba0f);
  box-shadow: 0 14px 28px rgba(255, 191, 31, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255, 191, 31, 0.44);
}

.hero-foot {
  margin-top: clamp(13px, 2.2vh, 20px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.foot-chip {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(5, 8, 15, 0.55);
  backdrop-filter: blur(2px);
}

.foot-chip h3 {
  font-family: "Outfit", "Sora", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffd780;
}

.foot-chip p {
  margin-top: 2px;
  font-size: 0.74rem;
  color: rgba(244, 246, 251, 0.82);
}

.hero-visual {
  position: relative;
  min-height: clamp(500px, 72vh, 620px);
  width: min(420px, 100%);
  margin-inline: auto;
}

.hero-visual::before {
  content: "";
  position: absolute;
  top: 7%;
  bottom: 10%;
  left: 50%;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 191, 31, 0.85), rgba(255, 191, 31, 0.15));
  box-shadow: 0 0 24px rgba(255, 191, 31, 0.46);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 9% 8% 8% 6%;
  z-index: -1;
  border-radius: 32px;
  background: radial-gradient(65% 60% at 66% 44%, rgba(255, 191, 31, 0.18), transparent 78%);
}

.visual-node {
  position: absolute;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  color: inherit;
  width: clamp(120px, 10.4vw, 160px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 4px solid var(--accent);
  text-decoration: none;
  display: grid;
  place-items: center;
  overflow: visible;
  background: radial-gradient(circle at 40% 24%, rgba(255, 191, 31, 0.14), rgba(0, 0, 0, 0.78) 72%);
  box-shadow:
    0 0 0 3px rgba(255, 191, 31, 0.15),
    0 0 34px rgba(255, 191, 31, 0.55),
    0 12px 24px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: floaty 5.6s ease-in-out infinite;
}

.visual-node img {
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  border-radius: 50%;
  object-fit: fill;
  background: #111;
}

.visual-node span {
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  color: rgba(255, 241, 199, 0.95);
  background: rgba(0, 0, 0, 0.64);
  border: 1px solid rgba(255, 191, 31, 0.44);
  white-space: nowrap;
}

.visual-node:hover {
  transform: scale(1.03);
  box-shadow:
    0 0 0 3px rgba(255, 191, 31, 0.24),
    0 0 42px rgba(255, 191, 31, 0.7),
    0 16px 28px rgba(0, 0, 0, 0.52);
}

.visual-node:focus-visible {
  outline: 2px solid rgba(255, 191, 31, 0.9);
  outline-offset: 4px;
}

.visual-node.is-active {
  box-shadow:
    0 0 0 4px rgba(255, 191, 31, 0.34),
    0 0 48px rgba(255, 191, 31, 0.78),
    0 18px 32px rgba(0, 0, 0, 0.56);
}

.node-1 {
  top: 2%;
  left: 55%;
  animation-delay: -0.3s;
}

.node-2 {
  top: 22%;
  left: 10%;
  animation-delay: -1.3s;
}

.node-3 {
  top: 42%;
  left: 55%;
  animation-delay: -2.2s;
}

.node-4 {
  top: 61%;
  left: 10%;
  animation-delay: -3.1s;
}

.scale-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.56);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.scale-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.scale-modal {
  width: min(1160px, 96vw);
  max-height: min(88vh, 780px);
  overflow: auto;
  background: rgba(8, 8, 8, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.6);
  padding: 20px 22px 16px;
}

.scale-modal-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.scale-expand-title {
  font-size: 1.1rem;
  color: #ffd17a;
  font-weight: 700;
}

.scale-modal-close {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(255, 173, 18, 0.95);
  color: #111;
  padding: 6px 14px;
  font-weight: 700;
  cursor: pointer;
}

.scale-expand {
  margin-top: 14px;
  width: 100%;
  padding-top: 6px;
}

.scale-expand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.scale-expand-grid[data-layout="gallery"] {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.scale-expand-grid[data-layout="feature-pair"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.scale-expand-grid[data-layout="feature-single"] {
  grid-template-columns: minmax(0, min(440px, 100%));
  justify-content: center;
}

.scale-expand-item {
  position: relative;
  min-width: 0;
  display: block;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: none;
  border-radius: 18px;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(255, 191, 31, 0.08), rgba(5, 7, 11, 0.94));
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.scale-expand-grid[data-layout="feature-pair"] .scale-expand-item,
.scale-expand-grid[data-layout="feature-single"] .scale-expand-item {
  aspect-ratio: 1 / 1.06;
  border-radius: 22px;
}

.scale-expand-item[hidden] {
  display: none !important;
}

.scale-expand-item:hover,
.scale-expand-item:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 20px 34px rgba(0, 0, 0, 0.42);
}

.scale-expand-item:focus-visible {
  outline: 2px solid rgba(255, 191, 31, 0.72);
  outline-offset: 3px;
}

.scale-expand-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  background: transparent;
}

.scale-expand-grid[data-layout="feature-pair"] .scale-expand-item img,
.scale-expand-grid[data-layout="feature-single"] .scale-expand-item img {
  object-fit: contain;
}

.scale-expand-copy {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 42%;
  padding: 42px 14px 16px;
  text-align: center;
  background: linear-gradient(180deg, rgba(5, 7, 11, 0) 0%, rgba(5, 7, 11, 0.88) 72%, rgba(5, 7, 11, 0.98) 100%);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}

.scale-expand-item:hover .scale-expand-copy,
.scale-expand-item:focus-visible .scale-expand-copy,
.scale-expand-item:focus-within .scale-expand-copy {
  opacity: 1;
  transform: translateY(0);
}

.scale-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #fff4cf;
  letter-spacing: 0.3px;
}

@media (hover: none) {
  .scale-expand-copy {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@media (max-width: 1200px) {
  .feature-card h2 {
    font-size: clamp(0.96rem, 1.55vw, 1.42rem);
  }
}

@media (max-width: 980px) {
  .header {
    min-height: 96px;
    padding: 0 4%;
  }

  .logo img {
    height: clamp(74px, 9.2vh, 100px);
  }

  .pagetitle {
    font-size: clamp(1.25rem, 3.8vw, 2.2rem);
  }

  .nav {
    gap: 16px;
    padding: 10px 10px 10px 18px;
  }

  .nav::before {
    inset: -10px -8px -10px -40px;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
    padding-top: 24px;
    padding-bottom: 34px;
  }

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

  .hero-content {
    width: min(100%, 780px);
    margin-inline: auto;
  }

  .hero-foot {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-visual {
    width: min(640px, 100%);
    min-height: 470px;
    padding-bottom: 20px;
  }

  .hero-visual::before {
    left: 50%;
    top: 8%;
    bottom: 9%;
  }

  .node-1 {
    top: 2%;
    left: 58%;
  }

  .node-2 {
    top: 23%;
    left: 16%;
  }

  .node-3 {
    top: 44%;
    left: 58%;
  }

  .node-4 {
    top: 64%;
    left: 16%;
  }

  .scale-expand-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  }

  .scale-expand-grid[data-layout="feature-pair"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: auto;
  }

  .page {
    min-height: auto;
    padding-bottom: calc(36px + env(safe-area-inset-bottom, 0px));
  }

  body.nav-open {
    overflow: hidden;
  }

  .header {
    position: sticky;
    align-items: center;
    gap: 12px;
    padding: 10px 5% 14px;
    overflow: visible;
  }

  .logo {
    margin-right: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 5%;
    right: 5%;
    width: auto;
    display: grid;
    gap: 8px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: var(--panel-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav::before {
    display: none;
  }

  .nav > a,
  .nav .dropdown > a {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
  }

  .nav > a::after,
  .nav .dropdown > a::after {
    display: none;
  }

  .dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: none;
  }

  .dropdown {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .dropdown.is-open .dropdown-menu {
    max-height: 320px;
    opacity: 1;
    pointer-events: auto;
  }

  .dropdown-menu a {
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
  }

  .dropdown-menu a:hover {
    transform: none;
  }

  .hero {
    min-height: auto;
    align-items: start;
    align-content: start;
    padding: 16px 5% calc(54px + env(safe-area-inset-bottom, 0px));
  }

  .feature-card {
    grid-template-columns: 52px minmax(0, 1fr);
    border-radius: 20px;
    gap: 11px;
  }

  .feature-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.72rem;
  }

  .feature-card h2 {
    font-size: clamp(1.18rem, 6vw, 1.72rem);
  }

  .feature-card p {
    margin-top: 4px;
    font-size: 0.77rem;
  }

  .hero-cta {
    width: 100%;
    text-align: center;
    min-height: 54px;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(130px, 1fr));
    gap: 26px 16px;
    width: min(500px, 100%);
    margin-inline: auto;
    justify-items: center;
    align-content: start;
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }

  .hero-visual::before,
  .hero-visual::after {
    display: none;
  }

  .visual-node {
    position: relative;
    top: auto;
    left: auto;
    width: min(43vw, 170px);
    animation: none;
  }

  .visual-node span {
    bottom: -24px;
    font-size: 0.65rem;
  }

  .scale-overlay {
    padding: 12px;
  }

  .scale-modal {
    max-height: 92vh;
    padding: 14px 12px 12px;
  }

  .scale-modal-head {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .scale-expand-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .scale-expand-grid[data-layout="feature-pair"],
  .scale-expand-grid[data-layout="feature-single"] {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .feature-list {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    grid-template-columns: 1fr;
    width: min(260px, 100%);
  }

  .visual-node {
    width: min(62vw, 210px);
  }
}

/* Desktop-style mobile layout */
@media (max-width: 760px) {
  body.nav-open {
    overflow-y: auto;
  }

  .header {
    min-height: clamp(74px, 14vw, 96px);
    padding: 0 clamp(12px, 4vw, 26px);
    flex-wrap: nowrap;
    overflow: visible;
  }

  .logo img {
    height: clamp(58px, 11vw, 86px);
  }

  .pagetitle {
    font-size: clamp(1rem, 3vw, 1.9rem);
  }

  .nav-toggle {
    display: none !important;
  }

  .nav {
    position: static;
    display: flex;
    align-items: center;
    gap: clamp(10px, 2.4vw, 22px);
    width: auto;
    max-height: none;
    padding: 10px 10px 10px 18px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    overflow: visible;
    white-space: nowrap;
  }

  .nav::before {
    display: block;
  }

  .nav > a,
  .nav .dropdown > a {
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    font-size: clamp(0.72rem, 1.8vw, 0.9rem);
  }

  .nav > a::after,
  .nav .dropdown > a::after {
    display: block;
  }

  .dropdown {
    width: auto;
    flex-direction: row;
    align-items: center;
  }

  .dropdown-menu {
    position: absolute;
    min-width: 210px;
    margin-top: 0;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: rgba(0, 0, 0, 0.94);
    box-shadow: var(--panel-shadow);
    max-height: none;
    overflow: visible;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
  }

  .dropdown.is-open .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.82fr);
    align-items: center;
    gap: clamp(16px, 3vw, 28px);
  }

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

  .hero-foot {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-visual {
    display: block;
    min-height: clamp(390px, 58vh, 620px);
    width: min(500px, 42vw);
    padding-bottom: 0;
  }

  .hero-visual::before,
  .hero-visual::after {
    display: block;
  }

  .visual-node {
    position: absolute;
    width: clamp(104px, 11vw, 154px);
  }

  .node-1 {
    top: 10%;
    left: 58%;
  }

  .node-2 {
    top: 28%;
    left: 5%;
  }

  .node-3 {
    top: 50%;
    left: 62%;
  }

  .node-4 {
    top: 70%;
    left: 13%;
  }
}
