:root {
  --font-display: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #0b0b0f;
  --bg-soft: #111116;
  --surface: #191920;
  --surface-strong: #22222b;
  --paper: #f7f2ea;
  --paper-soft: #fffaf1;
  --text: #f7f5ee;
  --text-dark: #121216;
  --muted: #aaa6b8;
  --muted-dark: #62606d;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(18, 18, 22, 0.12);
  --pink: #ff5fa7;
  --violet: #b84cff;
  --teal: #08c7b4;
  --coral: #ff675d;
  --amber: #ffcc58;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  text-rendering: optimizeLegibility;
  background:
    linear-gradient(180deg, rgba(255, 95, 167, 0.14), transparent 420px),
    linear-gradient(135deg, rgba(8, 199, 180, 0.12), transparent 440px),
    var(--bg);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.74), transparent 72%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 10px;
  border: 1px solid var(--line);
  background: rgba(17, 17, 22, 0.78);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

.site-header.is-scrolled {
  background: rgba(11, 11, 15, 0.92);
}

.brand,
.nav-links,
.nav-cta {
  display: inline-flex;
  align-items: center;
}

.brand {
  font-family: var(--font-display);
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  font-family: var(--font-display);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--bg);
  background: linear-gradient(135deg, var(--pink), var(--teal));
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
}

.nav-links {
  font-family: var(--font-display);
  justify-content: center;
  gap: clamp(12px, 2.3vw, 30px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
  border-bottom-color: var(--pink);
}

.nav-cta,
.primary-btn,
.secondary-btn,
.light-btn {
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  overflow-wrap: anywhere;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta {
  max-width: 250px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.primary-btn {
  color: #101014;
  background: linear-gradient(135deg, var(--pink), var(--violet));
  border-color: transparent;
  box-shadow: 0 18px 44px rgba(255, 95, 167, 0.28);
}

.secondary-btn {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.light-btn {
  margin-top: 10px;
  color: #101014;
  background: var(--teal);
  border-color: transparent;
}

.primary-btn:hover,
.secondary-btn:hover,
.light-btn:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.secondary-btn:hover,
.nav-cta:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.inverse {
  color: #101014;
  background: var(--paper-soft);
  border-color: var(--paper-soft);
  box-shadow: none;
}

.secondary-btn.inverse {
  color: var(--paper-soft);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.secondary-btn.inverse:hover {
  color: #101014;
  background: var(--paper-soft);
}

.hero,
.page-hero,
.myxo-hero,
.contact-hero,
.metrics-band,
.section,
.product-section,
.product-showcase,
.investor-section,
.solution-band,
.status-section,
.form-section,
.closing,
.legal-page,
.site-footer {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(36px, 5vw, 82px);
  align-items: center;
  min-height: min(850px, calc(100svh - 84px));
  padding: clamp(68px, 9vw, 124px) 0 54px;
}

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

.eyebrow,
.section-kicker {
  font-family: var(--font-display);
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  text-wrap: balance;
}

h1 {
  max-width: 1040px;
  margin-bottom: 24px;
  font-size: clamp(46px, 7.1vw, 88px);
  line-height: 0.98;
  letter-spacing: 0;
  font-weight: 700;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.05;
  letter-spacing: 0;
  font-weight: 700;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: 0;
  font-weight: 700;
}

p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 500;
  text-wrap: pretty;
}

.hero-text,
.page-hero > p,
.myxo-hero > div > p,
.contact-hero > div > p {
  max-width: 650px;
  color: #cbc7d5;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.phone-stage,
.phone-pair,
.showcase-media,
.device-frame {
  position: relative;
  isolation: isolate;
}

.phone-stage {
  min-height: clamp(560px, 62vw, 760px);
}

.brand-stage {
  position: relative;
  isolation: isolate;
  min-height: clamp(470px, 46vw, 620px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(135deg, rgba(255, 95, 167, 0.2), rgba(8, 199, 180, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(17, 17, 22, 0.74);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.brand-stage::before {
  content: "";
  position: absolute;
  inset: 28px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  border-radius: 8px;
  opacity: 0.72;
}

.brand-stage::after {
  content: "";
  position: absolute;
  inset: auto -12% -18% 28%;
  height: 46%;
  background: linear-gradient(90deg, rgba(255, 95, 167, 0.28), rgba(8, 199, 180, 0.22));
  filter: blur(42px);
  opacity: 0.76;
  transform: rotate(-8deg);
}

.brand-constellation {
  position: absolute;
  inset: 54px;
}

.brand-constellation span {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(255, 255, 255, 0.72);
  background: var(--bg-soft);
  border-radius: 3px;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.04);
  transform: rotate(45deg);
}

.brand-constellation span:nth-child(1) {
  left: 10%;
  top: 18%;
}

.brand-constellation span:nth-child(2) {
  right: 16%;
  top: 12%;
  border-color: rgba(8, 199, 180, 0.86);
}

.brand-constellation span:nth-child(3) {
  left: 21%;
  bottom: 16%;
  border-color: rgba(255, 95, 167, 0.9);
}

.brand-constellation span:nth-child(4) {
  right: 12%;
  bottom: 24%;
}

.brand-card {
  position: absolute;
  z-index: 2;
  padding: 22px;
  color: var(--text);
  background: rgba(11, 11, 15, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.brand-card span,
.brand-card strong {
  display: block;
}

.brand-card span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-card strong {
  font-family: var(--font-display);
  margin-top: 6px;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

.brand-card p {
  max-width: 360px;
  margin: 16px 0 0;
  color: #d7d2df;
  font-size: 16px;
  line-height: 1.6;
}

.main-brand-card {
  left: 8%;
  top: 18%;
  width: min(380px, 52%);
}

.accent-card {
  right: 8%;
  bottom: 18%;
  width: min(310px, 54%);
}

.accent-card span {
  color: var(--teal);
}

.accent-card strong,
.quiet-card strong {
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.12;
}

.quiet-card {
  right: 8%;
  top: 16%;
  width: min(230px, 34%);
  background: rgba(255, 255, 255, 0.08);
}

.quiet-card span {
  color: var(--amber);
}

.phone-stage::before,
.phone-pair::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 12% 2% 8%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(135deg, rgba(255, 95, 167, 0.22), rgba(8, 199, 180, 0.14)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.phone-shell {
  position: absolute;
  width: clamp(218px, 23vw, 332px);
  aspect-ratio: 1320 / 2868;
  padding: 9px;
  border-radius: 38px;
  background: #050507;
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.52),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.phone-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.phone-front {
  left: 5%;
  top: 4%;
  z-index: 3;
  transform: rotate(-5deg);
}

.phone-back {
  right: 5%;
  top: 18%;
  z-index: 2;
  transform: rotate(6deg);
  opacity: 0.92;
}

.solo-stage .phone-front {
  left: 12%;
  top: 2%;
}

.solo-stage .phone-back {
  right: 7%;
  top: 17%;
}

.signal-panel {
  position: absolute;
  right: 3%;
  bottom: 7%;
  z-index: 4;
  width: min(280px, 46%);
  padding: 20px;
  color: var(--text);
  background: rgba(17, 17, 22, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.signal-panel span,
.signal-panel strong,
.signal-panel small {
  display: block;
}

.signal-panel span {
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.signal-panel strong {
  font-family: var(--font-display);
  margin-top: 4px;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1;
  letter-spacing: 0;
}

.signal-panel small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.metrics-band div {
  min-height: 142px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.metrics-band div:last-child {
  border-right: 0;
}

.metrics-band strong {
  display: block;
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1;
}

.metrics-band span {
  color: var(--muted);
  font-weight: 600;
  line-height: 1.45;
}

.section {
  padding: clamp(78px, 10vw, 132px) 0;
}

.intro,
.section:nth-of-type(even) {
  color: var(--text);
}

.flush-top {
  padding-top: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: start;
}

.split p {
  margin-top: 8px;
}

.trust-grid,
.principle-grid,
.roadmap-list,
.private-list,
.feature-grid,
.investor-grid,
.solution-grid {
  display: grid;
  gap: 14px;
}

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

.trust-grid article,
.principle-grid article,
.roadmap-list article,
.private-list article,
.investor-grid article,
.solution-grid article {
  min-height: 210px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.principle-grid {
  grid-template-columns: repeat(5, minmax(160px, 1fr));
}

.principle-grid article span,
.roadmap-list article span {
  display: inline-block;
  margin-bottom: 34px;
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.compact-grid {
  grid-template-columns: repeat(5, minmax(150px, 1fr));
}

.product-section,
.solution-band,
.closing {
  border-radius: 8px;
}

.product-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(68px, 8vw, 110px) clamp(22px, 4vw, 58px);
  color: var(--text-dark);
  background: var(--paper);
}

.product-section .eyebrow,
.product-section .section-kicker {
  color: var(--teal);
}

.product-section h2,
.product-section h3 {
  color: var(--text-dark);
}

.product-section p {
  color: #595762;
}

.product-copy {
  position: sticky;
  top: 118px;
  align-self: start;
}

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

.feature-card {
  min-height: 252px;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.feature-icon {
  font-family: var(--font-display);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: #101014;
  background: var(--pink);
  border-radius: 8px;
  font-weight: 700;
}

.page-hero {
  padding: clamp(76px, 10vw, 142px) 0 clamp(52px, 7vw, 90px);
}

.page-hero.compact {
  padding-bottom: 42px;
}

.page-hero h1 {
  max-width: 1080px;
  font-size: clamp(42px, 5.4vw, 72px);
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding: clamp(36px, 5vw, 76px) 0 clamp(66px, 8vw, 114px);
}

.phone-pair {
  min-height: clamp(540px, 62vw, 750px);
}

.phone-pair .phone-shell:first-child {
  left: 7%;
  top: 0;
  z-index: 3;
  transform: rotate(-4deg);
}

.phone-pair .phone-shell:last-child {
  right: 7%;
  top: 16%;
  z-index: 2;
  transform: rotate(5deg);
}

.showcase-copy {
  padding-block: 28px;
}

.clean-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-weight: 700;
}

.clean-list li::before {
  content: "";
  flex: 0 0 9px;
  width: 9px;
  height: 9px;
  background: var(--teal);
  border-radius: 999px;
}

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

.myxo-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(410px, 1.12fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
  padding: clamp(68px, 9vw, 128px) 0 clamp(58px, 7vw, 96px);
}

.myxo-hero h1 {
  font-size: clamp(42px, 5.6vw, 74px);
}

.solution-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(68px, 8vw, 110px) clamp(22px, 4vw, 58px);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 95, 167, 0.18), rgba(8, 199, 180, 0.12)),
    var(--surface);
}

.solution-band .eyebrow,
.closing .eyebrow {
  color: var(--teal);
}

.solution-band p,
.closing p {
  color: #c9c4d0;
}

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

.status-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(62px, 8vw, 106px) 0;
  border-top: 1px solid var(--line);
}

.form-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: start;
  padding: clamp(64px, 8vw, 108px) 0;
  border-top: 1px solid var(--line);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  font-family: var(--font-display);
  display: grid;
  gap: 9px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(8, 199, 180, 0.14);
}

.full-field,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.contact-form button {
  width: fit-content;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-size: 14px;
  font-weight: 700;
}

.investor-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(32px, 5vw, 78px);
  padding: clamp(68px, 9vw, 118px) 0;
  border-top: 1px solid var(--line);
}

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

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

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: start;
  padding: clamp(76px, 10vw, 140px) 0 clamp(58px, 7vw, 96px);
}

.contact-hero h1 {
  font-size: clamp(42px, 6vw, 76px);
}

.contact-list {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
  overflow: hidden;
}

.contact-list a,
.contact-list div {
  display: grid;
  gap: 6px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-list a:last-child,
.contact-list div:last-child {
  border-bottom: 0;
}

.contact-list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.closing {
  min-height: 410px;
  padding: clamp(58px, 8vw, 96px);
  color: var(--text);
  background:
    linear-gradient(135deg, rgba(255, 95, 167, 0.28), rgba(8, 199, 180, 0.2)),
    #14141b;
  border: 1px solid var(--line);
}

.closing h2 {
  max-width: 850px;
}

.legal-page {
  max-width: 920px;
  padding: clamp(76px, 9vw, 132px) 0;
}

.legal-page h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.legal-page article {
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.legal-page h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.legal-page a {
  color: var(--teal);
  font-weight: 700;
}

.details-list {
  display: grid;
  margin: clamp(34px, 5vw, 58px) 0 0;
  border-top: 1px solid var(--line);
}

.details-list div {
  display: grid;
  grid-template-columns: minmax(160px, 0.38fr) minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.details-list dt {
  color: var(--teal);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.details-list dd {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0 44px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer strong {
  color: var(--text);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: start;
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--text);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .brand {
    justify-content: center;
  }

  .nav-links {
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-cta {
    justify-self: center;
  }

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

@media (max-width: 920px) {
  .hero,
  .split,
  .product-section,
  .product-showcase,
  .myxo-hero,
  .solution-band,
  .status-section,
  .form-section,
  .investor-section,
  .contact-hero {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .brand-stage {
    min-height: 560px;
  }

  .phone-stage,
  .phone-pair {
    min-height: 660px;
  }

  .phone-shell {
    width: min(42vw, 300px);
  }

  .product-copy {
    position: static;
  }

  .trust-grid,
  .metrics-band,
  .roadmap-list,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .metrics-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics-band div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .site-header,
  .hero,
  .page-hero,
  .myxo-hero,
  .contact-hero,
  .metrics-band,
  .section,
  .product-section,
  .product-showcase,
  .investor-section,
  .solution-band,
  .status-section,
  .form-section,
  .closing,
  .legal-page,
  .site-footer {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    top: 8px;
  }

  .brand {
    justify-content: start;
    font-size: 15px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-cta {
    justify-self: stretch;
    max-width: none;
  }

  .hero,
  .page-hero,
  .myxo-hero,
  .contact-hero {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 64px);
  }

  .hero-actions,
  .contact-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .primary-btn,
  .secondary-btn,
  .light-btn {
    width: 100%;
  }

  .brand-stage {
    min-height: 500px;
  }

  .brand-stage::before {
    inset: 18px;
    background-size: 54px 54px;
  }

  .brand-constellation {
    inset: 34px;
  }

  .main-brand-card {
    left: 18px;
    top: 58px;
    width: calc(100% - 36px);
  }

  .accent-card {
    right: 18px;
    bottom: 72px;
    width: calc(100% - 68px);
  }

  .quiet-card {
    left: 18px;
    right: auto;
    top: auto;
    bottom: 18px;
    width: min(230px, calc(100% - 36px));
  }

  .phone-stage,
  .phone-pair {
    min-height: 570px;
  }

  .phone-stage::before,
  .phone-pair::before {
    inset: 10% 0 10%;
  }

  .phone-shell {
    width: min(56vw, 250px);
    border-radius: 32px;
    padding: 7px;
  }

  .phone-shell img {
    border-radius: 25px;
  }

  .phone-front,
  .solo-stage .phone-front,
  .phone-pair .phone-shell:first-child {
    left: 2%;
    top: 3%;
  }

  .phone-back,
  .solo-stage .phone-back,
  .phone-pair .phone-shell:last-child {
    right: 2%;
    top: 20%;
  }

  .signal-panel {
    right: 12px;
    bottom: 22px;
    width: calc(100% - 24px);
  }

  .feature-grid,
  .investor-grid,
  .principle-grid,
  .compact-grid,
  .private-list {
    grid-template-columns: 1fr;
  }

  .product-section,
  .solution-band,
  .closing {
    padding-inline: 20px;
  }

  .feature-card,
  .roadmap-list article,
  .investor-grid article,
  .trust-grid article,
  .principle-grid article,
  .private-list article,
  .solution-grid article {
    min-height: auto;
  }

  .details-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-form button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand-stage {
    min-height: 540px;
  }

  .brand-card {
    padding: 18px;
  }

  .brand-card p {
    font-size: 15px;
  }

  .accent-card {
    width: calc(100% - 36px);
  }

  .phone-stage,
  .phone-pair {
    min-height: 500px;
  }

  .phone-shell {
    width: 58vw;
  }

  .phone-back,
  .solo-stage .phone-back,
  .phone-pair .phone-shell:last-child {
    opacity: 0.76;
  }
}

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