:root {
  color-scheme: dark;
  --bg: #02060d;
  --bg-2: #06111f;
  --bg-3: #091a2d;
  --panel: rgba(7, 19, 34, 0.78);
  --panel-strong: rgba(9, 28, 48, 0.9);
  --line: rgba(148, 210, 255, 0.18);
  --line-strong: rgba(82, 218, 255, 0.48);
  --text: #f4fbff;
  --muted: #a7bfd2;
  --soft: #6e8ca3;
  --cyan: #4adeff;
  --blue: #38bdf8;
  --green: #4dffb5;
  --violet: #a78bfa;
  --gold: #f7d56b;
  --danger: #ff5c7a;
  --shadow: 0 22px 80px rgba(0, 0, 0, 0.4);
  --radius: 8px;
  --radius-large: 18px;
  --max: 1180px;
  --mono: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #eaf4ff;
  --bg-2: #dceeff;
  --bg-3: #cce5fb;
  --panel: rgba(255, 255, 255, 0.78);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(28, 96, 150, 0.2);
  --line-strong: rgba(0, 104, 172, 0.48);
  --text: #06111f;
  --muted: #314a60;
  --soft: #668299;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 20% 10%, rgba(56, 189, 248, 0.18), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(167, 139, 250, 0.15), transparent 30rem),
    linear-gradient(145deg, var(--bg), var(--bg-2) 58%, #02040a);
}

html[data-theme="light"] body {
  background:
    radial-gradient(circle at 20% 10%, rgba(56, 189, 248, 0.2), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(167, 139, 250, 0.13), transparent 30rem),
    linear-gradient(145deg, var(--bg), var(--bg-2) 58%, #f7fbff);
}

html[data-theme="light"] body::before {
  background-image:
    linear-gradient(rgba(28, 96, 150, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(28, 96, 150, 0.08) 1px, transparent 1px);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(148, 210, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 210, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 82%);
}

a {
  color: inherit;
}

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

::selection {
  color: #04111d;
  background: var(--cyan);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-150%);
  padding: 10px 14px;
  color: #04111d;
  background: var(--cyan);
  border-radius: var(--radius);
  font-weight: 800;
}

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

.system-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(var(--max), calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: rgba(4, 12, 22, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border: 1px solid rgba(74, 222, 255, 0.58);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.16), rgba(77, 255, 181, 0.08));
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.2);
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span {
  position: absolute;
  display: block;
  content: "";
  border: 1px solid var(--cyan);
  border-radius: 999px;
}

.brand-mark::before {
  width: 26px;
  height: 26px;
  opacity: 0.75;
}

.brand-mark::after {
  width: 34px;
  height: 12px;
  transform: rotate(32deg);
  opacity: 0.55;
}

.brand-mark span {
  width: 8px;
  height: 8px;
  border: 0;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.brand-lockup strong {
  display: block;
  line-height: 1;
  font-size: 0.98rem;
}

.brand-lockup small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(148, 210, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.primary-nav a {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.75rem;
  text-decoration: none;
  text-transform: uppercase;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--text);
  background: rgba(74, 222, 255, 0.12);
  outline: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(77, 255, 181, 0.56);
  border-radius: 999px;
  color: #03130c;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.theme-btn {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(8, 24, 42, 0.72);
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

html[data-theme="light"] .theme-btn {
  background: rgba(255, 255, 255, 0.72);
}

.theme-btn:hover,
.theme-btn:focus-visible {
  border-color: var(--line-strong);
  color: var(--cyan);
  outline: none;
}

.section-shell {
  position: relative;
  width: min(var(--max), calc(100% - 32px));
  min-width: 0;
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.75fr);
  align-items: center;
  min-height: calc(100svh - 82px);
  gap: 40px;
  padding-top: 70px;
  padding-bottom: 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 24px -8vw 0;
  z-index: -1;
  overflow: hidden;
}

.hero-bg::before {
  position: absolute;
  inset: 16% 0 auto 8%;
  width: min(72vw, 920px);
  height: min(72vw, 920px);
  content: "";
  border: 1px solid rgba(74, 222, 255, 0.18);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(74, 222, 255, 0.15), transparent 15%),
    repeating-radial-gradient(circle at center, rgba(148, 210, 255, 0.12) 0 1px, transparent 1px 52px);
  filter: drop-shadow(0 0 70px rgba(56, 189, 248, 0.16));
}

.core-orbit {
  position: absolute;
  top: 50%;
  left: 24%;
  border: 1px solid rgba(77, 255, 181, 0.22);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.core-orbit::before {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 22px var(--green);
}

.core-orbit-one {
  width: 260px;
  height: 260px;
  animation: spin 18s linear infinite;
}

.core-orbit-two {
  width: 390px;
  height: 180px;
  animation: spin 24s linear infinite reverse;
}

.core-orbit-three {
  width: 540px;
  height: 540px;
  animation: spin 36s linear infinite;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.final-cta h2 {
  margin: 0;
  max-width: min(900px, calc(100vw - 24px));
  font-size: clamp(3.1rem, 8vw, 7.2rem);
  line-height: 0.96;
  font-weight: 950;
}

.hero-content {
  min-width: 0;
  max-width: min(760px, calc(100vw - 24px));
}

.hero-copy {
  max-width: min(690px, calc(100vw - 24px));
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  line-height: 1.58;
  overflow-wrap: anywhere;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
}

.button-primary {
  border: 1px solid rgba(77, 255, 181, 0.6);
  color: #03130c;
  background: linear-gradient(135deg, var(--green), var(--cyan));
  box-shadow: 0 14px 38px rgba(77, 255, 181, 0.12);
}

.button-secondary {
  border: 1px solid var(--line-strong);
  color: var(--text);
  background: rgba(8, 24, 42, 0.72);
}

.button:hover,
.button:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-2px);
  outline: none;
  filter: brightness(1.08);
}

.hero-board {
  min-width: 0;
  max-width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-large);
  background:
    linear-gradient(180deg, rgba(10, 29, 50, 0.88), rgba(5, 15, 26, 0.88)),
    linear-gradient(135deg, rgba(77, 255, 181, 0.12), transparent);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.terminal-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.terminal-head span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--soft);
}

.terminal-head span:nth-child(1) {
  background: var(--danger);
}

.terminal-head span:nth-child(2) {
  background: var(--gold);
}

.terminal-head span:nth-child(3) {
  background: var(--green);
}

.terminal-head strong {
  margin-left: auto;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.terminal-lines {
  padding: 16px;
}

.terminal-lines p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  padding: 15px 0;
  border-bottom: 1px solid rgba(148, 210, 255, 0.12);
  font-family: var(--mono);
}

.terminal-lines p:last-child {
  border-bottom: 0;
}

.terminal-lines b {
  color: var(--cyan);
  font-size: 0.78rem;
}

.terminal-lines span {
  color: var(--text);
  font-size: 0.82rem;
  text-align: right;
  overflow-wrap: anywhere;
}

.status-rail {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 19, 34, 0.62);
}

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

.status-track span {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 32px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-track span::before {
  width: 8px;
  height: 8px;
  margin-right: 12px;
  content: "";
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
}

.section-heading {
  max-width: 760px;
  min-width: 0;
  margin-bottom: 34px;
}

.section-heading h2,
.final-cta h2 {
  font-size: clamp(2rem, 5vw, 4.4rem);
}

.section-heading p:not(.eyebrow),
.difference-copy p,
.brief-section .section-heading p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.build-grid,
.tier-grid,
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.build-card,
.tier-card,
.proof-grid article,
.difference-stack div,
.brief-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.build-card {
  min-height: 212px;
  padding: 22px;
}

.build-card span,
.difference-stack b {
  color: var(--green);
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 900;
}

.build-card h3,
.tier-card h3 {
  margin: 18px 0 10px;
  font-size: 1.12rem;
}

.build-card p,
.tier-card p,
.tier-card li,
.proof-grid span,
.difference-stack span {
  color: var(--muted);
  line-height: 1.58;
}

.build-card:hover,
.tier-card:hover,
.proof-grid article:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  transition: transform 180ms ease, border-color 180ms ease;
}

.difference-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 40px;
  align-items: start;
}

.difference-copy {
  max-width: 600px;
}

.difference-copy p:first-child {
  margin-top: 0;
}

.difference-stack {
  display: grid;
  gap: 12px;
}

.difference-stack div {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  min-height: 74px;
  padding: 18px;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-line li {
  position: relative;
  min-height: 220px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(9, 28, 48, 0.82), rgba(3, 11, 20, 0.78));
}

.process-line li::before {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
}

.process-line b {
  display: block;
  margin-bottom: 10px;
}

.process-line span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

html[data-theme="light"] .hero-board,
html[data-theme="light"] .process-line li,
html[data-theme="light"] .tier-card-featured {
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(224, 241, 255, 0.92)),
    radial-gradient(circle at 26% 0, rgba(56, 189, 248, 0.12), transparent 55%);
  border-color: rgba(28, 96, 150, 0.28);
  box-shadow:
    0 18px 48px rgba(28, 96, 150, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.74);
}

html[data-theme="light"] .build-card,
html[data-theme="light"] .tier-card,
html[data-theme="light"] .proof-grid article,
html[data-theme="light"] .difference-stack div,
html[data-theme="light"] .brief-form {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(28, 96, 150, 0.22);
  box-shadow:
    0 14px 34px rgba(28, 96, 150, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

html[data-theme="light"] .process-line b,
html[data-theme="light"] .build-card h3,
html[data-theme="light"] .tier-card h3,
html[data-theme="light"] .proof-grid b,
html[data-theme="light"] .terminal-lines span {
  color: #06111f;
}

html[data-theme="light"] .process-line span,
html[data-theme="light"] .build-card p,
html[data-theme="light"] .tier-card p,
html[data-theme="light"] .tier-card li,
html[data-theme="light"] .proof-grid span,
html[data-theme="light"] .difference-stack span,
html[data-theme="light"] .section-heading p:not(.eyebrow),
html[data-theme="light"] .difference-copy p,
html[data-theme="light"] .brief-section .section-heading p,
html[data-theme="light"] .terminal-head {
  color: #314a60;
}

html[data-theme="light"] .process-line li::before {
  background: rgba(255, 255, 255, 0.76);
  color: #006bb3;
  border-color: rgba(0, 104, 172, 0.42);
}

html[data-theme="light"] .button-secondary,
html[data-theme="light"] .status-rail,
html[data-theme="light"] .brief-form input,
html[data-theme="light"] .brief-form select,
html[data-theme="light"] .brief-form textarea,
html[data-theme="light"] .brief-output {
  color: var(--text);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(28, 96, 150, 0.24);
}

html[data-theme="light"] .brief-output {
  color: #314a60;
}

html[data-theme="light"] .brief-output.is-ready {
  color: #06111f;
}

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

.tier-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 26px;
}

.tier-card-featured {
  border-color: rgba(77, 255, 181, 0.5);
  background:
    linear-gradient(180deg, rgba(12, 42, 58, 0.92), rgba(5, 15, 26, 0.86)),
    radial-gradient(circle at 30% 0, rgba(77, 255, 181, 0.12), transparent 50%);
}

.tier-kicker {
  margin: 0;
  color: var(--green) !important;
  font-family: var(--mono);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tier-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.tier-card li::before {
  content: "+";
  margin-right: 8px;
  color: var(--green);
}

.proof-grid {
  grid-template-columns: repeat(7, minmax(142px, 1fr));
}

.proof-grid article {
  min-height: 160px;
  padding: 18px;
}

.proof-grid b {
  display: block;
  margin-bottom: 14px;
  color: var(--text);
}

.proof-grid span {
  display: block;
  font-size: 0.88rem;
}

.brief-form {
  padding: 22px;
}

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

.brief-form label {
  display: grid;
  gap: 8px;
}

.brief-form label span {
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.span-two {
  grid-column: 1 / -1;
}

.brief-form input,
.brief-form select,
.brief-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--text);
  background: rgba(2, 8, 15, 0.76);
  padding: 13px 14px;
}

.brief-form textarea {
  resize: vertical;
}

.brief-form input:focus,
.brief-form select:focus,
.brief-form textarea:focus {
  outline: 2px solid rgba(74, 222, 255, 0.5);
  outline-offset: 2px;
  border-color: var(--cyan);
}

.brief-output {
  display: block;
  min-height: 118px;
  margin-top: 20px;
  padding: 18px;
  border: 1px solid rgba(77, 255, 181, 0.28);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(2, 8, 15, 0.58);
  white-space: pre-wrap;
}

.brief-output.is-ready {
  color: var(--text);
}

.final-cta {
  display: grid;
  place-items: start;
  min-height: 440px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 50px;
  color: var(--soft);
  font-family: var(--mono);
  font-size: 0.78rem;
}

[data-reveal] {
  transform: translateY(0);
  opacity: 1;
  transition: opacity 550ms ease, transform 550ms ease;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

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

@media (max-width: 1060px) {
  .primary-nav {
    display: none;
  }

  .hero,
  .difference-layout {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 720px) {
  .site-header {
    width: min(var(--max), calc(100% - 20px));
    margin-top: 10px;
    gap: 12px;
  }

  .brand-lockup small {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .section-shell {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    padding: 70px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .hero h1 {
    max-width: calc(100vw - 48px);
    font-size: clamp(2.75rem, 14vw, 3.8rem);
    overflow-wrap: break-word;
  }

  .hero-content,
  .hero-copy,
  .hero-board {
    max-width: calc(100vw - 48px);
  }

  .terminal-lines p {
    min-width: 0;
  }

  .hero-actions,
  .brief-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-board {
    margin-top: 10px;
  }

  .terminal-lines p {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .terminal-lines span {
    text-align: left;
  }

  .build-grid,
  .process-line,
  .proof-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .process-line li,
  .tier-card {
    min-height: 0;
  }

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

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

  .system-field {
    display: none;
  }

  [data-reveal] {
    transform: none;
    opacity: 1;
  }
}
