:root {
  --ink: #061327;
  --ink-soft: #304158;
  --muted: #65758b;
  --line: #d9e3f1;
  --paper: #ffffff;
  --sky: #f5f9ff;
  --sky-strong: #eaf3ff;
  --blue: #0a55c7;
  --blue-dark: #053d91;
  --teal: #12a594;
  --brass: #b3832e;
  --shadow: 0 24px 80px rgba(20, 45, 89, 0.16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fff 0%, var(--sky) 52%, #fff 100%);
  color: var(--ink);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
  padding: 18px 0;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(10, 85, 199, 0.16);
}

.nav-links,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 15px;
  font-weight: 650;
}

.nav-links a,
.site-footer a {
  color: var(--ink-soft);
}

.nav-links a:hover,
.site-footer a:hover {
  color: var(--blue);
}

.top-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 750;
  white-space: nowrap;
}

.top-cta,
.primary-button {
  color: #fff;
  background: linear-gradient(180deg, var(--blue), var(--blue-dark));
  box-shadow: 0 14px 28px rgba(10, 85, 199, 0.22);
}

.secondary-button {
  border: 1px solid var(--line);
  color: var(--blue-dark);
  background: #fff;
}

.section-shell {
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(390px, 0.82fr) minmax(620px, 1.18fr);
  align-items: center;
  min-height: calc(100vh - 84px);
  gap: 68px;
  padding: 34px 0 54px;
  border-bottom: 1px solid var(--line);
}

.hero h1 {
  margin: 0 0 22px;
  font-size: clamp(70px, 6.6vw, 102px);
  line-height: 0.9;
  font-weight: 850;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 620px;
  margin: 0;
  font-size: clamp(34px, 3.2vw, 54px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-body {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 22px;
  line-height: 1.45;
}

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

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 0 22px 0 18px;
  border-radius: 9px;
  color: #fff;
  background: #05070b;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
}

.store-button small,
.store-button span:last-child {
  display: block;
}

.store-button small {
  margin-bottom: 2px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
}

.store-button span:last-child {
  font-size: 20px;
  line-height: 1.05;
  font-weight: 800;
}

.apple-mark svg {
  width: 30px;
  fill: currentColor;
}

.secondary-link {
  color: var(--blue-dark);
  font-size: 16px;
  font-weight: 760;
}

.availability {
  max-width: 430px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.phone-stage {
  position: relative;
  min-height: 610px;
  isolation: isolate;
}

.phone {
  position: absolute;
  width: 236px;
  height: 500px;
  padding: 13px;
  border: 5px solid #080c12;
  border-radius: 42px;
  background: #10151d;
  box-shadow: var(--shadow);
}

.phone-main {
  left: 33%;
  top: 16px;
  z-index: 3;
  width: 300px;
  height: 590px;
}

.phone-left {
  left: 0;
  top: 96px;
  z-index: 2;
  transform: rotate(-5deg);
}

.phone-right {
  right: 0;
  top: 92px;
  z-index: 1;
  transform: rotate(6deg);
}

.phone-bar {
  position: absolute;
  top: 12px;
  left: 50%;
  width: 84px;
  height: 25px;
  border-radius: 999px;
  background: #07090d;
  transform: translateX(-50%);
  z-index: 4;
}

.screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  background: #fbfdff;
}

.dark-screen {
  color: #fff;
  background: linear-gradient(180deg, #16191f, #090b0f);
}

.screen-title {
  padding-top: 48px;
  text-align: center;
  font-weight: 800;
}

.left-title {
  padding-left: 18px;
  text-align: left;
}

.segment {
  display: flex;
  gap: 4px;
  width: 124px;
  margin: 10px auto 12px;
  padding: 4px;
  border-radius: 999px;
  background: #eef3f9;
  color: var(--muted);
  font-size: 12px;
}

.segment span {
  flex: 1;
  padding: 4px 8px;
  border-radius: 999px;
  text-align: center;
}

.segment span:first-child {
  color: var(--ink);
  background: #fff;
  box-shadow: 0 2px 6px rgba(30, 52, 84, 0.12);
}

.measure-area {
  position: relative;
  display: grid;
  place-items: center;
  height: 292px;
  margin: 0 16px;
  border-radius: 12px;
  background: linear-gradient(145deg, #18222e, #11161d);
}

.trading-card {
  position: relative;
  width: 150px;
  height: 210px;
  overflow: hidden;
  border: 8px solid #e8be47;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent 36%),
    linear-gradient(160deg, #e65b30 0%, #f6d36f 42%, #4ca9d5 75%, #1a4b8f 100%);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

.mini-card {
  width: 108px;
  height: 154px;
}

.card-title {
  position: absolute;
  top: 9px;
  left: 9px;
  z-index: 2;
  color: #241708;
  font-size: 11px;
  font-weight: 850;
}

.card-art {
  position: absolute;
  top: 45px;
  left: 20px;
  width: 94px;
  height: 88px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff6a6 0%, #f16d35 46%, #135aa3 48%, #0d2e55 75%);
}

.card-lines {
  position: absolute;
  right: 12px;
  bottom: 18px;
  left: 12px;
  height: 46px;
  border-top: 2px solid rgba(42, 22, 4, 0.4);
  border-bottom: 2px solid rgba(42, 22, 4, 0.4);
}

.cross {
  position: absolute;
  z-index: 5;
  background: rgba(255, 255, 255, 0.86);
}

.cross.vertical {
  width: 2px;
  height: 246px;
}

.cross.horizontal {
  width: 216px;
  height: 2px;
}

.measure-label {
  position: absolute;
  z-index: 6;
  color: #81f1a2;
  font-size: 12px;
  font-weight: 850;
}

.measure-label.top {
  top: 14px;
}

.measure-label.right {
  right: 10px;
}

.measure-label.bottom {
  bottom: 12px;
}

.measure-label.left {
  left: 12px;
}

.score-panel {
  display: grid;
  justify-items: center;
  gap: 3px;
  padding-top: 15px;
}

.score-panel span,
.score-panel small {
  color: var(--muted);
  font-size: 12px;
}

.score-panel strong {
  font-size: 34px;
  line-height: 1;
}

.score-panel small {
  color: #15844c;
  font-weight: 700;
}

.tabbar {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 11px 10px 14px;
  border-top: 1px solid #e7edf6;
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.tabbar .active {
  color: var(--blue);
  font-weight: 800;
}

.capture-top {
  display: flex;
  justify-content: space-between;
  padding: 50px 18px 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
}

.capture-top span:last-child {
  color: #75b8ff;
}

.card-frame {
  position: relative;
  display: grid;
  place-items: center;
  height: 270px;
}

.corner {
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: rgba(255, 255, 255, 0.88);
}

.tl {
  top: 22px;
  left: 20px;
  border-top: 5px solid;
  border-left: 5px solid;
}

.tr {
  top: 22px;
  right: 20px;
  border-top: 5px solid;
  border-right: 5px solid;
}

.bl {
  bottom: 22px;
  left: 20px;
  border-bottom: 5px solid;
  border-left: 5px solid;
}

.br {
  right: 20px;
  bottom: 22px;
  border-right: 5px solid;
  border-bottom: 5px solid;
}

.shutter-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding-top: 24px;
}

.shutter-row span {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
}

.shutter-row strong {
  width: 58px;
  height: 58px;
  border: 5px solid #fff;
  border-radius: 50%;
}

.search-line {
  width: calc(100% - 36px);
  height: 32px;
  margin: 14px auto;
  border-radius: 10px;
  background: #eef3f9;
}

.history-list {
  display: grid;
  gap: 11px;
  padding: 0 15px;
}

.history-list div {
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 10px;
  align-items: center;
  min-height: 52px;
}

.history-list p,
.history-list small {
  grid-column: 2;
  margin: 0;
}

.history-list p {
  font-size: 13px;
  font-weight: 800;
}

.history-list small {
  color: #16854e;
  font-size: 11px;
}

.thumb {
  grid-row: 1 / 3;
  width: 38px;
  height: 48px;
  border: 3px solid #e9bd45;
  border-radius: 4px;
}

.thumb.gold {
  background: #ef9f3a;
}

.thumb.blue {
  background: #2a9fd6;
}

.thumb.green {
  background: #42b56a;
}

.thumb.silver {
  background: #cbd7e3;
}

.features,
.workflow,
.download,
.boundary {
  padding: 62px 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-heading h2,
.boundary h2,
.download h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p,
.boundary p,
.download p {
  max-width: 520px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.55;
}

.feature-layout {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 42px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 22px;
}

.feature-list article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid #a9c6ee;
  border-radius: 8px;
  color: var(--blue-dark);
  background: #fff;
  font-size: 13px;
  font-weight: 850;
}

.feature-list h3,
.steps h3 {
  margin: 0 0 7px;
  font-size: 19px;
}

.feature-list p,
.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.5;
}

.report-preview {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(160deg, #fff, #edf6ff);
}

.report-preview img {
  position: absolute;
  right: 8%;
  bottom: -18%;
  width: min(62%, 340px);
  filter: drop-shadow(0 24px 32px rgba(26, 54, 91, 0.2));
}

.report-card {
  position: absolute;
  top: 44px;
  left: 36px;
  width: min(56%, 330px);
  padding: 26px;
  border: 1px solid rgba(10, 85, 199, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 50px rgba(33, 71, 113, 0.12);
  backdrop-filter: blur(16px);
}

.report-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.report-card strong {
  display: block;
  margin: 12px 0 8px;
  font-size: 28px;
  line-height: 1.1;
}

.report-card p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.5;
}

.workflow-showcase {
  display: grid;
  gap: 24px;
}

.workflow-visual {
  display: grid;
  grid-template-columns: minmax(190px, 0.9fr) 54px minmax(210px, 1fr) 54px minmax(220px, 0.95fr);
  align-items: center;
  gap: 18px;
  min-height: 420px;
  padding: 34px;
  overflow: hidden;
  border: 1px solid #cfe0f5;
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(236, 246, 255, 0.92)),
    radial-gradient(circle at 52% 30%, rgba(18, 165, 148, 0.1), transparent 32%);
}

.workflow-device,
.report-sheet {
  position: relative;
  min-height: 330px;
  border: 4px solid #07111f;
  border-radius: 34px;
  background: #fbfdff;
  box-shadow: 0 22px 55px rgba(20, 45, 89, 0.16);
}

.workflow-device {
  padding: 48px 18px 20px;
}

.capture-device {
  color: #fff;
  background: linear-gradient(180deg, #151a22, #080b10);
  transform: rotate(-3deg);
}

.analyze-device {
  min-height: 360px;
  transform: translateY(-10px);
}

.device-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  width: 72px;
  height: 22px;
  border-radius: 999px;
  background: #05070b;
  transform: translateX(-50%);
}

.device-label {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
  color: inherit;
  font-size: 14px;
  font-weight: 820;
}

.scan-window,
.mini-measure {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 205px;
  border-radius: 14px;
}

.scan-window {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.scan-corner {
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: rgba(255, 255, 255, 0.9);
}

.scan-corner.top-left {
  top: 16px;
  left: 16px;
  border-top: 4px solid;
  border-left: 4px solid;
}

.scan-corner.top-right {
  top: 16px;
  right: 16px;
  border-top: 4px solid;
  border-right: 4px solid;
}

.scan-corner.bottom-left {
  bottom: 16px;
  left: 16px;
  border-bottom: 4px solid;
  border-left: 4px solid;
}

.scan-corner.bottom-right {
  right: 16px;
  bottom: 16px;
  border-right: 4px solid;
  border-bottom: 4px solid;
}

.workflow-card {
  width: 112px;
  height: 158px;
  border-width: 7px;
}

.capture-hint {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 650;
  text-align: center;
}

.mini-measure {
  margin: 0 auto;
  background: linear-gradient(145deg, #17212e, #10161e);
}

.mini-cross {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.88);
}

.mini-cross.vertical {
  width: 2px;
  height: 185px;
}

.mini-cross.horizontal {
  width: 176px;
  height: 2px;
}

.mini-label {
  position: absolute;
  z-index: 4;
  color: #81f1a2;
  font-size: 12px;
  font-weight: 850;
}

.mini-label.top {
  top: 13px;
}

.mini-label.right {
  right: 14px;
}

.mini-label.bottom {
  bottom: 12px;
}

.mini-score {
  padding-top: 16px;
  color: var(--ink);
  font-size: 34px;
  font-weight: 860;
  line-height: 1;
  text-align: center;
}

.workflow-arrow {
  display: grid;
  place-items: center;
  color: #8aa0ba;
}

.workflow-arrow svg {
  width: 42px;
}

.report-sheet {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 318px;
  padding: 28px;
  border-width: 1px;
  border-color: #cfe0f5;
  border-radius: 8px;
  transform: rotate(2deg);
}

.sheet-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.sheet-top span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.sheet-top strong {
  color: #15844c;
}

.sheet-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--ink-soft);
  font-size: 14px;
}

.sheet-row strong {
  color: var(--ink);
}

.sheet-image {
  height: 118px;
  margin-top: 4px;
  border: 1px solid #b8d0ef;
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 49%, rgba(10, 85, 199, 0.6) 49% 51%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(10, 85, 199, 0.55) 49% 51%, transparent 51%),
    linear-gradient(135deg, #f8c968, #4ea7d1);
}

.sheet-export {
  justify-self: end;
  display: grid;
  place-items: center;
  width: 58px;
  height: 42px;
  border: 1px solid #b8d0ef;
  border-radius: 6px;
  color: var(--blue-dark);
  background: #f7fbff;
  font-weight: 850;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.steps article {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  width: 16px;
  height: 16px;
  border-top: 2px solid #9cafc7;
  border-right: 2px solid #9cafc7;
  transform: translateY(-50%) rotate(45deg);
}

.steps span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue-dark);
  font-weight: 850;
}

.privacy-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  max-width: 760px;
  margin: 36px auto 0;
  padding: 20px 28px;
  border: 1px solid #c9ddf7;
  border-radius: 8px;
  background: #f7fbff;
  color: var(--ink-soft);
  text-align: center;
}

.privacy-strip strong {
  color: var(--blue-dark);
}

.boundary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.boundary div {
  max-width: 790px;
}

.boundary p {
  margin-top: 16px;
}

.download {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.download img {
  border-radius: 18px;
  box-shadow: 0 16px 38px rgba(10, 85, 199, 0.18);
}

.download h2 {
  margin-bottom: 8px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
  padding: 28px 0 38px;
  color: var(--muted);
  font-size: 14px;
}

.footer-brand {
  font-size: 21px;
  color: var(--ink);
}

.legal-page {
  width: min(100% - 48px, 880px);
  margin: 0 auto;
  padding: 76px 0 96px;
}

.legal-page h1 {
  margin: 0 0 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
}

.legal-page .lead {
  margin: 0 0 42px;
  color: var(--ink-soft);
  font-size: 20px;
  line-height: 1.55;
}

.legal-section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 12px;
  font-size: 25px;
}

.legal-section p,
.legal-section li {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.legal-section ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 48px;
  }

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

  .phone-left {
    left: 0;
  }

  .phone-main {
    left: 33%;
  }

  .feature-layout,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .workflow-visual {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px;
    padding: 28px;
  }

  .workflow-device,
  .report-sheet {
    width: min(100%, 360px);
  }

  .workflow-arrow {
    transform: rotate(90deg);
  }

  .capture-device,
  .analyze-device,
  .report-sheet {
    transform: none;
  }

  .steps article:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    position: static;
    width: min(100% - 32px, 1320px);
  }

  .nav-links {
    display: none;
  }

  .section-shell,
  .site-footer,
  .legal-page {
    width: min(100% - 32px, 1320px);
  }

  .hero {
    gap: 22px;
    padding: 30px 0 46px;
  }

  .hero h1 {
    font-size: clamp(58px, 19vw, 92px);
  }

  .hero-subtitle {
    font-size: clamp(30px, 9vw, 44px);
  }

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

  .phone-stage {
    min-height: 640px;
  }

  .phone-main {
    left: 50%;
    width: min(300px, 78vw);
    transform: translateX(-50%);
  }

  .phone-left,
  .phone-right {
    display: none;
  }

  .section-heading,
  .boundary,
  .download,
  .contact-panel,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .feature-layout,
  .steps {
    grid-template-columns: 1fr;
  }

  .workflow-visual {
    min-height: 0;
    padding: 18px;
  }

  .report-preview {
    min-height: 440px;
  }

  .report-card {
    top: 24px;
    left: 20px;
    width: calc(100% - 40px);
  }

  .report-preview img {
    right: 16%;
    bottom: -13%;
    width: 68%;
  }

  .privacy-strip {
    flex-direction: column;
  }

  .download {
    display: flex;
  }
}

@media (max-width: 480px) {
  .site-header {
    gap: 14px;
  }

  .brand {
    font-size: 19px;
  }

  .top-cta {
    min-height: 40px;
    padding: 0 12px;
    font-size: 13px;
  }

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

  .store-button,
  .primary-button,
  .secondary-button {
    width: 100%;
  }

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

  .phone-main {
    height: 548px;
  }

  .workflow-device,
  .report-sheet {
    min-height: 300px;
  }

  .workflow-device {
    padding-inline: 14px;
  }

  .workflow-card {
    width: 96px;
    height: 138px;
  }

  .mini-cross.vertical {
    height: 166px;
  }

  .mini-cross.horizontal {
    width: 150px;
  }

  .report-sheet {
    padding: 20px;
  }
}
