.control-list p {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin: 0.8rem 0;
  color: var(--paper-soft);
  font-size: 0.74rem;
}

.control-list i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 8px rgba(76, 201, 255, 0.5);
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0;
  margin: 1.15rem 0 0;
  list-style: none;
}

.feature-tags li {
  padding: 0.38rem 0.62rem;
  border: 1px solid rgba(76, 201, 255, 0.2);
  color: var(--paper-soft);
  background: rgba(76, 201, 255, 0.045);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
}

.products {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(76, 201, 255, 0.025) 1px, transparent 1px) 0 0 / 9.09% 100%,
    radial-gradient(circle at 84% 16%, rgba(22, 140, 255, 0.12), transparent 28%),
    #071329;
}

.products::before {
  position: absolute;
  top: 0;
  right: 7%;
  width: 1px;
  height: 100px;
  content: "";
  background: var(--signal);
  box-shadow: 0 0 22px rgba(76, 201, 255, 0.35);
}

.products .shell {
  position: relative;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  position: relative;
  min-height: 390px;
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(4, 11, 24, 0.62);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.product-card::after {
  position: absolute;
  right: -28%;
  bottom: -46%;
  width: 72%;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(76, 201, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(76, 201, 255, 0.018), 0 0 0 48px rgba(76, 201, 255, 0.012);
}

.product-card:hover {
  z-index: 2;
  border-color: rgba(76, 201, 255, 0.42);
  background: rgba(10, 33, 65, 0.88);
  transform: translateY(-6px);
}

.product-card-featured {
  background: linear-gradient(145deg, rgba(22, 140, 255, 0.22), rgba(4, 11, 24, 0.66));
}

.product-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
  color: var(--signal);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
}

.product-top i {
  color: var(--muted);
  font-style: normal;
}

.product-card h3 {
  position: relative;
  z-index: 1;
  margin: 3.4rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.1vw, 2.2rem);
  font-weight: 620;
  letter-spacing: -0.035em;
}

.product-card > p {
  position: relative;
  z-index: 1;
  margin: 0.9rem 0 0;
  color: var(--paper-soft);
  font-size: 0.84rem;
  line-height: 1.85;
}

.product-card ul {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.48rem;
  padding: 0;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  list-style: none;
}

.product-card li::before {
  margin-right: 0.55rem;
  color: var(--signal);
  content: "＋";
}

.product-note {
  margin: 1.4rem 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  text-align: right;
}

.advantages {
  color: var(--ink);
  background: linear-gradient(135deg, #cfe8fa 0%, #eaf6ff 52%, #d7ecfb 100%);
}

.advantages .section-index {
  color: #2d6d98;
}

.advantages-heading {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
  margin-bottom: clamp(3.2rem, 6vw, 5.5rem);
}

.advantages-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 5vw, 5.5rem);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.advantages-heading h2 span {
  color: #256a98;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(4, 11, 24, 0.22);
  border-bottom: 1px solid rgba(4, 11, 24, 0.22);
}

.advantage-card {
  min-height: 300px;
  padding: 1.8rem clamp(1.1rem, 2.2vw, 2rem);
  border-right: 1px solid rgba(4, 11, 24, 0.18);
}

.advantage-card:last-child {
  border-right: 0;
}

.advantage-card > span {
  color: #397ca8;
  font-family: var(--mono);
  font-size: 0.64rem;
}

.advantage-card h3 {
  margin: 5rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.3vw, 2.25rem);
  font-weight: 620;
  letter-spacing: -0.035em;
}

.advantage-card p {
  margin: 0.85rem 0 0;
  color: #435d73;
  font-size: 0.82rem;
  line-height: 1.85;
}
.customization {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 50%, rgba(124, 140, 255, 0.09), transparent 25%),
    linear-gradient(150deg, #040b18, #07172f 68%, #092044);
}

.custom-orbit {
  position: absolute;
  top: 50%;
  left: -10vw;
  width: 40vw;
  min-width: 460px;
  aspect-ratio: 1;
  border: 1px solid rgba(76, 201, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(76, 201, 255, 0.018), 0 0 0 140px rgba(76, 201, 255, 0.01);
  transform: translateY(-50%);
}

.custom-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.custom-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 4.7vw, 5rem);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1.1;
}

.custom-intro h2 span {
  color: var(--signal);
}

.custom-intro > p:not(.section-index) {
  margin: 1.8rem 0 0;
  color: var(--paper-soft);
  font-size: 0.9rem;
  line-height: 1.95;
}

.custom-intro .button {
  margin-top: 2rem;
}

.custom-stack {
  border-top: 1px solid var(--line-strong);
}

.custom-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1.2rem;
  min-height: 164px;
  padding: 1.65rem 0;
  border-bottom: 1px solid var(--line);
}

.custom-card > span {
  color: var(--signal);
  font-family: var(--mono);
  font-size: 0.62rem;
}

.custom-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  font-weight: 620;
  letter-spacing: -0.025em;
}

.custom-card p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.85;
}

.faq {
  background:
    linear-gradient(rgba(76, 201, 255, 0.028) 1px, transparent 1px) 0 0 / 100% 42px,
    #061126;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(440px, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.faq-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.3vw, 4.6rem);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

.faq-intro h2 span {
  color: var(--signal);
}

.faq-intro > p:not(.section-index) {
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.9;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  padding: 1.2rem 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 600;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  color: var(--signal);
  font-family: var(--mono);
  font-size: 1.25rem;
  transition: transform 180ms ease;
}

.faq-item[open] summary span {
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 720px;
  padding: 0 3.2rem 1.7rem 0;
  margin: -0.35rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.9;
}
.scenes {
  color: var(--ink);
  background: #dfeaf5;
}

.scenes .section-index {
  color: #397ca8;
}

.scenes-intro {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.7fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.scenes-intro .section-index {
  align-self: start;
}

.scenes-intro h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4.8vw, 5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.12;
}

.scenes-intro h2 span {
  color: #2d6d98;
}

.scenes-intro > p:last-child {
  margin: 0;
  color: #526b82;
  font-size: 0.88rem;
  line-height: 1.9;
}

.scene-list {
  border-top: 1px solid rgba(4, 11, 24, 0.22);
}

.scene-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.18fr 1fr auto;
  gap: 2rem;
  align-items: center;
  min-height: 176px;
  padding: 2rem 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(4, 11, 24, 0.22);
  transition: padding 240ms ease, color 240ms ease;
}

.scene-card::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: var(--ink);
  transform: translateX(-102%);
  transition: transform 340ms cubic-bezier(0.7, 0, 0.2, 1);
}

.scene-card:hover {
  color: var(--paper);
  padding-inline: 1.4rem;
}

.scene-card:hover::before {
  transform: translateX(0);
}

.scene-card > * {
  position: relative;
  z-index: 1;
}

.scene-id {
  color: #547896;
  font-family: var(--mono);
  font-size: 0.68rem;
}

.scene-label {
  margin: 0 0 0.45rem;
  color: #547896;
  font-family: var(--mono);
  font-size: 0.54rem;
  letter-spacing: 0.18em;
}

.scene-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.5vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.scene-card div > p:last-child {
  max-width: 620px;
  margin: 0.55rem 0 0;
  color: #526b82;
  font-size: 0.83rem;
}

.scene-card:hover div > p:last-child {
  color: var(--muted);
}

.scene-arrow {
  display: grid;
  width: 44px;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(4, 11, 24, 0.25);
  border-radius: 50%;
  color: #416b8d;
  transition: color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.scene-card:hover .scene-arrow {
  color: var(--signal);
  border-color: rgba(76, 201, 255, 0.35);
  transform: rotate(45deg);
}

.workflow {
  position: relative;
  background: #050d1e;
}

.workflow::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: 0.32;
  background-image: linear-gradient(rgba(76, 201, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(76, 201, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
}

.workflow .shell {
  position: relative;
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  counter-reset: none;
  list-style: none;
}

.workflow-list li {
  position: relative;
  min-height: 320px;
  padding: 1.8rem clamp(1rem, 2vw, 1.8rem);
  border-top: 1px solid var(--line-strong);
  border-right: 1px solid var(--line);
}

.workflow-list li:last-child {
  border-right: 0;
}

.workflow-list li::before {
  position: absolute;
  top: -4px;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 12px rgba(76, 201, 255, 0.7);
}

.workflow-list > li > span {
  color: var(--flare);
  font-family: var(--mono);
  font-size: 0.66rem;
}

.workflow-list div {
  margin-top: 5.5rem;
}

.workflow-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 500;
}

.workflow-list p {
  margin: 0.8rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.85;
}

.finale {
  position: relative;
  display: grid;
  min-height: 86svh;
  place-items: center;
  overflow: hidden;
  color: var(--ink);
  background: var(--signal);
}

.finale::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(84vw, 1050px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(4, 11, 24, 0.15);
  border-radius: 50%;
  box-shadow: 0 0 0 90px rgba(4, 11, 24, 0.025), 0 0 0 180px rgba(4, 11, 24, 0.018);
  transform: translate(-50%, -50%);
}

.finale-lines {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background: repeating-linear-gradient(90deg, transparent 0 10%, rgba(4, 11, 24, 0.09) 10% calc(10% + 1px));
}

.finale-inner {
  position: relative;
  z-index: 2;
  padding-block: 7rem;
  text-align: center;
}

.finale .eyebrow {
  justify-content: center;
  color: #274f70;
}

.finale h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 7vw, 7.6rem);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 1.02;
}

.finale h2 em {
  color: var(--ink);
}

.finale-inner > p:not(.eyebrow) {
  margin: 2rem auto 0;
  color: #355e7b;
  font-size: 0.95rem;
}

.button-light {
  margin-top: 2rem;
  color: var(--paper);
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(4, 11, 24, 0.15);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--signal);
  background: #081a33;
  box-shadow: 0 18px 38px rgba(4, 11, 24, 0.22);
}

.site-footer {
  padding: 3.4rem 0;
  background: #020711;
  border-top: 1px solid var(--line);
}

.error-page {
  display: grid;
  min-height: 100svh;
  padding: 24px;
  place-items: center;
  background:
    linear-gradient(rgba(76, 201, 255, 0.035) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(90deg, rgba(76, 201, 255, 0.035) 1px, transparent 1px) 0 0 / 52px 52px,
    radial-gradient(circle at 50% 50%, rgba(22, 140, 255, 0.12), transparent 34%),
    var(--ink);
}

.error-panel {
  position: relative;
  width: min(660px, 100%);
  padding: clamp(2.2rem, 7vw, 5rem);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: rgba(4, 11, 24, 0.82);
  box-shadow: var(--shadow);
  text-align: center;
}

.error-panel::before,
.error-panel::after {
  position: absolute;
  width: 46px;
  height: 46px;
  content: "";
  border-color: var(--signal);
  border-style: solid;
}

.error-panel::before {
  top: 10px;
  left: 10px;
  border-width: 1px 0 0 1px;
}

.error-panel::after {
  right: 10px;
  bottom: 10px;
  border-width: 0 1px 1px 0;
}

.error-label {
  margin: 1.4rem 0 0;
  color: var(--signal);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
}

.error-code {
  margin: 0.35rem 0 0;
  color: transparent;
  font-family: var(--mono);
  font-size: clamp(5rem, 20vw, 10rem);
  font-weight: 700;
  letter-spacing: -0.1em;
  line-height: 0.95;
  -webkit-text-stroke: 1px rgba(76, 201, 255, 0.5);
}

.error-panel h1 {
  margin: 0.8rem 0 0;
  font-family: var(--display);
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.error-panel > p:not(.error-code, .error-label) {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.error-panel .button {
  margin-top: 1.8rem;
}

.error-wave {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  height: 30px;
}

.error-wave i {
  width: 2px;
  height: 25%;
  background: var(--signal);
  animation: wave 800ms ease-in-out infinite alternate;
}

.error-wave i:nth-child(2),
.error-wave i:nth-child(6) { height: 55%; animation-delay: -120ms; }
.error-wave i:nth-child(3),
.error-wave i:nth-child(5) { height: 82%; animation-delay: -240ms; }
.error-wave i:nth-child(4) { height: 100%; animation-delay: -360ms; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 3rem;
  align-items: end;
}

.footer-grid-compact {
  grid-template-columns: 1fr auto;
}

.footer-brand b {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
}

.footer-brand p,
.footer-legal p {
  margin: 0.45rem 0 0;
  color: var(--muted);
  font-size: 0.68rem;
}

.footer-legal {
  text-align: right;
}

.footer-legal-links {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-legal a {
  display: inline-block;
  margin-top: 0.45rem;
  color: var(--paper-soft);
  font-size: 0.72rem;
  text-decoration-color: rgba(221, 238, 255, 0.3);
  text-underline-offset: 0.28em;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--signal);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 760ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 260ms;
}

@keyframes wave {
  from { transform: scaleY(0.34); opacity: 0.42; }
  to { transform: scaleY(1); opacity: 0.9; }
}

@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(124, 140, 255, 0.08), 0 0 12px rgba(124, 140, 255, 0.8); }
  50% { box-shadow: 0 0 0 8px rgba(124, 140, 255, 0), 0 0 18px rgba(124, 140, 255, 0.9); }
}

@keyframes orbit-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

@keyframes glass-scan {
  0%, 35% { transform: translateX(-80%); }
  70%, 100% { transform: translateX(100%); }
}

@keyframes translate-progress {
  0% { width: 8%; opacity: 0.25; }
  42%, 82% { width: 82%; opacity: 1; }
  100% { width: 96%; opacity: 0; }
}

@keyframes typing-cursor {
  0%, 48% { opacity: 1; }
  49%, 100% { opacity: 0; }
}

@keyframes output-scan {
  from { background-position: 0 -160px; }
  to { background-position: 0 520px; }
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advantage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .advantage-card:nth-child(2n) {
    border-right: 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.94fr) minmax(400px, 0.8fr);
    gap: 3rem;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 5.5vw, 4.8rem);
  }

  .stage-frame {
    min-height: 490px;
  }

  .stage-content {
    min-height: 335px;
  }

  .scenes-intro {
    grid-template-columns: 0.32fr 1fr;
  }

  .scenes-intro > p:last-child {
    grid-column: 2;
  }
}

@media (max-width: 900px) {
  .custom-grid,
  .faq-grid,
  .advantages-heading {
    grid-template-columns: 1fr;
  }

  .custom-grid,
  .faq-grid {
    gap: 3.5rem;
  }

  .custom-intro {
    max-width: 720px;
  }

  .workflow-list li:nth-child(even) {
    border-right: 0;
  }

  .shell {
    width: min(100% - 40px, 760px);
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    padding-top: 130px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .hero-copy {
    max-width: 720px;
    padding-bottom: 1rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 10.5vw, 6.2rem);
  }

  .language-stage {
    width: min(100%, 680px);
    margin: 0 auto;
  }

  .signal-strip {
    margin-top: 4rem;
  }

  .manifesto-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .bento-primary,
  .bento-viewer,
  .bento-language,
  .bento-control {
    grid-column: span 12;
  }

  .bento-card {
    min-height: 450px;
  }

  .bento-primary,
  .bento-viewer {
    min-height: 520px;
  }

  .workflow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .workflow-list li:nth-child(2) {
    border-right: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid-compact {
    grid-template-columns: 1fr auto;
  }

}

@media (max-width: 620px) {
  .product-grid,
  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 350px;
  }

  .product-card h3 {
    margin-top: 2.7rem;
  }

  .product-note {
    text-align: left;
  }

  .advantage-card,
  .advantage-card:nth-child(2n) {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid rgba(4, 11, 24, 0.18);
  }

  .advantage-card:last-child {
    border-bottom: 0;
  }

  .advantage-card h3 {
    margin-top: 2.8rem;
  }

  .custom-grid,
  .faq-grid {
    gap: 2.8rem;
  }

  .custom-card {
    grid-template-columns: 38px 1fr;
  }

  .faq-item summary {
    min-height: 82px;
  }

  .faq-item p {
    padding-right: 0;
  }

  .shell {
    width: calc(100% - 32px);
  }

  .site-header {
    position: absolute;
  }

  .header-inner {
    gap: 0.55rem;
    min-height: 78px;
  }

  .brand-copy b {
    font-size: 0.8rem;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }

  .header-action {
    padding: 0.58rem 0.72rem;
    font-size: 0.68rem;
  }

  .header-tools {
    gap: 0.45rem;
  }

  .language-switcher {
    gap: 0.2rem;
    padding: 0.3rem 0.34rem;
    font-size: 0.58rem;
  }

  .language-switcher a {
    min-width: 1.35rem;
  }

  .hero {
    padding-top: 112px;
  }

  .hero::before {
    top: 78px;
  }

  .hero-copy {
    padding-top: 1.6rem;
  }

  .eyebrow {
    margin-bottom: 1.35rem;
    font-size: 0.56rem;
    letter-spacing: 0.14em;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 10.4vw, 3.3rem);
    line-height: 1.08;
  }

  .hero-intro {
    margin-top: 1.5rem;
    font-size: 0.92rem;
    line-height: 1.8;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    min-height: 48px;
    padding-inline: 0.8rem;
    font-size: 0.76rem;
  }

  .hero-facts {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.55rem;
    margin-top: 1.7rem;
  }

  .language-stage {
    width: calc(100% - 4px);
  }

  .stage-frame {
    min-height: 430px;
  }

  .stage-topbar {
    grid-template-columns: 1fr auto;
    min-height: 56px;
    padding-inline: 0.9rem;
  }

  .stage-route {
    display: none;
  }

  .stage-content {
    min-height: 306px;
    padding: 2rem 1.25rem 1.4rem;
  }

  .caption-source {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .caption-target {
    font-size: 0.86rem;
  }

  .stage-footer {
    grid-template-columns: 1fr;
    min-height: 68px;
    padding-inline: 0.9rem;
  }

  .stage-meta {
    display: none;
  }

  .stage-tag {
    display: none;
  }

  .signal-strip {
    justify-content: flex-start;
    padding-bottom: 0.4rem;
    overflow: hidden;
    white-space: nowrap;
  }

  .signal-strip span:nth-of-type(n + 4),
  .signal-strip i:nth-of-type(n + 4) {
    display: none;
  }

  .section-pad {
    padding: 5.5rem 0;
  }

  .manifesto::before {
    left: 16px;
    height: 46px;
  }

  .section-title,
  .section-heading h2,
  .scenes-intro h2 {
    font-size: clamp(2.3rem, 11vw, 3.4rem);
  }

  .manifesto-copy {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    margin-top: 2.6rem;
  }

  .section-heading {
    margin-bottom: 2.7rem;
  }

  .bento-card,
  .bento-primary,
  .bento-viewer {
    min-height: 430px;
  }

  .caption-console {
    width: 100%;
    margin-top: 2.2rem;
    padding: 1rem;
    transform: rotate(-0.8deg);
  }

  .phone-view {
    width: 220px;
    min-height: 240px;
  }

  .control-visual {
    gap: 1.2rem;
    justify-content: flex-start;
  }

  .control-ring {
    width: 102px;
    flex: 0 0 auto;
  }

  .control-list p {
    font-size: 0.66rem;
  }

  .scenes-intro {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    margin-bottom: 3.5rem;
  }

  .scenes-intro > p:last-child {
    grid-column: auto;
  }

  .scene-card {
    grid-template-columns: auto 1fr;
    gap: 1rem;
    min-height: 160px;
  }

  .scene-arrow {
    display: none;
  }

  .scene-card div > p:last-child {
    font-size: 0.78rem;
  }

  .workflow-list {
    grid-template-columns: 1fr;
  }

  .workflow-list li,
  .workflow-list li:nth-child(2) {
    min-height: 220px;
    border-right: 0;
  }

  .workflow-list div {
    margin-top: 3.2rem;
  }

  .finale {
    min-height: 74svh;
  }

  .finale h2 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }


  .footer-legal {
    text-align: left;
  }
}

@media (max-width: 380px) {
  .brand-copy {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
