:root {
  color-scheme: dark;
  --bg: #07080d;
  --bg-soft: #0b0d15;
  --panel: #11141e;
  --text: #f5f5f1;
  --muted: #9699a4;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.2);
  --mint: #b8f4ef;
  --violet: #9b8cff;
  --coral: #ff9e7d;
  --lime: #c9f18b;
  --gold: #ffd58c;
  --max: 1280px;
  --gutter: clamp(20px, 4.5vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

body.dialog-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 2px;
}

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.62'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 60;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--mint), var(--gold));
  box-shadow: 0 0 12px rgba(184, 244, 239, 0.48);
  transform: scaleX(0);
  transform-origin: left;
}

.section-shell {
  width: min(100%, calc(var(--max) + var(--gutter) * 2));
  margin: 0 auto;
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 0 max(var(--gutter), calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid transparent;
  transition: min-height 220ms ease, background 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  border-color: var(--line);
  background: rgba(7, 8, 13, 0.82);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  font-size: 14px;
  font-weight: 600;
}

.brand-name small {
  margin-left: 5px;
  color: #747781;
  font-family: "DM Mono", monospace;
  font-size: 7px;
  font-weight: 400;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  transform: rotate(-27deg);
}

.brand-mark::before {
  position: absolute;
  top: 12px;
  left: -4px;
  width: 33px;
  height: 1px;
  background: currentColor;
  content: "";
}

.brand-mark i {
  position: absolute;
  top: 3px;
  right: 1px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
}

.desktop-nav {
  display: flex;
  gap: 34px;
  color: #babcc4;
  font-size: 12px;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
}

.desktop-nav a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--mint);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav a.is-active {
  color: var(--text);
}

.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  gap: 13px;
  padding: 0 7px 0 17px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 11px;
  transition: border-color 180ms ease, background 180ms ease;
}

.nav-cta span {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--mint);
}

.nav-cta:hover {
  border-color: rgba(184, 244, 239, 0.48);
  background: rgba(184, 244, 239, 0.07);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: max(760px, 100svh);
  padding: 120px max(var(--gutter), calc((100vw - var(--max)) / 2)) 78px;
  overflow: hidden;
  background: #050712;
}

.hero::before {
  position: absolute;
  top: -12%;
  left: -8%;
  width: 55%;
  height: 55%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 210, 145, 0.07), transparent 67%);
  content: "";
}

.hero-visual,
.hero-object-shade {
  position: absolute;
  inset: 0;
}

.hero-visual {
  z-index: 1;
  inset: 0 max(var(--gutter), calc((100vw - var(--max)) / 2)) 0 50%;
  overflow: hidden;
  perspective: 1200px;
  pointer-events: auto;
}

.hero-visual > img,
.orbit-showcase > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual > img {
  object-position: 72% center;
  filter: contrast(1.07) saturate(0.92);
  transform: scale(1.015);
}

.hero-object-shade {
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 7, 18, 0.96) 0%, rgba(5, 7, 18, 0.82) 24%, rgba(5, 7, 18, 0.25) 72%, rgba(5, 7, 18, 0.68) 100%),
    linear-gradient(0deg, rgba(5, 7, 18, 0.7), transparent 45%);
}

.visual-caption {
  position: absolute;
  right: 22px;
  bottom: 42px;
  color: rgba(190, 198, 214, 0.42);
  font-family: "DM Mono", monospace;
  font-size: 7px;
  letter-spacing: 0.06em;
}

.hero-copy,
.hero-quote {
  position: relative;
  z-index: 2;
}

.hero-copy {
  width: min(780px, 61%);
}

.eyebrow,
.product-index {
  margin: 0;
  color: #858893;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 25px 0 0;
  font-size: clamp(54px, 5.35vw, 78px);
  font-weight: 600;
  line-height: 0.99;
  letter-spacing: 0;
}

.hero h1 span,
.contact h2 span,
.approach-heading h2 span {
  background: linear-gradient(90deg, #f6f5f1 0%, #a897ff 45%, #ffb387 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-description {
  max-width: 580px;
  margin: 30px 0 0;
  color: #9da0aa;
  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.glow-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  gap: 15px;
  padding: 6px 24px 6px 6px;
  overflow: hidden;
  border: 1px solid rgba(154, 137, 255, 0.36);
  border-radius: 999px;
  background: rgba(111, 92, 208, 0.13);
  box-shadow: inset 0 0 24px rgba(124, 103, 255, 0.08), 0 0 34px rgba(103, 86, 215, 0.1);
  font-size: 12px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.glow-button::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.12) 50%, transparent 82%);
  content: "";
  transform: translateX(-120%);
  transition: transform 500ms ease;
}

.glow-button:hover {
  border-color: rgba(184, 244, 239, 0.65);
  box-shadow: inset 0 0 24px rgba(124, 103, 255, 0.15), 0 0 42px rgba(103, 86, 215, 0.18);
  transform: translateY(-2px);
}

.glow-button:hover::after {
  transform: translateX(120%);
}

.button-icon {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: radial-gradient(circle at 32% 27%, #eefcff, #847ce3 42%, #292846 70%);
  box-shadow: 0 0 22px rgba(145, 130, 255, 0.43);
}

.glow-button strong {
  font-weight: 500;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #b6b8c0;
  font-size: 12px;
}

.inline-link span {
  color: var(--mint);
  transition: transform 180ms ease;
}

.inline-link:hover span {
  transform: translateX(4px);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 55px;
  color: #747781;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.hero-meta i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 7px var(--mint);
}

.hero-quote {
  position: absolute;
  right: 25%;
  bottom: 12%;
  max-width: 280px;
  text-align: center;
}

.hero-quote p {
  margin: 0;
  color: #aaa0ec;
  font-size: 11px;
  line-height: 1.55;
}

.hero-quote span {
  display: block;
  margin-top: 8px;
  color: #717582;
  font-family: "DM Mono", monospace;
  font-size: 6px;
  text-transform: uppercase;
}

.proof-strip {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #090b11;
}

.proof-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.proof-track span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 34px;
  color: #8f929c;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  text-transform: uppercase;
}

.proof-track i {
  align-self: center;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 9px var(--violet);
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.products {
  padding-top: clamp(100px, 12vw, 170px);
  padding-bottom: clamp(100px, 12vw, 170px);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 70px;
  align-items: end;
}

.section-heading h2,
.approach-heading h2,
.company h2,
.contact h2 {
  margin: 20px 0 0;
  font-size: clamp(43px, 5.8vw, 78px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-heading > p {
  max-width: 470px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 76px;
}

.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #0b0d14;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
  transform-style: preserve-3d;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.product-card:hover {
  border-color: color-mix(in srgb, var(--card-accent) 46%, transparent);
  box-shadow: 0 30px 85px rgba(0, 0, 0, 0.28), 0 0 35px color-mix(in srgb, var(--card-accent) 8%, transparent);
}

.product-card-language {
  --card-accent: var(--mint);
}

.product-card-room {
  --card-accent: var(--coral);
}

.product-card-travel {
  --card-accent: var(--lime);
}

.product-card-muse {
  --card-accent: var(--gold);
}

.product-visual {
  position: relative;
  height: 460px;
  padding: 34px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    #0c0f18;
  background-size: 42px 42px;
}

.product-visual::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 4px;
  content: "";
  pointer-events: none;
}

.product-visual::after {
  position: absolute;
  right: 34px;
  bottom: 24px;
  left: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--card-accent) 64%, white), transparent);
  content: "";
  opacity: 0.65;
  animation: scan-track 3.8s ease-in-out infinite;
}

@keyframes scan-track {
  50% { opacity: 1; transform: scaleX(0.72); }
}

.visual-glow {
  position: absolute;
  top: 44%;
  left: 50%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--card-accent) 18%, transparent), transparent 65%);
  transform: translate(-50%, -50%);
  animation: product-aura 5s ease-in-out infinite;
}

@keyframes product-aura {
  50% { opacity: 0.58; transform: translate(-50%, -50%) scale(1.12); }
}

.language-window,
.room-window,
.travel-window,
.muse-window {
  position: relative;
  z-index: 1;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  background: rgba(14, 17, 25, 0.86);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.32), inset 0 1px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(16px);
}

.language-window::before,
.room-window::before,
.travel-window::before,
.muse-window::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--card-accent) 78%, white), transparent);
  content: "";
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  color: #d1d3d9;
  font-size: 10px;
}

.window-bar::before {
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--card-accent), transparent);
  box-shadow: 0 0 12px var(--card-accent);
  content: "";
}

.window-bar > span {
  margin-right: auto;
  margin-left: 10px;
}

.window-bar small {
  color: var(--card-accent);
  font-family: "DM Mono", monospace;
  font-size: 7px;
  text-transform: uppercase;
}

.window-bar small i {
  display: inline-block;
  width: 4px;
  height: 4px;
  margin-right: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.language-content,
.room-content,
.travel-content,
.muse-content {
  height: calc(100% - 52px);
  padding: 27px;
}

.scene-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.scene-label > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--card-accent) 42%, transparent);
  border-radius: 50%;
  color: var(--card-accent);
  font-family: "DM Mono", monospace;
  font-size: 8px;
  box-shadow: 0 0 20px color-mix(in srgb, var(--card-accent) 22%, transparent);
}

.scene-label p {
  margin: 0;
  color: #777b86;
  font-family: "DM Mono", monospace;
  font-size: 7px;
  line-height: 1.65;
  text-transform: uppercase;
}

.scene-label strong {
  color: #d1d3d8;
  font-weight: 400;
}

.chat {
  max-width: 82%;
  margin-top: 25px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #cfd1d7;
  font-size: 11px;
  line-height: 1.45;
}

.chat-user {
  margin-top: 10px;
  margin-left: auto;
  border-color: color-mix(in srgb, var(--card-accent) 38%, transparent);
  background: color-mix(in srgb, var(--card-accent) 7%, transparent);
}

.waveform {
  display: flex;
  align-items: center;
  height: 35px;
  gap: 4px;
  margin-top: 25px;
}

.waveform i {
  width: 3px;
  height: 8px;
  border-radius: 99px;
  background: var(--card-accent);
  opacity: 0.65;
}

.waveform i:nth-child(2n) {
  height: 19px;
}

.waveform i:nth-child(3n) {
  height: 29px;
}

.language-window.is-listening .waveform i {
  animation: wave 650ms ease-in-out infinite alternate;
}

.language-window.is-listening .waveform i:nth-child(2n) {
  animation-delay: -250ms;
}

@keyframes wave {
  to {
    height: 32px;
    opacity: 1;
  }
}

.demo-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  gap: 9px;
  margin-top: 13px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 42%, transparent);
  border-radius: 4px;
  background: color-mix(in srgb, var(--card-accent) 4%, transparent);
  cursor: pointer;
}

.demo-button > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--card-accent);
  box-shadow: 0 0 10px var(--card-accent);
}

.demo-button strong {
  font-size: 9px;
  font-weight: 500;
}

.room-content {
  display: flex;
  flex-direction: column;
}

.room-scene {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #0b0e19;
  cursor: ew-resize;
}

.room-render {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #202e45 0 60%, #152033 60% 100%);
}

.room-render-after {
  background: linear-gradient(180deg, #ccd7d3 0 60%, #a47b58 60% 100%);
}

.room-render::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 60%;
  background:
    linear-gradient(124deg, transparent 0 45%, rgba(255, 255, 255, 0.06) 45% 54%, transparent 54%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  content: "";
}

.room-render-before::before {
  background:
    linear-gradient(124deg, transparent 0 45%, rgba(0, 0, 0, 0.18) 45% 54%, transparent 54%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
}

.room-window-shape {
  position: absolute;
  top: 12%;
  left: 9%;
  width: 27%;
  height: 34%;
  border: 3px solid rgba(234, 245, 250, 0.75);
  background: linear-gradient(135deg, rgba(153, 218, 241, 0.6), rgba(38, 67, 105, 0.68));
  box-shadow: inset 0 0 0 6px rgba(14, 23, 35, 0.5), 0 0 28px rgba(115, 218, 255, 0.18);
}

.room-render-before .room-window-shape {
  border-color: rgba(157, 168, 184, 0.42);
  background: linear-gradient(135deg, #62708b, #313c54);
  box-shadow: inset 0 0 0 6px rgba(13, 19, 29, 0.78);
}

.room-floor {
  position: absolute;
  right: -8%;
  bottom: 0;
  left: -8%;
  height: 40%;
  background: repeating-linear-gradient(90deg, rgba(88, 50, 28, 0.14) 0 2px, transparent 2px 44px), linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.12));
  transform: perspective(400px) rotateX(58deg) translateY(24%);
  transform-origin: bottom;
}

.room-render-before .room-floor {
  background: repeating-linear-gradient(90deg, rgba(9, 12, 18, 0.26) 0 3px, transparent 3px 35px), linear-gradient(180deg, #3d4148, #252830);
}

.room-sofa {
  position: absolute;
  bottom: 22%;
  left: 24%;
  width: 49%;
  height: 20%;
  border-radius: 10px 10px 4px 4px;
  background: #ded7cb;
  box-shadow: inset 0 10px rgba(255, 255, 255, 0.16), 0 18px 22px rgba(12, 18, 25, 0.26);
}

.room-sofa::before,
.room-sofa::after {
  position: absolute;
  bottom: -13%;
  width: 5%;
  height: 16%;
  background: #3a2b25;
  content: "";
}

.room-sofa::before { left: 9%; }
.room-sofa::after { right: 9%; }

.room-render-before .room-sofa {
  background: #51545a;
  box-shadow: inset 0 10px rgba(255, 255, 255, 0.05), 0 18px 22px rgba(0, 0, 0, 0.38);
}

.room-render-before .room-sofa::before,
.room-render-before .room-sofa::after { background: #181b24; }

.room-cushion {
  position: absolute;
  bottom: 32%;
  left: 34%;
  width: 12%;
  height: 9%;
  border-radius: 3px;
  background: #9cb5a2;
  transform: rotate(-5deg);
}

.room-render-before .room-cushion {
  left: 52%;
  background: #7c6d61;
  transform: rotate(6deg);
}

.room-table {
  position: absolute;
  bottom: 11%;
  left: 35%;
  width: 25%;
  height: 8%;
  border-radius: 50%;
  background: #885f3e;
  box-shadow: 0 14px 0 -3px #39291f;
}

.room-render-before .room-table {
  background: #25262a;
  box-shadow: 0 14px 0 -3px #15161a;
}

.room-lamp {
  position: absolute;
  top: 9%;
  right: 23%;
  width: 3px;
  height: 29%;
  background: rgba(37, 42, 51, 0.8);
}

.room-lamp::after {
  position: absolute;
  top: 0;
  left: 50%;
  width: 22px;
  height: 16px;
  border-radius: 50%;
  background: #fff4c9;
  box-shadow: 0 0 28px 12px rgba(255, 219, 125, 0.25);
  content: "";
  transform: translateX(-50%);
}

.room-render-before .room-lamp::after {
  background: #6e7684;
  box-shadow: 0 0 16px rgba(134, 160, 192, 0.1);
}

.room-plant {
  position: absolute;
  right: 9%;
  bottom: 21%;
  width: 14%;
  height: 25%;
  border-bottom: 11px solid #7f5a39;
  border-radius: 0 0 10px 10px;
}

.room-plant i {
  position: absolute;
  bottom: 26%;
  left: 50%;
  width: 20%;
  height: 60%;
  border-radius: 100% 0 100% 0;
  background: #71be9e;
  transform: rotate(-30deg);
  transform-origin: bottom;
}

.room-plant i:nth-child(2) { transform: translateX(-50%) rotate(4deg); }
.room-plant i:nth-child(3) { transform: translateX(38%) rotate(34deg); }

.room-render-before .room-plant {
  right: 8%;
  border-bottom-color: #4b3f38;
}

.room-render-before .room-plant i { background: #4e605d; }

.room-art {
  position: absolute;
  top: 16%;
  right: 42%;
  width: 12%;
  height: 15%;
  border: 5px solid #a27c53;
  background: linear-gradient(145deg, #f3d39c, #7b64bd 50%, #29334a);
  box-shadow: 0 0 18px rgba(198, 157, 255, 0.18);
}

.room-render-before .room-art {
  border-color: #5a514e;
  background: linear-gradient(145deg, #565a61, #30343c);
  box-shadow: none;
}

.room-state-badge {
  position: absolute;
  top: 12px;
  right: 14px;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  background: rgba(8, 11, 18, 0.38);
  color: rgba(255, 255, 255, 0.72);
  font-family: "DM Mono", monospace;
  font-size: 6px;
  letter-spacing: 0.06em;
}

.room-render-before .room-state-badge {
  color: rgba(220, 226, 235, 0.54);
}

.room-before-clip {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}

.room-before-clip .room-render-before {
  inset: 0;
  width: 100%;
  height: 100%;
}

.room-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 3;
  width: 2px;
  background: white;
  transform: translateX(-1px);
}

.room-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: #101116;
  font-size: 11px;
  transform: translate(-50%, -50%);
}

.compare-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 13px;
  color: #767a85;
  font-family: "DM Mono", monospace;
  font-size: 6px;
  text-transform: uppercase;
}

.travel-content {
  display: flex;
  flex-direction: column;
}

.travel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.travel-heading small,
.travel-heading strong {
  display: block;
}

.travel-heading small {
  color: #737783;
  font-family: "DM Mono", monospace;
  font-size: 7px;
  text-transform: uppercase;
}

.travel-heading strong {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
}

.travel-heading button,
.muse-side button {
  padding: 7px 10px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.035);
  color: #a9acb5;
  font-size: 8px;
  cursor: pointer;
}

.route-map {
  position: relative;
  flex: 1;
  min-height: 0;
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 4px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 30px 30px;
}

.route-map.is-replanning {
  animation: route-replan 600ms ease;
}

@keyframes route-replan {
  50% {
    opacity: 0.35;
    transform: scale(0.98);
  }
}

.route-line {
  position: absolute;
  top: 56%;
  left: 11%;
  width: 76%;
  border-top: 1px dashed var(--card-accent);
  transform: rotate(-13deg);
}

.route-dot {
  position: absolute;
  z-index: 1;
  width: 9px;
  height: 9px;
  border: 2px solid #12151d;
  border-radius: 50%;
  background: var(--card-accent);
  box-shadow: 0 0 12px var(--card-accent);
  animation: route-ping 1.8s ease-in-out infinite;
}

.route-dot:nth-of-type(2) { animation-delay: -0.6s; }
.route-dot:nth-of-type(3) { animation-delay: -1.2s; }

@keyframes route-ping {
  50% { box-shadow: 0 0 24px var(--card-accent), 0 0 0 7px color-mix(in srgb, var(--card-accent) 9%, transparent); }
}

.dot-one {
  top: 63%;
  left: 12%;
}

.dot-two {
  top: 46%;
  left: 50%;
}

.dot-three {
  top: 29%;
  left: 86%;
}

.route-place {
  position: absolute;
  z-index: 2;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(12, 15, 22, 0.84);
  backdrop-filter: blur(10px);
}

.route-place strong,
.route-place small {
  display: block;
}

.route-place strong {
  font-size: 9px;
  font-weight: 500;
}

.route-place small {
  margin-top: 3px;
  color: #767a84;
  font-size: 6px;
}

.place-one {
  bottom: 7%;
  left: 7%;
}

.place-two {
  top: 8%;
  right: 5%;
}

.route-stats {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.route-stats span,
.route-stats strong {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: #7d818c;
  font-family: "DM Mono", monospace;
  font-size: 6px;
  font-weight: 400;
  text-transform: uppercase;
}

.route-stats strong {
  margin-left: auto;
  border-color: color-mix(in srgb, var(--card-accent) 38%, transparent);
  color: var(--card-accent);
}

.muse-content {
  display: grid;
  grid-template-columns: 1.16fr 0.84fr;
  gap: 10px;
}

.muse-primary,
.muse-side {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.025);
}

.muse-primary {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  background: linear-gradient(145deg, color-mix(in srgb, var(--card-accent) 13%, #11131b), #10121a 72%);
}

.muse-primary small,
.muse-side small {
  color: #767a84;
  font-family: "DM Mono", monospace;
  font-size: 7px;
  text-transform: uppercase;
}

.muse-primary strong {
  max-width: 250px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
}

.idea-orb {
  width: 70px;
  height: 70px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 45%, transparent);
  border-radius: 50%;
  background: radial-gradient(circle at 36% 32%, #fff8e8, var(--card-accent) 21%, #70572b 52%, #17141b 72%);
  box-shadow: 0 0 40px color-mix(in srgb, var(--card-accent) 24%, transparent);
  animation: idea-pulse 2.8s ease-in-out infinite;
}

@keyframes idea-pulse {
  50% {
    box-shadow: 0 0 64px color-mix(in srgb, var(--card-accent) 36%, transparent);
    transform: scale(1.05);
  }
}

.muse-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 17px;
}

.muse-side strong {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.product-card-copy {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  min-height: 180px;
  gap: 25px;
  padding: 30px 32px 32px;
  border-top: 1px solid var(--line);
}

.product-card-copy h3 {
  margin: 16px 0 10px;
  font-size: 27px;
  font-weight: 500;
}

.product-card-copy p:last-child {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.product-card-action {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  color: var(--card-accent);
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.product-card-action:hover {
  background: color-mix(in srgb, var(--card-accent) 10%, transparent);
  transform: translate(3px, -3px);
}

.approach {
  padding-bottom: clamp(100px, 12vw, 170px);
}

.approach-heading {
  padding-top: clamp(100px, 12vw, 160px);
  border-top: 1px solid var(--line);
}

.approach-list {
  margin-top: 75px;
  border-top: 1px solid var(--line);
}

.approach-item {
  border-bottom: 1px solid var(--line);
}

.approach-item > button {
  display: grid;
  grid-template-columns: 70px 1fr 36px;
  align-items: center;
  width: 100%;
  min-height: 108px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.approach-item > button > span {
  color: var(--mint);
  font-family: "DM Mono", monospace;
  font-size: 8px;
}

.approach-item > button strong {
  font-size: clamp(20px, 2.6vw, 35px);
  font-weight: 500;
}

.approach-item > button i {
  justify-self: end;
  color: #888b94;
  font-style: normal;
  font-size: 24px;
  transition: transform 220ms ease, color 220ms ease;
}

.approach-item.is-open > button i {
  color: var(--mint);
  transform: rotate(45deg);
}

.approach-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 280ms ease;
}

.approach-answer > p {
  max-width: 680px;
  margin: 0 0 0 70px;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.approach-item.is-open .approach-answer {
  grid-template-rows: 1fr;
}

.approach-item.is-open .approach-answer > p {
  margin-bottom: 36px;
}

.company {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(50px, 8vw, 120px);
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(100px, 12vw, 170px) var(--gutter);
  border-top: 1px solid var(--line);
}

.company-copy {
  align-self: center;
}

.company-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.company-copy dl {
  margin: 55px 0 0;
}

.company-copy dl div {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.company-copy dt,
.company-copy dd {
  margin: 0;
  font-size: 10px;
}

.company-copy dt {
  color: #777a84;
  font-family: "DM Mono", monospace;
  text-transform: uppercase;
}

.company-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background:
    radial-gradient(circle at 50% 44%, rgba(119, 113, 255, 0.12), transparent 30%),
    linear-gradient(135deg, #101322, #070910 70%);
}

.company-visual::before {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 5px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
}

.orbit-showcase {
  position: absolute;
  inset: 0;
  overflow: hidden;
  perspective: 1200px;
}

.orbit-showcase > img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.06) saturate(0.7);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.3, 1);
}

.company-visual:hover .orbit-showcase > img {
  transform: scale(1.025);
}

.orbit-readout {
  position: absolute;
  right: 48px;
  bottom: 154px;
  left: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 18px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(10, 12, 21, 0.72);
  backdrop-filter: blur(16px);
}

.orbit-readout span {
  color: #7c8191;
  font-family: "DM Mono", monospace;
  font-size: 7px;
}

.orbit-readout strong {
  grid-column: 1;
  font-size: 13px;
  font-weight: 500;
}

.orbit-readout i {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8fffe8;
  box-shadow: 0 0 17px #8fffe8;
}

.company-visual-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 7, 11, 0.88), transparent 55%);
}

.company-visual-label {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  background: rgba(11, 13, 20, 0.68);
  backdrop-filter: blur(15px);
}

.company-visual-label small,
.company-visual-label strong {
  display: block;
}

.signal {
  padding-top: clamp(105px, 12vw, 170px);
  padding-bottom: clamp(105px, 12vw, 170px);
  border-top: 1px solid var(--line);
}

.signal-heading {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 60px;
  align-items: start;
}

.signal-heading h2,
.faq-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5.4vw, 72px);
  font-weight: 500;
  line-height: 1.04;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-item {
  min-width: 0;
  min-height: 300px;
  padding: 28px 24px 34px;
  border-right: 1px solid var(--line);
}

.signal-item:last-child {
  border-right: 0;
}

.signal-item span {
  color: var(--mint);
  font-family: "DM Mono", monospace;
  font-size: 8px;
}

.signal-item strong {
  display: block;
  margin-top: 100px;
  font-size: 21px;
  font-weight: 500;
}

.signal-item p {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.faq {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  gap: 60px;
  padding-top: clamp(105px, 12vw, 170px);
  padding-bottom: clamp(105px, 12vw, 170px);
  border-top: 1px solid var(--line);
}

.faq-heading h2 {
  margin-top: 20px;
}

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

.faq-list .approach-item > button {
  grid-template-columns: 50px 1fr 30px;
  min-height: 92px;
}

.faq-list .approach-item > button strong {
  font-size: clamp(18px, 2vw, 25px);
}

.faq-list .approach-answer > p {
  margin-left: 50px;
}

.company-visual-label small {
  color: #7b7e88;
  font-family: "DM Mono", monospace;
  font-size: 7px;
  text-transform: uppercase;
}

.company-visual-label strong {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 500;
}

.contact {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(60px, 8vw, 120px);
  padding-top: clamp(110px, 13vw, 190px);
  padding-bottom: clamp(110px, 13vw, 190px);
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.contact-aura {
  position: absolute;
  top: 50%;
  right: -10%;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(126, 107, 255, 0.14), transparent 67%);
  transform: translateY(-50%);
}

.contact h2 {
  position: relative;
  max-width: 980px;
}

.contact-intro,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-intro > p:not(.eyebrow) {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.travel-heading button,
.muse-side button {
  min-height: 32px;
}

.contact-form {
  align-self: start;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(11, 13, 20, 0.78);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

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

.contact-form label {
  display: block;
  margin-bottom: 20px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 9px;
  color: #888b95;
  font-family: "DM Mono", monospace;
  font-size: 7px;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 49px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  outline: 0;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  font: inherit;
  font-size: 12px;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form textarea {
  min-height: 125px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #666a75;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(184, 244, 239, 0.48);
  background: rgba(184, 244, 239, 0.035);
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(184, 244, 239, 0.38);
  border-radius: 4px;
  background: rgba(184, 244, 239, 0.08);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.form-submit:hover {
  border-color: var(--mint);
  background: rgba(184, 244, 239, 0.13);
}

.form-submit span {
  font-size: 11px;
  font-weight: 600;
}

.form-submit i {
  color: var(--mint);
  font-style: normal;
}

.form-note {
  margin: 13px 0 0;
  color: #696d77;
  font-size: 8px;
  line-height: 1.6;
}

.form-note.is-success {
  color: var(--mint);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 104px;
  padding: 0 var(--gutter);
  border-top: 1px solid var(--line);
  color: #777a84;
  font-size: 9px;
}

.site-footer p {
  margin: 0;
}

.site-footer > div {
  display: flex;
  justify-self: end;
  gap: 24px;
}

.site-footer button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.site-footer a:hover,
.site-footer button:hover {
  color: var(--mint);
}

.product-dialog,
.legal-dialog {
  width: min(680px, calc(100vw - 40px));
  max-height: calc(100svh - 40px);
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: #0b0d14;
  color: var(--text);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.62);
}

.product-dialog[open],
.legal-dialog[open] {
  animation: dialog-in 220ms ease both;
}

@keyframes dialog-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.product-dialog::backdrop,
.legal-dialog::backdrop {
  background: rgba(4, 5, 8, 0.82);
  backdrop-filter: blur(10px);
}

.dialog-topline {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 13, 20, 0.92);
  color: #858893;
  font-family: "DM Mono", monospace;
  font-size: 8px;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.dialog-topline button {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
  cursor: pointer;
}

.dialog-body {
  padding: clamp(30px, 6vw, 60px);
}

.dialog-body h2 {
  margin: 18px 0 0;
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 500;
  line-height: 1;
}

.dialog-lead {
  margin: 25px 0 0;
  color: #a2a5ae;
  font-size: 14px;
  line-height: 1.75;
}

.dialog-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dialog-features div {
  min-height: 150px;
  padding: 20px 15px;
  border-right: 1px solid var(--line);
}

.dialog-features div:last-child {
  border-right: 0;
}

.dialog-features span {
  color: var(--mint);
  font-family: "DM Mono", monospace;
  font-size: 7px;
}

.dialog-features strong {
  display: block;
  margin-top: 55px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.dialog-body > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  margin-top: 32px;
  padding: 0 18px;
  border: 1px solid rgba(184, 244, 239, 0.38);
  border-radius: 4px;
  background: rgba(184, 244, 239, 0.07);
  font-size: 11px;
}

.dialog-body > a span {
  color: var(--mint);
}

.legal-copy {
  margin-top: 32px;
  color: #a2a5ae;
  font-size: 13px;
  line-height: 1.8;
}

.legal-copy h3 {
  margin: 30px 0 7px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}

.legal-copy p {
  margin: 0 0 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(0.2, 0.75, 0.3, 1);
}

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

@media (max-width: 1050px) {
  .hero {
    min-height: auto;
    padding-top: 150px;
    padding-bottom: 100px;
  }

  .hero-copy {
    max-width: 850px;
  }

  .hero-copy {
    width: min(720px, 72%);
  }

  .hero-visual {
    inset: 0 var(--gutter) 0 42%;
  }

  .company {
    grid-template-columns: 1fr;
  }

  .company-copy {
    max-width: 760px;
  }
}

@media (max-width: 800px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 66px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border: 0;
    background: transparent;
  }

  .menu-button span {
    position: absolute;
    width: 20px;
    height: 1px;
    background: var(--text);
    transition: top 180ms ease, transform 180ms ease;
  }

  .menu-button span:first-child {
    top: 17px;
  }

  .menu-button span:last-child {
    top: 24px;
  }

  .menu-button.is-active span:first-child {
    top: 21px;
    transform: rotate(45deg);
  }

  .menu-button.is-active span:last-child {
    top: 21px;
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 100px var(--gutter) 45px;
    background: rgba(7, 8, 13, 0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-menu nav {
    display: flex;
    width: 100%;
    flex-direction: column;
  }

  .mobile-menu a {
    display: flex;
    align-items: baseline;
    gap: 17px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: 27px;
  }

  .mobile-menu a span {
    color: var(--mint);
    font-family: "DM Mono", monospace;
    font-size: 8px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .signal-heading,
  .faq,
  .contact {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .signal-item:nth-child(2) {
    border-right: 0;
  }

  .signal-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .faq-heading h2 {
    margin-top: 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    max-width: 720px;
    margin-right: auto;
    margin-left: auto;
  }

  .approach-item > button {
    grid-template-columns: 48px 1fr 30px;
  }

  .approach-answer > p {
    margin-left: 48px;
  }

  .company-visual {
    min-height: 560px;
  }

  .hero-visual {
    inset: 0 0 0 24%;
    opacity: 0.7;
  }

}

@media (max-width: 560px) {
  .hero {
    min-height: 800px;
    align-items: flex-end;
    padding-top: 125px;
    padding-bottom: 70px;
  }

  .hero h1 {
    font-size: clamp(48px, 13.8vw, 66px);
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .glow-button {
    width: 100%;
  }

  .hero-meta {
    margin-top: 40px;
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .hero-object-shade {
    background: linear-gradient(0deg, rgba(5, 7, 18, 0.98) 0%, rgba(5, 7, 18, 0.72) 58%, rgba(5, 7, 18, 0.36) 100%);
  }

  .hero-visual {
    inset: 0 -10% 0 16%;
    opacity: 0.55;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-quote {
    display: none;
  }

  .product-visual {
    height: 420px;
    padding: 18px;
  }

  .language-content,
  .room-content,
  .travel-content,
  .muse-content {
    padding: 20px;
  }

  .product-card-copy {
    min-height: 170px;
    padding: 25px 22px 27px;
  }

  .muse-content {
    grid-template-columns: 1fr;
  }

  .muse-side {
    flex-direction: row;
    align-items: flex-end;
  }

  .muse-primary strong {
    font-size: 15px;
  }

  .section-heading h2,
  .approach-heading h2,
  .company h2,
  .contact h2 {
    font-size: clamp(39px, 11.5vw, 54px);
  }

  .approach-item > button {
    min-height: 94px;
  }

  .approach-item > button strong {
    font-size: 20px;
  }

  .company-visual {
    min-height: 440px;
  }

  .orbit-readout {
    right: 18px;
    bottom: 82px;
    left: 18px;
  }

  .signal-heading h2,
  .faq-heading h2 {
    font-size: clamp(39px, 11.5vw, 54px);
  }

  .signal-grid {
    grid-template-columns: 1fr;
  }

  .signal-item,
  .signal-item:nth-child(2) {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .signal-item:last-child {
    border-bottom: 0;
  }

  .signal-item strong {
    margin-top: 70px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 22px;
  }

  .dialog-features {
    grid-template-columns: 1fr;
  }

  .dialog-features div,
  .dialog-features div:last-child {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .dialog-features div:last-child {
    border-bottom: 0;
  }

  .dialog-features strong {
    margin-top: 18px;
  }

  .company-visual-label {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .site-footer p {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
