:root {
  color-scheme: dark;
  --bg: #020304;
  --bg-soft: #05080c;
  --surface: #070c12;
  --surface-2: #0b1119;
  --surface-3: #111822;
  --text: #fff8f1;
  --muted: #aaa6ae;
  --muted-2: #767985;
  --line: rgba(111, 128, 151, 0.24);
  --line-strong: rgba(151, 163, 180, 0.36);
  --orange: #ff7417;
  --orange-bright: #ff8a22;
  --amber: #ffb34a;
  --green: #8de36c;
  --blue: #72b8ff;
  --red: #ff5a52;
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 26px;
  --max: 1320px;
  --ease: cubic-bezier(0.2, 0.78, 0.2, 1);
  --shadow: 0 20px 58px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 20% 16%, rgba(211, 62, 8, 0.1), transparent 31rem),
    radial-gradient(circle at 82% 41%, rgba(255, 116, 23, 0.045), transparent 27rem),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.12;
  background-image:
    radial-gradient(circle at 12% 32%, rgba(255, 118, 23, 0.76) 0 1px, transparent 1.6px),
    radial-gradient(circle at 68% 19%, rgba(255, 179, 74, 0.48) 0 1px, transparent 1.5px),
    radial-gradient(circle at 88% 67%, rgba(255, 105, 16, 0.62) 0 1px, transparent 1.7px);
  background-size: 151px 137px, 211px 181px, 257px 229px;
  mask-image: linear-gradient(to bottom, transparent 3%, #000 18%, #000 82%, transparent 98%);
}

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

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

a {
  color: inherit;
}

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

button {
  border: 0;
}

::selection {
  color: #180801;
  background: var(--amber);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(2, 3, 4, 0.76);
  backdrop-filter: blur(20px) saturate(140%);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(2, 3, 4, 0.92);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 84px;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 11px;
  color: var(--text);
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  box-shadow: 0 0 22px rgba(255, 107, 17, 0.18);
}

.brand strong {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-links a,
.footer-links a {
  color: #d4d1d2;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  text-underline-offset: 6px;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--orange-bright);
  text-decoration: underline;
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
}

.menu-button svg,
.icon-button svg,
.button svg,
.text-link svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 17px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms var(--ease), box-shadow 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button-primary {
  background: linear-gradient(135deg, var(--amber), var(--orange) 56%, #e94308);
  color: #160903;
  box-shadow: 0 14px 34px rgba(224, 65, 7, 0.24);
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(224, 65, 7, 0.34);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(7, 12, 18, 0.78);
  color: var(--text);
}

.button-danger {
  border-color: rgba(255, 90, 82, 0.34);
  background: rgba(100, 14, 13, 0.2);
  color: #ff9a95;
}

.button:disabled,
.button[aria-disabled="true"] {
  opacity: 0.52;
  cursor: not-allowed;
  transform: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 84px);
  grid-template-columns: minmax(0, 0.86fr) minmax(520px, 1.14fr);
  align-items: center;
  gap: clamp(48px, 6vw, 88px);
  padding-block: 76px 104px;
}

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

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

h1 {
  max-width: 680px;
  margin-bottom: 26px;
  font-size: clamp(58px, 6vw, 104px);
  line-height: 0.96;
  font-weight: 820;
  letter-spacing: clamp(-5px, -0.045em, -2.2px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(42px, 4.6vw, 76px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.042em;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.accent-text {
  color: var(--orange-bright);
}

.hero-lede,
.section-lede {
  max-width: 660px;
  color: #c2bec0;
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.6;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 0;
  color: var(--orange-bright);
  font-weight: 760;
  text-decoration: none;
}

.text-link svg {
  transition: transform 170ms var(--ease);
}

.text-link:hover svg,
.text-link:focus-visible svg {
  transform: translateX(5px);
}

.availability {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 480px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.availability-dot {
  width: 8px;
  height: 8px;
  margin-top: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255, 116, 23, 0.6);
}

.product-stage {
  position: relative;
  min-height: 650px;
  border: 1px solid rgba(255, 129, 31, 0.22);
  border-radius: 26px;
  background:
    radial-gradient(circle at 82% 76%, rgba(216, 61, 6, 0.11), transparent 42%),
    linear-gradient(145deg, rgba(8, 13, 19, 0.94), rgba(2, 4, 7, 0.9));
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.3), inset 0 1px rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.product-stage::after {
  position: absolute;
  right: -10%;
  bottom: -20%;
  width: 60%;
  height: 55%;
  content: "";
  background: radial-gradient(ellipse, rgba(255, 97, 13, 0.2), transparent 70%);
  filter: blur(20px);
}

.simulator {
  position: absolute;
  top: 50%;
  left: clamp(24px, 4vw, 58px);
  z-index: 4;
  width: min(54%, 470px);
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(7, 12, 18, 0.92);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.38);
  transform: translateY(-50%);
  backdrop-filter: blur(18px);
}

.simulator-title {
  margin-bottom: 22px;
  font-size: 19px;
  font-weight: 780;
  text-align: center;
}

.segmented {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 15px;
  overflow: hidden;
}

.segmented button {
  min-height: 54px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.segmented button:last-child {
  border-right: 0;
}

.segmented button[aria-pressed="true"] {
  background: rgba(255, 116, 23, 0.1);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--orange);
}

.range-wrap {
  margin-top: 28px;
}

.range-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.range-head span:first-child,
.sim-note {
  color: var(--muted);
  font-size: 12px;
}

.range-value {
  font-size: 38px;
  line-height: 1;
  font-weight: 820;
  font-variant-numeric: tabular-nums;
}

input[type="range"] {
  width: 100%;
  height: 5px;
  margin: 26px 0 22px;
  border-radius: 999px;
  outline: none;
  appearance: none;
  background: linear-gradient(to right, var(--orange) var(--range-progress, 20%), #252a31 var(--range-progress, 20%));
}

input[type="range"]:focus-visible {
  outline: 3px solid rgba(255, 179, 74, 0.9);
  outline-offset: 8px;
}

input[type="range"]::-webkit-slider-thumb {
  width: 23px;
  height: 23px;
  border: 3px solid var(--text);
  border-radius: 50%;
  appearance: none;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 116, 23, 0.12);
  cursor: grab;
}

input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 3px solid var(--text);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 116, 23, 0.12);
  cursor: grab;
}

.earned-output {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.earned-output span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.earned-output strong {
  color: var(--orange-bright);
  font-size: 42px;
  line-height: 1;
  font-weight: 830;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}

.earned-output small {
  font-size: 16px;
  letter-spacing: 0;
}

.sim-note {
  margin: 16px 0 0;
  text-align: center;
}

.hero-phone {
  position: absolute;
  top: 50%;
  right: 5%;
  z-index: 3;
  width: min(31%, 244px);
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 34px;
  background: linear-gradient(145deg, #353535, #050607 24%, #1e1f21 75%, #08090a);
  box-shadow: -14px 30px 52px rgba(0, 0, 0, 0.48), 0 0 38px rgba(255, 96, 12, 0.06);
  transform: translateY(-50%) rotate(1.8deg);
  transition: transform 400ms var(--ease);
}

.product-stage:hover .hero-phone {
  transform: translateY(-51%) rotate(0.6deg);
}

.phone-screen {
  width: 100%;
  height: auto;
  border-radius: 27px;
  background: #020304;
}

.section {
  position: relative;
  padding-block: clamp(96px, 9vw, 150px);
  scroll-margin-top: 96px;
}

.section-heading {
  max-width: 820px;
}

.workflow-top {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(520px, 1.2fr);
  align-items: center;
  gap: clamp(52px, 8vw, 120px);
}

.phone-trio {
  position: relative;
  min-height: 700px;
  overflow: visible;
}

.phone-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  width: auto;
  border-radius: 32px;
  background: #050708;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.42);
  transition: transform 400ms var(--ease), opacity 300ms ease;
}

.phone-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.phone-card-main {
  top: 50%;
  left: 50%;
  z-index: 3;
  width: auto;
  height: clamp(560px, 45vw, 660px);
  aspect-ratio: 390 / 844;
  transform: translate(-50%, -50%);
}

.phone-card-left {
  top: 50%;
  left: 4%;
  z-index: 1;
  width: auto;
  height: clamp(410px, 34vw, 500px);
  aspect-ratio: 500 / 844;
  opacity: 0.62;
  transform: translateY(-48%) rotate(-4deg);
}

.phone-card-right {
  top: 50%;
  right: 3%;
  z-index: 2;
  width: auto;
  height: clamp(410px, 34vw, 500px);
  aspect-ratio: 390 / 844;
  opacity: 0.7;
  transform: translateY(-47%) rotate(4deg);
}

.workflow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 72px);
  margin-top: 32px;
  padding-top: 55px;
}

.workflow-rail::before {
  position: absolute;
  top: 22px;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, var(--orange), rgba(255, 116, 23, 0.42), rgba(255, 116, 23, 0.12));
}

.step {
  position: relative;
}

.step::before {
  position: absolute;
  top: -42px;
  left: 0;
  width: 16px;
  height: 16px;
  border: 4px solid #ffe2c4;
  border-radius: 50%;
  content: "";
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(255, 116, 23, 0.12), 0 0 22px rgba(255, 116, 23, 0.5);
}

.step-number {
  display: block;
  margin-bottom: 12px;
  color: var(--orange-bright);
  font-size: 48px;
  line-height: 1;
  font-weight: 820;
}

.step p,
.trust-item p,
.journey-copy p,
.contact-copy p {
  color: var(--muted);
}

.trust-band {
  display: grid;
  grid-template-columns: 1.05fr repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(80px, 9vw, 130px);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(10, 17, 24, 0.95), rgba(4, 8, 12, 0.94));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-intro,
.trust-item {
  padding: clamp(28px, 3vw, 44px);
}

.trust-intro {
  background: rgba(255, 116, 23, 0.055);
}

.trust-intro h3 {
  font-size: 28px;
}

.trust-item {
  border-left: 1px solid var(--line);
}

.trust-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--orange-bright);
}

.trust-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.journey-section {
  border-top: 1px solid rgba(111, 128, 151, 0.1);
  background:
    radial-gradient(circle at 72% 44%, rgba(113, 29, 4, 0.2), transparent 35rem),
    linear-gradient(180deg, transparent, rgba(4, 6, 9, 0.74) 48%, transparent);
}

.journey-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(600px, 1.28fr);
  align-items: center;
  gap: clamp(50px, 7vw, 112px);
}

.facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 34px 0;
}

.fact {
  padding: 0 25px;
  border-right: 1px solid var(--line);
}

.fact:first-child {
  padding-left: 0;
}

.fact:last-child {
  border-right: 0;
}

.fact strong {
  display: block;
  color: var(--orange-bright);
  font-size: 25px;
  line-height: 1.1;
  font-weight: 820;
}

.fact span {
  color: var(--muted);
  font-size: 13px;
}

.feature-tabs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 28px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(7, 12, 18, 0.7);
  overflow: hidden;
}

.feature-tabs::before {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc((100% - 8px) / 4);
  border: 1px solid rgba(255, 116, 23, 0.64);
  border-radius: 12px;
  content: "";
  background: rgba(255, 116, 23, 0.11);
  box-shadow: 0 8px 24px rgba(255, 92, 10, 0.08);
  transform: translateX(calc(var(--feature-index, 0) * 100%));
  transition: transform 360ms var(--ease), background 220ms ease;
}

.feature-tabs button {
  position: relative;
  z-index: 1;
  min-height: 50px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 720;
  cursor: pointer;
  transition: color 220ms ease;
}

.feature-tabs button[aria-pressed="true"] {
  color: var(--orange-bright);
}

.feature-description {
  min-height: 88px;
  color: #d3cecc;
  font-size: 18px;
  line-height: 1.55;
  transition: opacity 180ms ease, transform 260ms var(--ease);
}

.feature-description.switching {
  opacity: 0;
  transform: translateY(7px);
}

.feature-stage {
  position: relative;
  min-height: 740px;
  overflow: visible;
  perspective: 1300px;
}

.feature-phone {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: clamp(390px, 34vw, 500px);
  padding: 7px;
  border: 1px solid var(--line-strong);
  border-radius: 34px;
  background: #090b0e;
  aspect-ratio: var(--screen-ratio, 390 / 844);
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.48);
  transform: translate(-50%, -50%);
  transition: opacity 220ms ease, transform 360ms var(--ease), aspect-ratio 280ms var(--ease);
}

.feature-phone img {
  width: 100%;
  height: 100%;
  border-radius: 27px;
  object-fit: contain;
}

.feature-phone-peek-left {
  left: 23%;
  z-index: 0;
  opacity: 0.4;
  transform: translate(-50%, -47%) rotateY(10deg) rotate(-3deg);
}

.feature-phone-main {
  z-index: 3;
  height: clamp(520px, 44vw, 660px);
}

.feature-phone-peek-right {
  left: 77%;
  z-index: 1;
  opacity: 0.48;
  transform: translate(-50%, -47%) rotateY(-10deg) rotate(3deg);
}

.feature-stage.feature-switching .feature-phone-main {
  opacity: 0;
  transform: translate(-50%, -48%) scale(0.982);
}

.progress-path {
  position: absolute;
  right: 4%;
  bottom: 2%;
  left: 4%;
  height: 2px;
  background: var(--line);
}

.progress-path::before {
  display: block;
  width: var(--feature-progress, 25%);
  height: 100%;
  content: "";
  background: linear-gradient(90deg, var(--orange-bright), var(--amber));
  box-shadow: 0 0 16px rgba(255, 116, 23, 0.5);
  transition: width 420ms var(--ease);
}

.contact-section {
  padding-bottom: 90px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(540px, 1.28fr);
  gap: clamp(56px, 8vw, 120px);
  align-items: center;
  padding: clamp(34px, 5vw, 74px);
  border: 1px solid rgba(255, 119, 24, 0.28);
  border-radius: 30px;
  background:
    radial-gradient(circle at 16% 60%, rgba(255, 98, 10, 0.13), transparent 21rem),
    linear-gradient(145deg, rgba(5, 8, 11, 0.97), rgba(2, 4, 6, 0.98));
  box-shadow: var(--shadow);
}

.guardian-wrap {
  position: relative;
  width: min(74%, 330px);
  margin: 34px auto 28px;
}

.guardian-wrap::before,
.guardian-wrap::after {
  position: absolute;
  inset: 5%;
  z-index: 0;
  border: 1px solid rgba(255, 116, 23, 0.3);
  border-radius: 50%;
  content: "";
  animation: guardian-spin 22s linear infinite;
}

.guardian-wrap::after {
  inset: -5%;
  border-style: dashed;
  border-color: rgba(255, 179, 74, 0.16);
  animation-direction: reverse;
  animation-duration: 30s;
}

.guardian-wrap.success::before {
  border-color: rgba(141, 227, 108, 0.65);
  box-shadow: 0 0 34px rgba(141, 227, 108, 0.16);
}

.guardian-wrap img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.54)) drop-shadow(0 0 20px rgba(255, 108, 20, 0.14));
}

@keyframes guardian-spin {
  to { transform: rotate(360deg); }
}

.contact-availability {
  color: var(--muted);
  font-size: 14px;
}

.contact-form {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(8, 14, 21, 0.88);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-label {
  color: #e2ddda;
  font-size: 13px;
  font-weight: 730;
}

.field input,
.field select,
.field textarea,
.search-input {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  outline: none;
  background: #0b121a;
  color: var(--text);
  font-size: 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input,
.field select,
.search-input {
  min-height: 52px;
  padding: 0 15px;
}

.field textarea {
  min-height: 150px;
  padding: 14px 15px;
  line-height: 1.55;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.search-input:focus {
  border-color: var(--orange);
  background: #0d151e;
  box-shadow: 0 0 0 4px rgba(255, 116, 23, 0.1);
}

.field-error {
  min-height: 16px;
  margin: 0;
  color: #ff9791;
  font-size: 12px;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 11px;
  margin: 24px 0;
  color: var(--muted);
  font-size: 13px;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--orange);
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: #ff9791;
}

.privacy-note {
  margin: 4px 0 0;
  color: var(--muted-2);
  font-size: 12px;
  text-align: center;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(1, 2, 3, 0.82);
}

.footer-inner {
  display: flex;
  min-height: 150px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  border-radius: 15px;
}

.footer-brand strong {
  display: block;
  font-size: 25px;
  letter-spacing: -0.5px;
}

.footer-brand span {
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 0 0 26px;
  color: var(--muted-2);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms var(--ease), transform 500ms var(--ease);
}

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

/* Legal pages */
.legal-page {
  background: var(--bg);
}

.legal-hero {
  padding: 74px 0 42px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin-bottom: 14px;
  font-size: clamp(48px, 5vw, 78px);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: var(--muted);
  font-size: 14px;
}

.legal-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: var(--surface);
  overflow: hidden;
}

.summary-item {
  padding: 28px;
  border-right: 1px solid var(--line);
}

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

.summary-item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-bright);
  font-size: 14px;
}

.summary-item span {
  color: #d3cecc;
  font-size: 13px;
  line-height: 1.55;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 800px);
  justify-content: center;
  gap: clamp(48px, 8vw, 120px);
  padding-block: 68px 120px;
}

.legal-toc {
  position: sticky;
  top: 112px;
  align-self: start;
  padding-right: 26px;
  border-right: 1px solid var(--line);
}

.legal-toc strong {
  display: block;
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-toc a {
  display: block;
  margin: 3px 0;
  padding: 8px 0 8px 14px;
  border-left: 2px solid transparent;
  color: #a9a7ac;
  font-size: 13px;
  text-decoration: none;
}

.legal-toc a:hover,
.legal-toc a.active {
  border-left-color: var(--orange);
  color: var(--orange-bright);
}

.legal-toc-mobile {
  display: none;
}

.legal-article {
  min-width: 0;
}

.legal-article section {
  scroll-margin-top: 112px;
  margin-bottom: 52px;
}

.legal-article h2 {
  margin-bottom: 16px;
  font-size: 30px;
  letter-spacing: -0.025em;
}

.legal-article h3 {
  margin-top: 28px;
  font-size: 19px;
}

.legal-article p,
.legal-article li {
  color: #c3bfc1;
  font-size: 16px;
  line-height: 1.76;
}

.legal-article li + li {
  margin-top: 9px;
}

.legal-article a {
  color: var(--orange-bright);
  text-underline-offset: 4px;
}

.legal-callout {
  margin: 28px 0;
  padding: 24px 26px;
  border: 1px solid rgba(255, 116, 23, 0.28);
  border-radius: 17px;
  background: rgba(255, 116, 23, 0.055);
}

.legal-callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.legal-table {
  width: 100%;
  margin: 26px 0;
  border-collapse: collapse;
  font-size: 14px;
}

.legal-table th,
.legal-table td {
  padding: 16px 14px;
  border-bottom: 1px solid var(--line);
  color: #c3bfc1;
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Admin */
.admin-page {
  min-height: 100vh;
  background: #020304;
}

.admin-login-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.login-panel {
  width: min(100%, 460px);
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(145deg, #081019, #05090e);
  box-shadow: var(--shadow);
}

.login-brand {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 32px;
}

.login-brand img {
  width: 62px;
  height: 62px;
  border-radius: 16px;
}

.login-brand h1 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -0.6px;
}

.login-brand p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.login-panel .field + .field {
  margin-top: 18px;
}

.login-panel .button {
  width: 100%;
  margin-top: 22px;
}

.reset-link {
  display: block;
  margin: 18px auto 0;
  border: 0;
  background: transparent;
  color: var(--orange-bright);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

.login-note {
  margin: 22px 0 0;
  color: var(--muted-2);
  font-size: 12px;
  text-align: center;
}

.admin-shell {
  display: none;
  min-height: 100vh;
  grid-template-columns: 240px minmax(420px, 0.95fr) minmax(420px, 1.05fr);
}

.admin-shell.authenticated {
  display: grid;
}

.admin-rail {
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
  border-right: 1px solid var(--line);
  background: #030609;
}

.admin-rail .brand img {
  width: 54px;
  height: 54px;
}

.rail-label {
  margin: 28px 0 8px;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rail-item {
  padding: 11px 12px;
  border-radius: 11px;
  background: rgba(255, 116, 23, 0.08);
  color: var(--orange-bright);
  font-size: 13px;
  font-weight: 720;
}

.rail-user {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.admin-list-pane,
.admin-detail-pane {
  min-width: 0;
  min-height: 100vh;
}

.admin-list-pane {
  border-right: 1px solid var(--line);
  background: #05090e;
}

.admin-toolbar {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 26px;
  border-bottom: 1px solid var(--line);
}

.admin-toolbar h1 {
  margin: 0;
  font-size: 28px;
  letter-spacing: -0.7px;
}

.toolbar-actions {
  display: flex;
  gap: 9px;
}

.toolbar-actions .button {
  min-height: 43px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 12px;
}

.admin-control-card {
  margin: 18px 20px 0;
  padding: 16px 18px;
  border: 1px solid rgba(255, 116, 23, 0.24);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255, 116, 23, 0.075), rgba(7, 12, 18, 0.86) 56%);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.admin-control-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.admin-control-heading h2 {
  margin: 0 0 3px;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.admin-control-heading p,
.admin-control-status {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.48;
}

.admin-control-status {
  min-height: 18px;
  margin-top: 10px;
  color: var(--muted-2);
}

.admin-control-card[data-state="ready"] .admin-control-status {
  color: var(--green);
}

.admin-control-card[data-state="mixed"] .admin-control-status {
  color: var(--amber);
}

.admin-control-card[data-state="unavailable"] .admin-control-status {
  color: #ff9791;
}

.admin-toggle {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  cursor: pointer;
}

.admin-toggle-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.admin-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.admin-toggle-track {
  position: relative;
  display: block;
  width: 50px;
  height: 29px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #151b23;
  box-shadow: inset 0 2px 7px rgba(0, 0, 0, 0.28);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.admin-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: #d9d5d3;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.35);
  transition: transform 220ms var(--ease), background 180ms ease;
}

.admin-toggle input:checked + .admin-toggle-track {
  border-color: var(--orange-bright);
  background: linear-gradient(135deg, var(--orange-bright), #e84a09);
  box-shadow: 0 0 0 4px rgba(255, 116, 23, 0.09), inset 0 1px rgba(255, 255, 255, 0.18);
}

.admin-toggle input:checked + .admin-toggle-track .admin-toggle-thumb {
  background: #fffaf4;
  transform: translateX(21px);
}

.admin-toggle input:indeterminate + .admin-toggle-track {
  border-color: rgba(255, 179, 74, 0.8);
  background: rgba(255, 179, 74, 0.2);
}

.admin-toggle input:indeterminate + .admin-toggle-track .admin-toggle-thumb {
  background: var(--amber);
  transform: translateX(10px);
}

.admin-toggle input:focus-visible + .admin-toggle-track {
  outline: 3px solid rgba(255, 179, 74, 0.72);
  outline-offset: 4px;
}

.admin-toggle input:disabled + .admin-toggle-track {
  opacity: 0.48;
  cursor: not-allowed;
}

.admin-control-card[data-state="saving"] .admin-toggle-track {
  opacity: 0.7;
}

.inbox-controls {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.admin-status {
  min-height: 20px;
  margin: 0;
  padding: 0 28px 12px;
  color: var(--muted-2);
  font-size: 13px;
}

.admin-status.success {
  color: var(--green);
}

.admin-status.error {
  color: #ff9791;
}

.load-older {
  width: calc(100% - 56px);
  margin: 18px 28px 28px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.filters button {
  min-height: 35px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
}

.filters button[aria-pressed="true"] {
  border-color: var(--orange);
  background: rgba(255, 116, 23, 0.09);
  color: var(--orange-bright);
}

.message-head,
.message-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(105px, 0.8fr) 106px 96px;
  align-items: center;
  gap: 12px;
  padding-inline: 20px;
}

.message-head {
  min-height: 43px;
  border-bottom: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.message-row {
  width: 100%;
  min-height: 68px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: #c7c4c6;
  font-size: 12px;
  text-align: left;
  cursor: pointer;
}

.message-row:hover {
  background: rgba(255, 255, 255, 0.025);
}

.message-row.selected {
  background: rgba(255, 116, 23, 0.09);
  box-shadow: inset 3px 0 var(--orange);
  color: var(--text);
}

.sender-cell {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.unread-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange-bright);
}

.cell-ellipsis {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-tag {
  display: inline-flex;
  width: fit-content;
  min-height: 27px;
  align-items: center;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 720;
}

.status-new {
  border-color: rgba(255, 116, 23, 0.34);
  background: rgba(255, 116, 23, 0.08);
  color: var(--orange-bright);
}

.status-in_progress {
  border-color: rgba(114, 184, 255, 0.34);
  background: rgba(54, 127, 201, 0.08);
  color: var(--blue);
}

.status-resolved {
  border-color: rgba(141, 227, 108, 0.28);
  background: rgba(79, 164, 50, 0.08);
  color: var(--green);
}

.inbox-empty,
.inbox-error {
  display: grid;
  min-height: 260px;
  place-items: center;
  padding: 30px;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.admin-detail-pane {
  display: flex;
  flex-direction: column;
  background: #060b10;
}

.detail-content {
  padding: clamp(28px, 4vw, 56px);
}

.detail-content h2 {
  margin-bottom: 4px;
  font-size: 28px;
  letter-spacing: -0.7px;
}

.detail-email {
  color: var(--muted);
  font-size: 14px;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 34px 0;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.detail-meta span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted-2);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.detail-meta strong {
  font-size: 14px;
  font-weight: 670;
}

.detail-message {
  color: #e0dcda;
  font-size: 17px;
  line-height: 1.72;
  white-space: pre-wrap;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding: 20px 28px;
  border-top: 1px solid var(--line);
}

.detail-actions .button {
  min-height: 43px;
  padding: 0 15px;
  border-radius: 12px;
  font-size: 12px;
}

.admin-mobile-back {
  display: none;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.modal-backdrop.open {
  display: grid;
}

.modal {
  width: min(100%, 430px);
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: 19px;
  background: #0a1118;
  box-shadow: var(--shadow);
}

.modal h2 {
  margin-bottom: 8px;
  font-size: 24px;
}

.modal p {
  color: var(--muted);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 26px;
}

@media (max-width: 1180px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    right: 24px;
    left: 24px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(5, 9, 14, 0.98);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
    gap: 0;
  }

  .nav-links a {
    padding: 13px;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-actions .button {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

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

  .product-stage {
    min-height: 690px;
  }

  .workflow-top,
  .journey-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .workflow-top .section-heading,
  .journey-copy,
  .contact-copy {
    max-width: 780px;
  }

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

  .trust-intro {
    grid-column: 1 / -1;
  }

  .trust-item:first-of-type {
    border-left: 0;
  }

  .feature-stage {
    min-height: 690px;
  }

  .contact-panel {
    gap: 36px;
  }

  .guardian-wrap {
    width: 230px;
    margin: 26px 0;
  }

  .admin-shell {
    grid-template-columns: 210px minmax(390px, 1fr) minmax(390px, 1fr);
  }
}

@media (min-width: 1181px) and (max-height: 800px) {
  .hero {
    min-height: calc(100vh - 76px);
    gap: clamp(38px, 5vw, 76px);
    padding-block: 34px 52px;
  }

  .product-stage {
    min-height: 540px;
  }

  .simulator {
    padding: 23px;
  }

  .simulator-title {
    margin-bottom: 16px;
  }

  .range-wrap {
    margin-top: 20px;
  }

  .hero-phone {
    width: min(29%, 218px);
  }

  .hero-lede {
    font-size: 18px;
  }

  .hero-actions {
    margin-top: 26px;
  }

  .availability {
    margin-top: 18px;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(calc(100% - 32px), var(--max));
  }

  .product-stage {
    display: grid;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 24px;
  }

  .simulator,
  .hero-phone {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    transform: none;
  }

  .hero-phone {
    width: min(68%, 290px);
    margin-inline: auto;
  }

  .product-stage:hover .hero-phone {
    transform: none;
  }

  .workflow-rail {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-top: 0;
    padding-left: 48px;
  }

  .workflow-rail::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 15px;
    width: 2px;
    height: auto;
  }

  .step::before {
    top: 3px;
    left: -41px;
  }

  .step-number {
    font-size: 33px;
  }

  .trust-band,
  .legal-summary {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .summary-item {
    border-top: 1px solid var(--line);
    border-left: 0;
    border-right: 0;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .legal-toc {
    display: none;
  }

  .legal-toc-mobile {
    display: block;
    position: sticky;
    top: 92px;
    z-index: 20;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: rgba(7, 12, 18, 0.96);
  }

  .legal-toc-mobile summary {
    cursor: pointer;
    font-weight: 700;
  }

  .legal-toc-mobile nav {
    display: grid;
    padding-top: 10px;
  }

  .legal-toc-mobile a {
    padding: 8px;
    color: var(--muted);
    text-decoration: none;
  }

  .admin-shell.authenticated {
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .admin-detail-pane {
    position: fixed;
    inset: 0;
    z-index: 160;
    display: none;
  }

  .admin-detail-pane.mobile-open {
    display: flex;
  }

  .admin-mobile-back {
    display: inline-flex;
  }
}

@media (max-width: 680px) {
  .shell {
    width: min(calc(100% - 24px), var(--max));
  }

  .nav {
    min-height: 72px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand strong {
    font-size: 21px;
  }

  .hero {
    min-height: auto;
    padding-block: 58px 80px;
  }

  h1 {
    font-size: clamp(50px, 16vw, 72px);
  }

  h2 {
    font-size: clamp(39px, 12vw, 58px);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
  }

  .simulator {
    padding: 21px;
  }

  .segmented button {
    min-height: 48px;
    font-size: 12px;
  }

  .earned-output strong {
    font-size: 36px;
  }

  .section {
    padding-block: 92px;
  }

  .phone-trio {
    min-height: 500px;
  }

  .phone-card-main {
    width: auto;
    height: 430px;
  }

  .phone-card-left,
  .phone-card-right {
    width: auto;
    height: 330px;
  }

  .facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .fact {
    padding: 0 11px;
  }

  .fact strong {
    font-size: 20px;
  }

  .fact span {
    font-size: 11px;
  }

  .feature-tabs button {
    min-height: 46px;
    padding-inline: 5px;
    font-size: 11px;
  }

  .feature-stage {
    min-height: 590px;
  }

  .feature-phone-main {
    width: auto;
    height: min(520px, 118vw);
  }

  .feature-phone-peek-left,
  .feature-phone-peek-right {
    width: auto;
    height: min(350px, 86vw);
  }

  .feature-phone-peek-left {
    left: 25%;
  }

  .feature-phone-peek-right {
    left: 68%;
  }

  .contact-panel {
    padding: 24px;
    border-radius: 22px;
  }

  .contact-form {
    padding: 20px;
  }

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

  .field-full {
    grid-column: auto;
  }

  .footer-inner,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    padding-block: 40px;
  }

  .footer-links {
    gap: 18px 24px;
  }

  .legal-hero {
    padding-top: 52px;
  }

  .legal-hero h1 {
    font-size: 46px;
  }

  .legal-layout {
    padding-block: 38px 80px;
  }

  .legal-table-wrap {
    overflow-x: auto;
  }

  .legal-table {
    min-width: 650px;
  }

  .admin-login-shell {
    padding: 16px;
  }

  .login-panel {
    padding: 26px;
  }

  .admin-shell.authenticated {
    display: block;
  }

  .admin-rail {
    display: none;
  }

  .message-head,
  .message-row {
    grid-template-columns: minmax(110px, 1fr) 86px 80px;
    padding-inline: 13px;
  }

  .message-head span:nth-child(2),
  .message-row span:nth-child(2) {
    display: none;
  }

  .admin-toolbar {
    padding-inline: 15px;
  }

  .admin-toolbar h1 {
    font-size: 24px;
  }

  .toolbar-actions .button span {
    display: none;
  }

  .detail-meta {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::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;
  }
}
