:root {
  --purple: #4b1f68;
  --purple-dark: #2e103f;
  --purple-soft: #f1eaf5;
  --ink: #111015;
  --muted: #625f67;
  --line: #ded8e1;
  --paper: #ffffff;
  --panel: #f7f5f8;
  --signal: #ff5c46;
  --success: #277957;
  --max: 1240px;
  --shadow: 0 28px 80px rgba(46, 16, 63, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(75, 31, 104, 0.28);
  outline-offset: 3px;
}

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: white;
  background: var(--purple-dark);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(75, 31, 104, 0.14);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(calc(100% - 40px), var(--max));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 150px;
  height: auto;
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav a {
  color: #2b2830;
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--purple);
}

.nav-actions {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--purple);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 18px;
  height: 2px;
  display: block;
  background: currentColor;
  border-radius: 999px;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  min-height: 48px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: white;
  background: var(--purple);
  border: 1px solid var(--purple);
  border-radius: 10px;
  font-weight: 760;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  background: var(--purple-dark);
  box-shadow: 0 12px 28px rgba(75, 31, 104, 0.22);
  transform: translateY(-2px);
}

.button.secondary {
  color: var(--purple);
  background: white;
  border-color: rgba(75, 31, 104, 0.42);
}

.button.secondary:hover {
  color: white;
  background: var(--purple);
}

.button.text {
  min-height: auto;
  padding: 8px 0;
  color: var(--purple);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.button.text:hover {
  color: var(--purple-dark);
  box-shadow: none;
}

[hidden] {
  display: none !important;
}

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

.section {
  padding: 96px 0;
}

.section.compact {
  padding: 64px 0;
}

.section.soft {
  background: var(--panel);
}

.section.purple {
  color: white;
  background: var(--purple);
}

.section-line {
  height: 1px;
  background: var(--purple);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--purple);
  font-size: 0.76rem;
  font-weight: 830;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.purple .eyebrow {
  color: #dbc8e7;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.03;
}

h1 {
  max-width: 930px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
}

h2 {
  max-width: 880px;
  font-size: clamp(2.4rem, 4.8vw, 4.7rem);
}

h3 {
  font-size: clamp(1.4rem, 2.1vw, 2rem);
  letter-spacing: -0.025em;
}

.lead {
  max-width: 770px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.purple .lead {
  color: #eee4f3;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 92px 0 84px;
}

.hero::before {
  content: "";
  position: absolute;
  top: -320px;
  right: -260px;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(75, 31, 104, 0.18);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 70px;
}

.hero h1 em {
  display: block;
  color: var(--purple);
  font-style: normal;
  font-weight: 500;
}

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

.hero-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-stage {
  position: relative;
  min-height: 520px;
}

.dashboard {
  width: min(100%, 650px);
  overflow: hidden;
  background: white;
  border: 1px solid rgba(75, 31, 104, 0.18);
  border-radius: 18px;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.dashboard-top {
  height: 46px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  background: var(--purple);
  font-size: 0.72rem;
  font-weight: 700;
}

.dashboard-dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  opacity: 0.65;
}

.dashboard-body {
  padding: 22px;
}

.dashboard-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.dashboard-title strong {
  font-size: 1.15rem;
}

.dashboard-kpis {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dashboard-kpi {
  padding: 14px;
  background: var(--purple-soft);
  border-radius: 10px;
}

.dashboard-kpi span {
  display: block;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
}

.dashboard-kpi b {
  display: block;
  margin-top: 4px;
  color: var(--purple);
  font-size: 1.5rem;
}

.work-list {
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.work-row {
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 0.73rem;
}

.work-row:last-child {
  border-bottom: 0;
}

.work-row b {
  color: var(--purple);
}

.status {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--purple);
  background: var(--purple-soft);
  font-weight: 720;
}

.phone {
  position: absolute;
  right: -22px;
  bottom: -34px;
  width: 210px;
  min-height: 386px;
  padding: 9px;
  color: var(--ink);
  background: #141216;
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(17, 16, 21, 0.28);
  transform: rotate(3deg);
}

.phone-screen {
  min-height: 368px;
  padding: 18px 13px;
  background: #faf9fb;
  border-radius: 24px;
}

.phone-head {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 800;
}

.phone-card {
  margin-top: 10px;
  padding: 13px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 13px;
}

.phone-card small,
.phone-card span {
  display: block;
  color: var(--muted);
  font-size: 0.6rem;
}

.phone-card strong {
  display: block;
  margin: 4px 0 10px;
  font-size: 0.84rem;
  line-height: 1.3;
}

.timer {
  margin-top: 10px;
  padding: 8px;
  color: white;
  background: var(--purple);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
}

.proof-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-grid {
  min-height: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--line);
  color: #38343c;
  font-size: 0.92rem;
  font-weight: 700;
}

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

.proof-number {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: white;
  background: var(--purple);
  border-radius: 50%;
  font-size: 0.76rem;
}

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

.section-heading p {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
}

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

.feature-card {
  min-height: 290px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
  transition: border 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  border-color: var(--purple);
  box-shadow: 0 20px 50px rgba(75, 31, 104, 0.09);
  transform: translateY(-4px);
}

.feature-index {
  margin-bottom: 36px;
  color: var(--purple);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.feature-card p {
  margin: 16px 0 24px;
  color: var(--muted);
}

.feature-card .arrow {
  margin-top: auto;
  color: var(--purple);
  font-weight: 850;
}

.flow-grid {
  position: relative;
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.flow-grid::before {
  content: "";
  position: absolute;
  top: 19px;
  right: 12.5%;
  left: 12.5%;
  height: 3px;
  background: var(--purple);
}

.flow-step {
  position: relative;
  padding-top: 58px;
}

.flow-dot {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--purple);
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 850;
}

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

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 74px;
  align-items: center;
}

.role-panel {
  padding: 42px;
  background: white;
  border: 1px solid rgba(75, 31, 104, 0.18);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.role-row {
  padding: 18px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}

.role-row:last-child {
  border-bottom: 0;
}

.role-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: white;
  background: var(--purple);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 820;
}

.role-row span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.knowledge-statement {
  padding: 58px;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.knowledge-statement blockquote {
  max-width: 900px;
  margin: 0;
  font-size: clamp(2.4rem, 5.5vw, 5.2rem);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.knowledge-statement p {
  max-width: 780px;
  margin: 34px 0 0;
  color: #e8dced;
  font-size: 1.1rem;
}

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

.security-card {
  padding: 28px;
  border-top: 3px solid var(--purple);
  background: var(--panel);
}

.security-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-action {
  margin-top: 30px;
}

.cta-panel {
  padding: 70px;
  color: white;
  background: var(--purple);
  border-radius: 22px;
}

.cta-panel .lead {
  color: #eee4f3;
}

.cta-panel .hero-actions .secondary {
  color: white;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.page-hero {
  padding: 94px 0 76px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 1060px;
  font-size: clamp(3.1rem, 6vw, 6rem);
}

.breadcrumbs {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumbs a {
  color: var(--purple);
  text-decoration: none;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 76px;
}

.prose {
  max-width: 780px;
}

.prose h2 {
  margin: 58px 0 22px;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 38px 0 14px;
}

.prose p,
.prose li {
  color: #47434b;
}

.prose ul {
  padding-left: 1.2rem;
}

.prose li + li {
  margin-top: 10px;
}

.side-card {
  position: sticky;
  top: 108px;
  padding: 28px;
  background: var(--purple-soft);
  border: 1px solid rgba(75, 31, 104, 0.16);
  border-radius: 14px;
}

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

.check-list {
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--purple);
  font-weight: 900;
}

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 70px;
}

.form-card {
  padding: 38px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

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

.field label {
  color: #322d35;
  font-size: 0.86rem;
  font-weight: 750;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  color: var(--ink);
  background: white;
  border: 1px solid #beb7c2;
  border-radius: 9px;
}

.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--purple);
  outline: 3px solid rgba(75, 31, 104, 0.14);
}

.hp-field {
  position: absolute;
  left: -9999px;
}

.form-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-status {
  margin: 18px 0 0;
  min-height: 24px;
  color: var(--muted);
  font-size: 0.9rem;
}

.form-status[data-state="success"] {
  color: var(--success);
}

.form-status[data-state="error"] {
  color: #9b2d21;
}

.form-data-notice {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.error-page {
  min-height: 100vh;
  background: var(--panel);
}

.error-main {
  min-height: 100vh;
  padding: 48px 0;
  display: grid;
  align-items: center;
}

.error-shell {
  padding: 64px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.error-shell .eyebrow {
  margin-top: 72px;
}

.error-shell h1 {
  font-size: clamp(3rem, 7vw, 6rem);
}

.site-footer {
  padding: 64px 0 36px;
  color: #eae2ee;
  background: var(--purple-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 70px;
}

.footer-brand img {
  width: 160px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 390px;
  color: #cdbed4;
}

.footer-column strong {
  display: block;
  margin-bottom: 18px;
  color: white;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  margin: 9px 0;
  color: #d8cadd;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #bba9c2;
  font-size: 0.82rem;
}

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

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

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

  .button {
    transition: none;
  }
}

@media (max-width: 1040px) {
  .nav {
    position: fixed;
    top: 78px;
    right: 20px;
    left: 20px;
    padding: 22px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    max-height: calc(100dvh - 98px);
    overflow-y: auto;
    background: white;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
  }

  .nav[data-open="true"] {
    display: flex;
  }

  .nav a {
    min-height: 44px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
  }

  .nav-actions {
    margin-top: 8px;
    padding-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    border-top: 1px solid var(--line);
  }

  .nav-actions .button {
    padding-inline: 14px;
    color: white;
  }

  .nav-actions .button.secondary {
    color: var(--purple);
  }

  .menu-toggle {
    margin-left: auto;
    display: inline-grid;
    place-items: center;
  }

  .header-actions {
    display: none;
  }

  .hero-grid,
  .split,
  .form-shell {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 52px;
  }

  .product-stage {
    width: min(100%, 760px);
    margin: 0 auto;
  }

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

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

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

  .side-card {
    position: static;
  }

  .form-shell {
    gap: 52px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .header-inner,
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand img {
    width: 128px;
  }

  .header-actions .button:not(.secondary) {
    display: none;
  }

  .section {
    padding: 64px 0;
  }

  .section.compact {
    padding: 48px 0;
  }

  .hero {
    padding: 58px 0 62px;
  }

  .hero h1 {
    min-width: 0;
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .lead {
    margin-top: 20px;
    font-size: 1.08rem;
  }

  .hero-actions {
    margin-top: 30px;
    align-items: stretch;
    flex-direction: column;
  }

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

  .button.text {
    min-height: 44px;
    padding-block: 12px;
  }

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

  .phone {
    right: -4px;
    width: 160px;
    min-height: 306px;
  }

  .phone-screen {
    min-height: 288px;
    padding: 14px 10px;
  }

  .dashboard-body {
    padding: 14px;
  }

  .work-row {
    grid-template-columns: 48px 1fr;
  }

  .work-row .status {
    display: none;
  }

  .proof-grid,
  .feature-grid,
  .flow-grid,
  .security-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-item {
    padding: 20px 18px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .section-heading {
    margin-bottom: 34px;
    align-items: start;
    flex-direction: column;
    gap: 22px;
  }

  .flow-grid::before {
    top: 0;
    bottom: 0;
    left: 19px;
    width: 3px;
    height: auto;
  }

  .flow-step {
    padding: 0 0 30px 60px;
  }

  .feature-card {
    min-height: 220px;
    padding: 24px;
  }

  .feature-index {
    margin-bottom: 28px;
  }

  .role-panel,
  .knowledge-statement,
  .cta-panel,
  .form-card {
    padding: 30px 24px;
  }

  .page-hero {
    padding: 64px 0 54px;
  }

  .page-hero h1 {
    font-size: clamp(2.35rem, 10.5vw, 3.2rem);
  }

  .breadcrumbs {
    margin-bottom: 26px;
  }

  .content-grid {
    gap: 44px;
  }

  .prose h2 {
    margin: 48px 0 18px;
    font-size: clamp(1.85rem, 8.5vw, 2.6rem);
  }

  .form-shell {
    gap: 38px;
  }

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

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

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

  .error-main {
    padding: 14px 0;
  }

  .error-shell {
    padding: 30px 24px;
  }

  .error-shell .eyebrow {
    margin-top: 54px;
  }

  .error-shell h1 {
    font-size: clamp(2.4rem, 12vw, 3.2rem);
  }

  .footer-grid {
    gap: 40px;
  }

  .footer-column a {
    min-height: 44px;
    margin: 0;
    display: flex;
    align-items: center;
  }

  .breadcrumbs a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .footer-bottom {
    margin-top: 40px;
  }

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

@media (max-width: 430px) {
  .header-inner {
    min-height: 70px;
    gap: 16px;
  }

  .nav {
    top: 70px;
    right: 14px;
    left: 14px;
  }

  .nav-actions {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 124px;
  }

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

  .phone {
    right: -8px;
    width: 148px;
  }
}
