@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fonts/manrope-latin.woff2") format("woff2");
}

:root {
  /* Neutros: Radix Colors "sand" v3.0.0, misma escala que el panel
     (ver css/tokens.css) — así la landing y la app se leen como un
     solo producto. El naranja NO viene de Radix, se deja igual. */
  --black: #111110;       /* sand-dark-1 */
  --black-soft: #191918;  /* sand-dark-2 */
  --panel: #222221;       /* sand-dark-3 */
  --panel-soft: #2a2a28;  /* sand-dark-4 */
  --white: #fff;
  --paper: #f9f9f8;       /* sand-2 */
  --muted: #bcbbb5;       /* sand-8 */
  --ink: #21201c;         /* sand-12 */
  --orange: #ff6b00;
  --orange-bright: #ff7b16;
  --orange-dark: #b73b00;
  --cream: #f3eee5;
  --line-light: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(33, 32, 28, 0.14);
  --shell: min(1440px, calc(100vw - 32px));
  --sans: "Manrope", "Segoe UI Variable", "Segoe UI", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 450;
  letter-spacing: -0.02em;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-decoration: none;
}

button {
  padding: 0;
}

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

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--orange-bright);
  outline-offset: 4px;
}

::selection {
  background: var(--orange);
  color: var(--white);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 11px 16px;
  border-radius: 12px;
  background: var(--white);
  color: var(--black);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

/* Navigation */

.site-header {
  --scroll-progress: 0;
  position: fixed;
  top: 10px;
  right: 0;
  left: 0;
  z-index: 100;
  width: var(--shell);
  margin-inline: auto;
}

.nav-shell {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  padding: 8px 9px 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(17, 19, 17, 0.97), rgba(7, 9, 8, 0.97));
  color: var(--white);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.22);
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.nav-shell::after {
  position: absolute;
  right: 15px;
  bottom: -1px;
  left: 15px;
  height: 2px;
  border-radius: 99px;
  background: var(--orange);
  content: "";
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
}

.site-header.is-scrolled .nav-shell {
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(17, 19, 17, 0.99), rgba(7, 9, 8, 0.99));
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 10px;
}

.brand-icon {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  overflow: hidden;
  border-radius: 13px;
  background: #ff8c39;
  box-shadow: 0 9px 22px rgba(255, 107, 0, 0.24);
}

.brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-word {
  display: grid;
  align-items: baseline;
  grid-template-columns: auto auto;
}

.brand-word b,
.brand-word strong {
  font-size: 0.94rem;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.brand-word strong {
  color: var(--orange-bright);
}

.brand-word small {
  display: none;
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.5rem;
  font-weight: 760;
  letter-spacing: 0.11em;
}

.desktop-nav,
.login-link,
.nav-cta {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 7px;
}

.menu-trigger {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  background: var(--white);
  cursor: pointer;
}

.menu-trigger span {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--black);
  grid-area: 1 / 1;
  transition: transform 220ms var(--ease);
}

.menu-trigger span:first-child {
  transform: translateY(-4px);
}

.menu-trigger span:last-child {
  transform: translateY(4px);
}

.menu-trigger[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-trigger[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  z-index: 1;
  display: grid;
  visibility: hidden;
  overflow: hidden;
  padding: 17px;
  border: 1px solid var(--line-dark);
  border-radius: 19px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(-12px) scale(0.985);
  transition:
    opacity 220ms ease,
    transform 260ms var(--ease),
    visibility 220ms;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mobile-menu > a:not(.mobile-cta) {
  display: grid;
  min-height: 59px;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  font-size: 1rem;
  font-weight: 680;
  grid-template-columns: 40px 1fr;
}

.mobile-menu > a > span:first-child {
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.mobile-cta {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
  padding: 6px 6px 6px 18px;
  border-radius: 15px;
  background: var(--black);
  color: var(--white);
  font-size: 0.83rem;
  font-weight: 760;
}

.mobile-cta b {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 12px;
  background: var(--orange);
}

/* Hero */

.hero {
  position: relative;
  min-height: 1390px;
  overflow: hidden;
  padding: 135px 16px 72px;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.14), transparent 24%),
    linear-gradient(145deg, #070908 0%, #0a0c0b 60%, #0d0a08 100%);
  color: var(--white);
  isolation: isolate;
}

.hero-light {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(50px);
}

.hero-light-one {
  top: -90px;
  right: -120px;
  width: 440px;
  height: 440px;
  background: rgba(255, 107, 0, 0.22);
}

.hero-light-two {
  right: 20%;
  bottom: -120px;
  width: 360px;
  height: 360px;
  background: rgba(255, 107, 0, 0.08);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at 72% 45%, black, transparent 55%);
}

.hero-shell {
  width: min(1480px, 100%);
  margin-inline: auto;
}

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

.hero-badge {
  display: inline-flex;
  min-height: 29px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 107, 0, 0.75);
  border-radius: 7px;
  color: var(--orange-bright);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.08em;
  gap: 7px;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.12);
  animation: pulse 2.3s ease-in-out infinite;
}

.hero h1 {
  max-width: 680px;
  margin-top: 30px;
  padding-bottom: 0.14em;
  overflow: visible;
  font-size: clamp(3.4rem, 15vw, 6.8rem);
  font-weight: 760;
  letter-spacing: -0.075em;
  line-height: 0.96;
}

.hero h1 span {
  display: block;
  padding-bottom: 0.12em;
  overflow: visible;
  background: linear-gradient(115deg, #ff8a2f, #ff5700 70%);
  background-clip: text;
  color: transparent;
}

.hero-description {
  max-width: 560px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.96rem;
  line-height: 1.7;
}

.hero-actions {
  display: grid;
  max-width: 430px;
  margin-top: 28px;
  gap: 10px;
}

.primary-action {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  padding: 6px 6px 6px 19px;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange));
  color: var(--white);
  box-shadow: 0 16px 32px rgba(255, 107, 0, 0.18);
}

.primary-action > span {
  display: grid;
}

.primary-action small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.64rem;
  font-weight: 780;
  letter-spacing: 0.08em;
}

.primary-action b {
  margin-top: 2px;
  font-size: 0.86rem;
  font-weight: 770;
}

.primary-action > i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 12px;
  background: rgba(8, 10, 9, 0.86);
  font-style: normal;
  transition: transform 230ms var(--ease);
}

.secondary-action {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.82rem;
  font-weight: 700;
  gap: 9px;
}

.secondary-action > i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 0.58rem;
  font-style: normal;
}

.hero-benefits {
  display: grid;
  margin-top: 30px;
  border-top: 1px solid var(--line-light);
}

.hero-benefits li {
  display: grid;
  min-height: 66px;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 38px 1fr;
}

.hero-benefits li > i {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border: 1px solid rgba(255, 107, 0, 0.75);
  border-radius: 50%;
  color: var(--orange-bright);
  font-size: 0.72rem;
  font-style: normal;
}

.hero-benefits li > span {
  display: grid;
}

.hero-benefits b {
  font-size: 0.76rem;
  font-weight: 720;
}

.hero-benefits small {
  color: rgba(255, 255, 255, 0.43);
  font-size: 0.68rem;
}

/* Product rig */

.product-rig {
  --pointer-x: 0;
  --pointer-y: 0;
  position: absolute;
  right: 50%;
  bottom: 40px;
  z-index: 2;
  width: 610px;
  height: 560px;
  transform: translateX(50%);
}

.orange-orb {
  position: absolute;
  top: 0;
  right: 0;
  width: 76%;
  height: 76%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 32%, #ff9b43, transparent 12%),
    linear-gradient(145deg, #ff8b24, #e74700 72%);
  box-shadow: 0 0 90px rgba(255, 107, 0, 0.25);
  transform: translate3d(calc(var(--pointer-x) * 5px), calc(var(--pointer-y) * 5px), 0);
  transition: transform 160ms ease-out;
}

.orange-orb::after {
  position: absolute;
  inset: 11%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 26px rgba(255, 255, 255, 0.025);
}

.orbit-dots {
  position: absolute;
  top: 9%;
  right: 5%;
  z-index: 2;
  display: grid;
  width: 100px;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.orbit-dots i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.dashboard-device {
  position: absolute;
  top: 70px;
  left: 7%;
  z-index: 4;
  width: 83%;
  aspect-ratio: 1.45;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.27);
  border-radius: 17px;
  background: linear-gradient(145deg, #292c2a, #080908);
  box-shadow:
    0 38px 65px rgba(0, 0, 0, 0.54),
    inset 0 1px rgba(255, 255, 255, 0.3);
  transform:
    perspective(900px)
    rotateX(calc(3deg + var(--pointer-y) * -1deg))
    rotateY(calc(-5deg + var(--pointer-x) * 1.4deg));
  transition: transform 180ms ease-out;
}

.device-camera {
  position: absolute;
  top: 3px;
  left: 50%;
  z-index: 3;
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: #454947;
  transform: translateX(-50%);
}

.dashboard-screen {
  display: grid;
  height: 100%;
  overflow: hidden;
  border-radius: 11px;
  background: #121513;
  grid-template-columns: 24% 1fr;
}

.mock-sidebar {
  display: grid;
  padding: 11px 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: #0e100f;
  grid-template-rows: auto 1fr auto;
}

.mock-brand {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mock-brand img {
  width: 18px;
  height: 18px;
  border-radius: 5px;
}

.mock-brand b,
.mock-brand small {
  font-size: 0.38rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.mock-brand small {
  color: var(--orange);
}

.mock-sidebar nav {
  display: grid;
  align-content: start;
  margin-top: 16px;
  gap: 3px;
}

.mock-sidebar nav span {
  display: flex;
  min-height: 22px;
  align-items: center;
  padding: 0 7px;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.47);
  font-size: 0.36rem;
  font-weight: 600;
  gap: 7px;
}

.mock-sidebar nav span.is-active {
  background: linear-gradient(120deg, var(--orange), #df4b00);
  color: var(--white);
  box-shadow: 0 5px 12px rgba(255, 107, 0, 0.2);
}

.mock-sidebar nav i {
  width: 9px;
  color: currentColor;
  font-size: 0.48rem;
  font-style: normal;
  text-align: center;
}

.mock-user {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mock-user > i {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 6px;
  background: rgba(255, 107, 0, 0.17);
  color: var(--orange);
  font-size: 0.32rem;
  font-style: normal;
}

.mock-user > span {
  display: grid;
}

.mock-user b,
.mock-user small {
  font-size: 0.32rem;
}

.mock-user small {
  color: rgba(255, 255, 255, 0.62);
}

.mock-main {
  min-width: 0;
  padding: 11px;
}

.mock-main > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mock-main > header > div {
  display: grid;
}

.mock-main > header small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.31rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.mock-main > header b {
  margin-top: 1px;
  font-size: 0.52rem;
}

.mock-main > header > span {
  display: flex;
  gap: 5px;
}

.mock-main > header > span i {
  width: 11px;
  height: 11px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

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

.mock-kpis article {
  min-width: 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 7px;
  background: #1b1e1c;
}

.mock-kpis small {
  display: block;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.26rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mock-kpis strong {
  display: block;
  margin-top: 3px;
  font-size: 0.63rem;
}

.mock-kpis em {
  display: block;
  margin-top: 2px;
  color: #7bcf78;
  font-size: 0.27rem;
  font-style: normal;
}

.mock-analytics {
  display: grid;
  margin-top: 6px;
  grid-template-columns: 1.45fr 0.8fr;
  gap: 6px;
}

.mock-analytics article,
.mock-orders {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 7px;
  background: #1a1d1b;
}

.mock-analytics article > header,
.mock-orders > header {
  display: flex;
  min-height: 22px;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px;
}

.mock-analytics header b,
.mock-orders header b {
  font-size: 0.34rem;
}

.mock-analytics header small {
  padding: 3px 5px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.27rem;
}

.chart-area {
  position: relative;
  height: 76px;
  margin: 0 8px 5px;
}

.chart-area::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 25%;
  content: "";
}

.chart-area svg {
  position: absolute;
  inset: 6px 0 0;
  width: 100%;
  height: calc(100% - 6px);
}

.payment-body {
  display: grid;
  min-height: 76px;
  align-items: center;
  padding: 5px 8px 8px;
  grid-template-columns: 54px 1fr;
  gap: 7px;
}

.donut {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--orange) 0 45%, #4aa37d 45% 83%, #5470d6 83%);
}

.donut::before {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: #1a1d1b;
  content: "";
  grid-area: 1 / 1;
}

.donut span {
  z-index: 1;
  display: grid;
  font-size: 0.42rem;
  text-align: center;
  grid-area: 1 / 1;
}

.donut small {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.22rem;
}

.payment-body ul {
  display: grid;
  gap: 4px;
}

.payment-body li {
  display: grid;
  align-items: center;
  color: rgba(255, 255, 255, 0.53);
  font-size: 0.24rem;
  grid-template-columns: 5px 1fr auto;
  gap: 4px;
}

.payment-body li i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--orange);
}

.payment-body li:nth-child(2) i {
  background: #4aa37d;
}

.payment-body li:nth-child(3) i {
  background: #5470d6;
}

.payment-body li b {
  color: rgba(255, 255, 255, 0.75);
  font-size: inherit;
}

.mock-orders {
  margin-top: 6px;
}

.mock-orders header a {
  color: var(--orange);
  font-size: 0.28rem;
}

.mock-orders > div {
  display: grid;
  min-height: 17px;
  align-items: center;
  padding: 0 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.27rem;
  grid-template-columns: 34px 1fr 42px 44px;
}

.mock-orders > div b {
  color: rgba(255, 255, 255, 0.73);
  font-size: inherit;
}

.mock-orders > div em {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
}

.mock-orders > div small {
  padding: 2px 3px;
  border-radius: 3px;
  background: rgba(255, 167, 60, 0.12);
  color: #ffb358;
  font-size: 0.22rem;
  text-align: center;
}

.mock-orders > div small.ready,
.mock-orders > div small.paid {
  background: rgba(85, 182, 105, 0.12);
  color: #6fd183;
}

.device-base {
  position: absolute;
  right: 4%;
  bottom: -12%;
  left: 4%;
  height: 13%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0 0 20px 20px;
  background: linear-gradient(#202321, #0b0d0c);
  box-shadow: 0 22px 34px rgba(0, 0, 0, 0.4);
}

.device-base i {
  position: absolute;
  top: 22%;
  left: 50%;
  width: 15%;
  height: 12%;
  border-radius: 99px;
  background: #070807;
  transform: translateX(-50%);
}

.receipt-printer {
  position: absolute;
  bottom: 15px;
  left: 1%;
  z-index: 6;
  width: 145px;
  height: 142px;
  transform: translate3d(calc(var(--pointer-x) * -6px), calc(var(--pointer-y) * -5px), 0);
}

.receipt {
  position: absolute;
  top: 0;
  left: 31px;
  z-index: 1;
  display: grid;
  width: 83px;
  height: 76px;
  padding: 9px;
  background: #f7f3e9;
  color: #171917;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.22);
  transform: rotate(-3deg);
}

.receipt span,
.receipt b {
  font-size: 0.3rem;
  font-weight: 800;
  text-align: center;
}

.receipt i {
  height: 2px;
  background: #c6c1b8;
}

.printer-slot {
  position: absolute;
  top: 62px;
  right: 13px;
  left: 13px;
  z-index: 2;
  height: 19px;
  border-radius: 8px;
  background: #060706;
}

.printer-body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 17px 17px 11px 11px;
  background: linear-gradient(145deg, #272a28, #0e100f);
  box-shadow: 0 20px 32px rgba(0, 0, 0, 0.42);
}

.printer-body i {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #64b879;
  box-shadow: 0 0 8px rgba(100, 184, 121, 0.55);
}

.printer-body span {
  position: absolute;
  right: 19px;
  bottom: 14px;
  left: 19px;
  height: 5px;
  border-radius: 3px;
  background: #070807;
}

.payment-terminal {
  position: absolute;
  right: 0;
  bottom: 2px;
  z-index: 7;
  width: 118px;
  min-height: 190px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: linear-gradient(145deg, #252826, #0c0e0d);
  box-shadow: 0 24px 38px rgba(0, 0, 0, 0.5);
  transform:
    translate3d(calc(var(--pointer-x) * 7px), calc(var(--pointer-y) * 6px), 0)
    rotate(5deg);
}

.payment-terminal > header {
  display: flex;
  align-items: center;
  gap: 4px;
}

.payment-terminal > header img {
  width: 16px;
  height: 16px;
  border-radius: 5px;
}

.payment-terminal > header b {
  font-size: 0.34rem;
}

.terminal-screen {
  display: grid;
  min-height: 62px;
  align-content: center;
  margin-top: 8px;
  padding: 8px;
  border-radius: 8px;
  background: #171a18;
}

.terminal-screen small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.26rem;
}

.terminal-screen strong {
  margin-top: 1px;
  font-size: 0.76rem;
}

.terminal-screen span {
  margin-top: 3px;
  color: #6fd183;
  font-size: 0.24rem;
}

.terminal-keys {
  display: grid;
  margin-top: 9px;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.terminal-keys i {
  height: 13px;
  border-radius: 4px;
  background: #3b3f3c;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.09);
}

.payment-terminal footer {
  display: grid;
  margin-top: 7px;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.payment-terminal footer i {
  height: 12px;
  border-radius: 4px;
  background: #ce3c32;
}

.payment-terminal footer i:nth-child(2) {
  background: #e7bc46;
}

.payment-terminal footer i:nth-child(3) {
  background: #4ca66d;
}

.hero-scroll {
  display: none;
}

/* Business strip */

.business-strip {
  position: relative;
  z-index: 4;
  padding: 38px 16px;
  background: var(--black-soft);
  color: var(--white);
}

.business-strip-title {
  display: flex;
  width: min(1250px, 100%);
  align-items: center;
  margin-inline: auto;
  gap: 13px;
}

.business-strip-title span {
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  flex: 1;
}

.business-strip-title p {
  color: var(--orange-bright);
  font-size: 0.67rem;
  font-weight: 790;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.business-strip > ul {
  display: flex;
  width: min(1250px, 100%);
  overflow-x: auto;
  margin: 25px auto 0;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.business-strip > ul::-webkit-scrollbar {
  display: none;
}

.business-strip li {
  display: grid;
  min-width: 210px;
  min-height: 62px;
  align-items: center;
  padding: 0 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  grid-template-columns: 47px 1fr;
  scroll-snap-align: start;
}

.business-strip li > i {
  display: grid;
  width: 37px;
  height: 37px;
  place-items: center;
  border: 1px solid rgba(255, 107, 0, 0.7);
  border-radius: 11px;
  color: var(--orange-bright);
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 780;
}

.business-strip li > span {
  display: grid;
}

.business-strip li b {
  font-size: 0.78rem;
}

.business-strip li small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.65rem;
}

/* Shared sections */

.product-section,
.functions-section,
.pricing-section {
  padding: 92px 0;
}

.section-heading > p,
.functions-heading > p,
.pricing-heading > div > p {
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.section-heading h2,
.functions-heading h2,
.pricing-heading h2,
.closing-copy h2 {
  margin-top: 19px;
  font-size: clamp(3rem, 12vw, 7rem);
  font-weight: 720;
  letter-spacing: -0.074em;
  line-height: 0.93;
}

.section-heading h2 span,
.functions-heading h2 span,
.pricing-heading h2 span,
.closing-copy h2 span {
  display: block;
  padding-bottom: 0.12em;
  overflow: visible;
  color: var(--orange-dark);
  font-weight: 500;
}

.section-heading > div {
  display: grid;
  margin-top: 24px;
  gap: 18px;
}

.section-heading > div > p {
  max-width: 510px;
  color: rgba(18, 21, 19, 0.62);
  font-size: 0.9rem;
  line-height: 1.65;
}

.section-heading > div > a {
  display: flex;
  width: fit-content;
  min-height: 45px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 740;
  gap: 14px;
}

.section-heading > div > a span {
  color: var(--orange-dark);
}

/* Product section */

.product-section {
  background: var(--paper);
}

.product-tabs {
  display: flex;
  overflow-x: auto;
  margin-top: 54px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--line-dark);
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-tabs::-webkit-scrollbar {
  display: none;
}

.product-tabs button {
  display: grid;
  min-width: 155px;
  min-height: 82px;
  align-items: center;
  padding: 0 16px;
  border: 0;
  border-right: 1px solid var(--line-dark);
  background: transparent;
  color: #666a67;
  cursor: pointer;
  text-align: left;
  grid-template-columns: 35px 1fr;
  scroll-snap-align: start;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.product-tabs button span {
  color: var(--orange-dark);
  font-size: 0.69rem;
  font-weight: 790;
}

.product-tabs button.is-active {
  background: var(--ink);
  color: var(--white);
}

.product-tabs button.is-active span {
  color: var(--orange-bright);
}

.product-panel {
  display: grid;
  overflow: hidden;
  margin-top: 18px;
  border-radius: 26px;
  background: var(--cream);
}

.product-panel-copy {
  padding: 34px 25px;
}

.product-panel-copy > p:first-child {
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.product-panel-copy h3 {
  max-width: 580px;
  margin-top: 18px;
  font-size: clamp(2.8rem, 12vw, 6.6rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.product-panel-copy > p:nth-of-type(2) {
  max-width: 520px;
  margin-top: 20px;
  color: rgba(18, 21, 19, 0.6);
  font-size: 0.88rem;
  line-height: 1.65;
}

.product-panel-copy ul {
  display: flex;
  margin-top: 24px;
  flex-wrap: wrap;
  gap: 7px;
}

.product-panel-copy li {
  padding: 7px 10px;
  border: 1px solid var(--line-dark);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  font-weight: 680;
}

.feature-window {
  min-width: 0;
  margin: 0 10px 10px;
  padding: 8px;
  border-radius: 22px;
  background: #0c0f0d;
  box-shadow: 0 24px 55px rgba(15, 17, 15, 0.18);
}

.feature-window > header {
  display: grid;
  min-height: 53px;
  align-items: center;
  padding: 0 11px;
  color: var(--white);
  grid-template-columns: 70px 1fr auto;
}

.feature-window > header > span {
  display: flex;
  gap: 5px;
}

.feature-window > header > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff6b5d;
}

.feature-window > header > span i:nth-child(2) {
  background: #f0bd4e;
}

.feature-window > header > span i:nth-child(3) {
  background: #5abf75;
}

.feature-window > header b {
  font-size: 0.75rem;
}

.feature-window > header small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
}

.feature-canvas {
  position: relative;
  display: grid;
  min-height: 480px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 17px;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 107, 0, 0.17), transparent 28%),
    #151917;
  color: var(--white);
}

.feature-canvas::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.feature-spotlight,
.feature-list,
.feature-status {
  position: relative;
  z-index: 1;
}

.feature-spotlight {
  align-self: start;
}

.feature-spotlight p {
  color: var(--orange-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.feature-spotlight strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(4rem, 18vw, 8rem);
  font-weight: 690;
  letter-spacing: -0.09em;
  line-height: 0.84;
}

.feature-spotlight small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

.feature-list {
  display: grid;
  align-self: center;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.feature-list > span {
  display: grid;
  min-height: 54px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  grid-template-columns: 40px 1fr auto;
}

.feature-list > span i {
  color: var(--orange-bright);
  font-style: normal;
  font-weight: 760;
}

.feature-list > span b {
  color: rgba(255, 255, 255, 0.8);
  font-size: inherit;
}

.feature-list > span em {
  color: var(--white);
  font-style: normal;
}

.feature-status {
  display: flex;
  min-height: 55px;
  align-items: center;
  align-self: end;
  justify-content: space-between;
  margin-top: 20px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.68rem;
}

.feature-status > i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #65bd78;
  box-shadow: 0 0 0 5px rgba(101, 189, 120, 0.09);
}

.feature-status > span {
  margin-right: auto;
  margin-left: 10px;
  color: rgba(255, 255, 255, 0.56);
}

.feature-status > b {
  color: var(--orange-bright);
  font-size: inherit;
}

.product-panel.is-changing .product-panel-copy > *,
.product-panel.is-changing .feature-canvas > * {
  animation: swap 420ms var(--ease);
}

/* Functions */

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

.functions-heading > p {
  color: var(--orange-bright);
}

.functions-heading h2 span {
  color: rgba(255, 255, 255, 0.46);
}

.function-rows {
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.function-row {
  position: relative;
  display: grid;
  min-height: 260px;
  align-content: center;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  gap: 24px;
  transition:
    padding 260ms var(--ease),
    background 180ms ease;
}

.function-row > span {
  color: var(--orange-bright);
  font-size: 0.72rem;
  font-weight: 790;
  letter-spacing: 0.08em;
}

.function-row h3 {
  font-size: clamp(2.6rem, 12vw, 6rem);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.function-row > div > p {
  max-width: 510px;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.82rem;
  line-height: 1.6;
}

.function-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.function-row li {
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 99px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 660;
}

.function-row > i {
  position: absolute;
  top: 32px;
  right: 0;
  color: rgba(255, 255, 255, 0.24);
  font-size: 1.4rem;
  font-style: normal;
  transition:
    color 180ms ease,
    transform 240ms var(--ease);
}

.function-proof {
  display: grid;
  margin-top: 56px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  gap: 20px;
}

.function-proof > span {
  color: var(--orange-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.function-proof ul {
  display: grid;
}

.function-proof li {
  display: flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.76rem;
}

.function-proof li::before {
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

/* Pricing */

.pricing-section {
  background: var(--cream);
}

.pricing-heading {
  display: grid;
  gap: 30px;
}

.billing-switch {
  display: inline-flex;
  width: fit-content;
  padding: 5px;
  border: 1px solid var(--line-dark);
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.48);
  gap: 4px;
}

.billing-switch button {
  min-height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 99px;
  background: transparent;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 740;
}

.billing-switch button small {
  display: none;
}

.billing-switch button.is-active {
  background: var(--ink);
  color: var(--white);
}

.plan-list {
  display: grid;
  margin-top: 55px;
  gap: 10px;
}

.plan-row {
  display: grid;
  padding: 25px;
  border: 1px solid var(--line-dark);
  border-radius: 23px;
  background: var(--white);
  gap: 28px;
  transition:
    transform 250ms var(--ease),
    box-shadow 250ms ease;
}

.plan-featured {
  background: linear-gradient(135deg, #ff7919, #ff5a00);
  color: var(--ink);
}

.plan-dark {
  border-color: transparent;
  background: var(--black);
  color: var(--white);
}

.plan-name small {
  color: var(--orange-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.plan-featured .plan-name small {
  color: var(--ink);
}

.plan-dark .plan-name small {
  color: var(--orange-bright);
}

.plan-name h3 {
  margin-top: 8px;
  font-size: clamp(3.5rem, 17vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.86;
}

.plan-row > ul {
  border-top: 1px solid currentColor;
}

.plan-row > ul li {
  display: flex;
  min-height: 45px;
  align-items: center;
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
  opacity: 0.7;
}

.plan-price > span {
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.plan-price > p {
  display: flex;
  align-items: flex-start;
  margin-top: 6px;
}

.plan-price sup {
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 780;
}

.plan-price strong {
  font-size: clamp(4.7rem, 20vw, 7.5rem);
  font-weight: 690;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.plan-price p > small {
  align-self: flex-end;
  margin-bottom: 4px;
  font-size: 0.63rem;
  font-weight: 700;
  line-height: 1.2;
}

.plan-price > em {
  display: block;
  margin-top: 9px;
  font-size: 0.72rem;
  font-style: normal;
  opacity: 0.6;
}

.plan-action {
  display: flex;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  align-self: end;
  padding: 5px 5px 5px 16px;
  border: 1px solid currentColor;
  border-radius: 15px;
  font-size: 0.77rem;
  font-weight: 750;
}

.plan-action i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 11px;
  background: var(--ink);
  color: var(--white);
  font-style: normal;
  transition: transform 230ms var(--ease);
}

.plan-dark .plan-action i {
  background: var(--orange);
}

.pricing-note {
  margin-top: 23px;
  color: rgba(18, 21, 19, 0.64);
  font-size: 0.75rem;
  font-weight: 650;
  text-align: center;
}

/* Closing */

.closing-section {
  position: relative;
  display: grid;
  min-height: 760px;
  align-items: center;
  overflow: hidden;
  padding: 100px 16px;
  background: var(--black);
  color: var(--white);
  isolation: isolate;
}

.closing-glow {
  position: absolute;
  right: -150px;
  bottom: -160px;
  z-index: -1;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow:
    0 0 100px rgba(255, 107, 0, 0.24),
    inset 0 0 0 55px rgba(255, 255, 255, 0.03);
}

.closing-copy {
  width: min(1250px, 100%);
  margin-inline: auto;
}

.closing-copy > p {
  color: var(--orange-bright);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.closing-copy h2 span {
  color: var(--orange-bright);
}

.closing-action {
  display: flex;
  width: min(330px, 100%);
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  margin-top: 36px;
  padding: 6px 6px 6px 19px;
  border-radius: 15px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.83rem;
  font-weight: 760;
}

.closing-action i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 12px;
  background: var(--orange);
  color: var(--white);
  font-style: normal;
  transition: transform 230ms var(--ease);
}

.closing-logo {
  position: absolute;
  right: -70px;
  bottom: -60px;
  z-index: -1;
  display: grid;
  width: 270px;
  height: 270px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.closing-logo > i {
  position: absolute;
  inset: 18%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.closing-logo > i:nth-child(2) {
  inset: 34%;
}

.closing-logo > span {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.12);
  border-radius: 25px;
  background: #ff8c39;
}

.closing-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */

.site-footer {
  padding: 76px 18px 24px;
  background: #050605;
  color: var(--white);
}

.footer-main,
.footer-bottom {
  width: min(1380px, 100%);
  margin-inline: auto;
}

.footer-main {
  display: grid;
  gap: 38px;
}

.footer-brand > p {
  max-width: 290px;
  margin-top: 17px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
}

.footer-main nav {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-main nav > span {
  margin-bottom: 4px;
  color: var(--orange-bright);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.footer-main nav a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

.footer-bottom {
  display: grid;
  margin-top: 52px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  gap: 9px;
}

.system-status {
  display: flex;
  align-items: center;
  gap: 7px;
}

.system-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #65bd78;
  box-shadow: 0 0 0 4px rgba(101, 189, 120, 0.1);
}

.noscript-note {
  position: fixed;
  right: 12px;
  bottom: 12px;
  left: 12px;
  z-index: 200;
  padding: 14px 18px;
  border-radius: 13px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.25);
  font-size: 0.8rem;
}

/* Motion */

.reveal.is-pending {
  clip-path: inset(0 0 7% 0);
  transform: translateY(25px);
  transition:
    clip-path 760ms var(--ease),
    transform 760ms var(--ease);
}

.reveal.is-pending.is-visible {
  clip-path: inset(0);
  transform: translateY(0);
}

body.is-ready .hero-badge {
  animation: heroUp 580ms 80ms var(--ease) backwards;
}

body.is-ready .hero h1 {
  animation: heroUp 800ms 140ms var(--ease) backwards;
}

body.is-ready .hero-description,
body.is-ready .hero-actions {
  animation: heroUp 700ms 230ms var(--ease) backwards;
}

body.is-ready .hero-benefits {
  animation: heroUp 650ms 330ms var(--ease) backwards;
}

body.is-ready .product-rig {
  animation: rigIn 950ms 260ms var(--ease) backwards;
}

@keyframes heroUp {
  from {
    transform: translateY(28px);
  }
}

@keyframes rigIn {
  from {
    transform: translate(50%, 36px) scale(0.97);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.83);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes swap {
  from {
    filter: blur(3px);
    transform: translateY(11px);
  }
}

/* Tablet */

@media (min-width: 680px) {
  :root {
    --shell: min(1440px, calc(100vw - 54px));
  }

  .site-header {
    top: 14px;
  }

  .brand-word small {
    display: block;
  }

  .login-link,
  .nav-cta {
    display: flex;
  }

  .login-link {
    min-height: 48px;
    align-items: center;
    padding: 0 10px;
    font-size: 0.77rem;
    font-weight: 700;
  }

  .nav-cta {
    min-height: 48px;
    align-items: center;
    padding: 5px 5px 5px 16px;
    border-radius: 13px;
    background: linear-gradient(135deg, var(--orange-bright), var(--orange));
    font-size: 0.77rem;
    font-weight: 760;
    gap: 12px;
    white-space: nowrap;
  }

  .nav-cta i {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 10px;
    background: rgba(8, 10, 9, 0.86);
    font-style: normal;
  }

  .hero {
    min-height: 1450px;
    padding: 160px 28px 80px;
  }

  .hero h1 {
    font-size: clamp(5.8rem, 13vw, 7.8rem);
  }

  .hero-actions {
    max-width: 560px;
    grid-template-columns: 1fr 0.8fr;
  }

  .hero-benefits {
    max-width: 680px;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-benefits li {
    padding-left: 13px;
    border-right: 1px solid var(--line-light);
    border-bottom: 0;
  }

  .hero-benefits li:first-child {
    padding-left: 0;
  }

  .hero-benefits li:last-child {
    border-right: 0;
  }

  .product-rig {
    bottom: 35px;
    width: 720px;
    height: 650px;
  }

  .mock-sidebar nav span {
    min-height: 27px;
    font-size: 0.41rem;
  }

  .mock-main {
    padding: 13px;
  }

  .mock-kpis article {
    padding: 10px;
  }

  .mock-kpis strong {
    font-size: 0.75rem;
  }

  .chart-area {
    height: 90px;
  }

  .payment-body {
    min-height: 90px;
  }

  .receipt-printer {
    width: 170px;
    height: 164px;
  }

  .payment-terminal {
    width: 135px;
    min-height: 214px;
  }

  .business-strip > ul {
    justify-content: center;
  }

  .section-heading > div {
    align-items: end;
    grid-template-columns: 1fr auto;
  }

  .product-panel-copy {
    padding: 44px;
  }

  .feature-window {
    margin: 0 16px 16px;
  }

  .feature-canvas {
    min-height: 540px;
    padding: 34px;
  }

  .function-proof {
    align-items: center;
    grid-template-columns: 180px 1fr;
  }

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

  .billing-switch button small {
    display: inline;
    margin-left: 5px;
    color: #ffc375;
    font-size: 0.66rem;
  }

  .footer-main {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }

  .footer-bottom {
    align-items: center;
    grid-template-columns: 1fr auto auto;
    gap: 28px;
  }
}

/* Desktop */

@media (min-width: 960px) {
  .nav-shell {
    min-height: 70px;
    padding-left: 13px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 31px;
  }

  .desktop-nav a {
    position: relative;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.76rem;
    font-weight: 690;
  }

  .desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    border-radius: 99px;
    background: var(--orange);
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms var(--ease);
  }

  .menu-trigger,
  .mobile-menu {
    display: none;
  }

  .hero {
    min-height: 900px;
    padding: 175px max(4vw, 42px) 90px;
  }

  .hero-shell {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(420px, 0.82fr) minmax(580px, 1.18fr);
    gap: 30px;
  }

  .hero-copy {
    padding-bottom: 20px;
  }

  .hero h1 {
    font-size: clamp(4.8rem, 7vw, 7rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-benefits {
    max-width: 620px;
  }

  .product-rig {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 760px;
    height: auto;
    aspect-ratio: 1.1;
    justify-self: end;
    transform: none;
  }

  .dashboard-device {
    top: 15%;
    left: 4%;
    width: 86%;
  }

  .orange-orb {
    top: 0;
    right: -4%;
  }

  .receipt-printer {
    bottom: 3%;
    left: 0;
  }

  .payment-terminal {
    right: -1%;
    bottom: 2%;
  }

  .hero-scroll {
    position: absolute;
  right: 26px;
    bottom: 88px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.28);
    font-size: 0.63rem;
    font-weight: 760;
    letter-spacing: 0.09em;
    gap: 12px;
    writing-mode: vertical-rl;
  }

  .hero-scroll i {
    width: 1px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
  }

  .business-strip {
    padding: 32px 28px;
  }

  .business-strip-title {
    display: none;
  }

  .business-strip > ul {
    margin-top: 0;
  }

  .business-strip li {
    min-width: 0;
    flex: 1;
  }

  .product-section,
  .functions-section,
  .pricing-section {
    padding: 140px 0;
  }

  .section-heading {
    display: grid;
    align-items: end;
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
    column-gap: 80px;
  }

  .section-heading > p {
    grid-column: 1 / -1;
  }

  .section-heading h2 {
    margin-top: 24px;
  }

  .section-heading > div {
    display: grid;
    align-items: end;
    align-self: end;
    grid-template-columns: 1fr;
  }

  .product-tabs {
    margin-top: 78px;
  }

  .product-tabs button {
    min-height: 95px;
    min-width: 0;
    flex: 1;
  }

  .product-panel {
    min-height: 690px;
    align-items: stretch;
    grid-template-columns: minmax(360px, 0.75fr) minmax(560px, 1.25fr);
  }

  .product-panel-copy {
    display: grid;
    align-content: center;
    padding: 55px;
  }

  .feature-window {
    align-self: stretch;
    margin: 16px 16px 16px 0;
  }

  .feature-canvas {
    height: calc(100% - 53px);
    min-height: 580px;
  }

  .feature-spotlight strong {
    font-size: clamp(6rem, 8vw, 8.5rem);
  }

  .functions-heading {
    max-width: 1050px;
  }

  .function-rows {
    margin-top: 78px;
  }

  .function-row {
    min-height: 230px;
    align-items: center;
    align-content: normal;
    padding: 30px 24px 30px 0;
    grid-template-columns: 70px minmax(300px, 1fr) minmax(270px, 0.7fr) 40px;
    gap: 35px;
  }

  .function-row ul {
    justify-content: flex-end;
  }

  .function-row > i {
    position: static;
    justify-self: end;
  }

  .function-proof {
    margin-top: 70px;
    padding: 34px;
    grid-template-columns: 210px 1fr;
  }

  .function-proof ul {
    grid-template-columns: repeat(4, 1fr);
  }

  .pricing-heading {
    align-items: end;
    grid-template-columns: 1fr auto;
  }

  .billing-switch {
    margin-bottom: 11px;
  }

  .plan-list {
    margin-top: 76px;
  }

  .plan-row {
    min-height: 250px;
    align-items: center;
    padding: 32px;
    grid-template-columns: minmax(220px, 0.75fr) minmax(280px, 1.1fr) minmax(220px, 0.72fr) 170px;
    gap: 34px;
  }

  .plan-name h3 {
    font-size: clamp(3.8rem, 5.8vw, 6.3rem);
  }

  .plan-price strong {
    font-size: clamp(4.8rem, 6.2vw, 7.3rem);
  }

  .closing-section {
    min-height: 900px;
    padding: 130px 50px;
  }

  .closing-logo {
    right: 10%;
    bottom: 10%;
    width: 350px;
    height: 350px;
  }

  .site-footer {
    padding: 95px 36px 28px;
  }
}

@media (min-width: 1250px) {
  .hero-shell {
    gap: 50px;
  }

  .hero h1 {
    font-size: clamp(5.5rem, 6.4vw, 7.2rem);
  }

  .product-rig {
    max-width: 830px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover::after {
    transform: scaleX(1);
  }

  .primary-action:hover > i,
  .nav-cta:hover i,
  .plan-action:hover i,
  .closing-action:hover i {
    transform: rotate(8deg) scale(1.04);
  }

  .product-tabs button:hover {
    color: var(--ink);
  }

  .product-tabs button.is-active:hover {
    color: var(--white);
  }

  .function-row:hover {
    padding-right: 32px;
    padding-left: 20px;
    background: rgba(255, 255, 255, 0.025);
  }

  .function-row:hover > i {
    color: var(--orange-bright);
    transform: rotate(8deg);
  }

  .plan-row:hover {
    z-index: 2;
    box-shadow: 0 26px 58px rgba(18, 21, 19, 0.15);
    transform: translateY(-4px);
  }

  .footer-main nav a:hover {
    color: var(--white);
  }
}

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

  *,
  *::before,
  *::after {
    animation-delay: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal.is-pending {
    clip-path: none;
    transform: none;
  }
}

/* Reference-inspired commercial composition */

*,
*::before,
*::after {
  letter-spacing: 0 !important;
}

:root {
  --shell: min(1328px, calc(100vw - 32px));
  --paper: #f9f9f8;       /* sand-2 — mismo valor que arriba */
  --orange: #ff6900;
  --orange-bright: #ff7a12;
  --orange-soft: #ff9a36;
  --ink: #21201c;         /* sand-12 — mismo valor que arriba */
}

body {
  background: var(--paper);
}

.site-header {
  top: 16px;
  width: min(1328px, calc(100vw - 28px));
}

.nav-shell {
  min-height: 66px;
  padding: 8px 10px;
  border-color: transparent;
  border-radius: 18px;
  background: transparent;
  box-shadow: none;
}

.nav-shell::after {
  display: none;
}

.site-header.is-scrolled .nav-shell {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(7, 8, 7, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.brand-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
}

.brand-word b,
.brand-word strong {
  font-size: 1.06rem;
  line-height: 1;
}

.brand-word small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.54rem;
  font-weight: 760;
}

.desktop-nav a:first-child {
  color: var(--orange-bright);
}

.desktop-nav a:first-child::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 54px;
  padding: 0 23px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff8a1f, #ff6100);
  box-shadow: 0 16px 32px rgba(255, 105, 0, 0.22);
}

.nav-cta i {
  display: none;
}

.hero {
  width: min(1536px, 100vw);
  min-height: auto;
  margin-inline: auto;
  padding: 114px 18px 34px;
  border-radius: 0 0 26px 26px;
  background:
    radial-gradient(circle at 86% 35%, rgba(255, 105, 0, 0.2), transparent 25%),
    linear-gradient(115deg, #050706 0%, #080a09 54%, #2a1004 100%);
}

.hero-shell {
  width: min(1328px, 100%);
}

.hero-light {
  display: none;
}

.hero-grid {
  opacity: 0.32;
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 70% 44%, black, transparent 56%);
}

.hero-badge {
  min-height: 30px;
  padding: 0 13px;
  border-radius: 6px;
  background: rgba(255, 105, 0, 0.06);
  font-size: 0.69rem;
  font-weight: 820;
}

.hero h1 {
  max-width: 620px;
  margin-top: 22px;
  padding-bottom: 0.16em;
  font-size: 3.1rem;
  font-weight: 820;
  line-height: 1.04;
}

.hero h1 span {
  padding-bottom: 0.16em;
  background: linear-gradient(180deg, #ff8a25 0%, #ff5d00 100%);
  background-clip: text;
}

.hero-description {
  max-width: 510px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.68;
}

.hero-actions {
  display: grid;
  max-width: 100%;
  margin-top: 24px;
  grid-template-columns: 1fr;
  gap: 10px;
}

.primary-action,
.secondary-action {
  min-height: 58px;
  border-radius: 8px;
}

.primary-action {
  width: 100%;
  justify-content: center;
  padding: 0 21px;
  gap: 14px;
}

.primary-action b {
  margin: 0;
  font-size: 0.9rem;
}

.primary-action > i {
  width: auto;
  height: auto;
  background: transparent;
  font-size: 1.05rem;
}

.secondary-action {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.02);
}

.hero-benefits {
  display: grid;
  margin-top: 24px;
  border: 0;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.hero-benefits li {
  min-height: 78px;
  padding: 8px 6px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  text-align: center;
  grid-template-columns: 1fr;
  justify-items: center;
}

.hero-benefits li:last-child {
  border-right: 0;
}

.hero-benefits li > i {
  width: 28px;
  height: 28px;
  margin-bottom: 7px;
}

.hero-benefits b {
  font-size: 0.68rem;
}

.hero-benefits small {
  font-size: 0.58rem;
}

.product-rig {
  position: relative;
  right: auto;
  bottom: auto;
  width: min(520px, 108vw);
  height: auto;
  aspect-ratio: 1.06;
  margin: 34px auto 0;
  transform: none;
}

.orange-orb {
  top: 4%;
  right: -2%;
  width: 72%;
  height: 72%;
  background:
    radial-gradient(circle at 38% 28%, #ffad43, transparent 12%),
    linear-gradient(145deg, #ff8c17, #f05200 76%);
}

.orange-orb::after {
  inset: 13%;
  box-shadow: 0 0 0 28px rgba(255, 255, 255, 0.025);
}

.dashboard-device {
  top: 12%;
  left: 5%;
  width: 82%;
  border-radius: 15px;
  transform: perspective(900px) rotateX(2deg) rotateY(-5deg);
}

.receipt-printer {
  bottom: 4%;
  left: 1%;
  width: 128px;
  height: 126px;
}

.payment-terminal {
  right: 1%;
  bottom: 2%;
  width: 105px;
  min-height: 170px;
}

.business-strip {
  position: relative;
  z-index: 8;
  width: min(1240px, calc(100vw - 32px));
  margin: -10px auto 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  background: linear-gradient(135deg, #151816, #0b0d0c);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.business-strip-title {
  display: flex;
  padding: 20px 20px 0;
}

.business-strip-title p {
  color: var(--orange-bright);
}

.business-strip > ul {
  display: grid;
  overflow: visible;
  margin-top: 0;
  padding: 18px 20px 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 8px;
}

.business-strip li {
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  grid-template-columns: 42px minmax(0, 1fr);
}

.business-strip li > i {
  width: 35px;
  height: 35px;
  border-radius: 8px;
}

.business-strip li b {
  color: var(--white);
  font-size: 0.82rem;
  text-transform: none;
}

.business-strip li small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.64rem;
  text-transform: none;
}

.features-section {
  padding: 78px 0 90px;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 105, 0, 0.09), transparent 34%),
    var(--paper);
}

.features-heading {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.features-heading > p {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 850;
}

.features-heading h2 {
  margin-top: 10px;
  font-size: 2rem;
  font-weight: 850;
  line-height: 1.1;
}

.features-heading h2 span {
  color: var(--orange);
}

.feature-card-grid {
  display: grid;
  margin-top: 34px;
  gap: 12px;
}

.feature-card {
  min-height: 220px;
  padding: 28px 22px 24px;
  border: 1px solid rgba(16, 17, 15, 0.11);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.72)),
    #fff;
  box-shadow: 0 20px 54px rgba(16, 17, 15, 0.06);
  text-align: center;
  transition:
    transform 260ms var(--ease),
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.feature-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-inline: auto;
  color: var(--orange);
}

.feature-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.feature-card h3 {
  margin-top: 18px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 820;
}

.feature-card p {
  max-width: 250px;
  margin: 10px auto 0;
  color: rgba(16, 17, 15, 0.68);
  font-size: 0.82rem;
  line-height: 1.62;
}

.features-action {
  display: flex;
  width: min(320px, 100%);
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin: 26px auto 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff8a1f, #ff6100);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 800;
  gap: 15px;
  box-shadow: 0 16px 34px rgba(255, 105, 0, 0.18);
}

.product-section {
  padding-top: 92px;
  background: #fff;
}

.functions-section {
  padding-top: 96px;
}

.pricing-section {
  background: #f2eee6;
}

.closing-section {
  background:
    radial-gradient(circle at 82% 82%, rgba(255, 105, 0, 0.2), transparent 27%),
    #070807;
}

@media (min-width: 680px) {
  .site-header {
    top: 20px;
    width: min(1328px, calc(100vw - 48px));
  }

  .hero {
    padding: 132px 28px 52px;
  }

  .hero h1 {
    font-size: 4.35rem;
  }

  .hero-actions {
    width: fit-content;
    grid-template-columns: 202px 170px;
  }

  .product-rig {
    width: min(680px, 100%);
    aspect-ratio: 1.12;
    margin-top: 42px;
  }

  .receipt-printer {
    width: 152px;
    height: 148px;
  }

  .payment-terminal {
    width: 124px;
    min-height: 200px;
  }

  .business-strip {
    width: min(1240px, calc(100vw - 54px));
    border-radius: 18px;
  }

  .business-strip > ul {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

@media (min-width: 960px) {
  :root {
    --shell: min(1328px, calc(100vw - 70px));
  }

  .desktop-nav {
    gap: 30px;
  }

  .desktop-nav a {
    font-size: 0.86rem;
    font-weight: 720;
  }

  .login-link {
    display: none;
  }

  .hero {
    min-height: 785px;
    padding: 118px max(3.5vw, 42px) 92px;
    border-radius: 0 0 30px 30px;
  }

  .hero-shell {
    display: grid;
    align-items: center;
    grid-template-columns: minmax(420px, 0.82fr) minmax(0, 1.18fr);
    gap: 22px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 560px;
    font-size: 5.25rem;
  }

  .hero-description {
    max-width: 490px;
  }

  .product-rig {
    width: 100%;
    max-width: 690px;
    margin-top: 28px;
    justify-self: end;
    aspect-ratio: 1.12;
  }

  .dashboard-device {
    top: 11%;
    left: 3%;
    width: 84%;
  }

  .receipt-printer {
    bottom: 4%;
    left: 0;
  }

  .payment-terminal {
    right: 0;
    bottom: 2%;
  }

  .business-strip {
    margin-top: -58px;
    border-radius: 22px;
  }

  .business-strip-title {
    display: none;
  }

  .business-strip > ul {
    padding: 26px 28px;
    gap: 0;
  }

  .business-strip li {
    min-height: 54px;
    padding-inline: 22px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .business-strip li:last-child {
    border-right: 0;
  }

  .business-strip li > i {
    width: 42px;
    height: 42px;
  }

  .features-section {
    padding-top: 62px;
    padding-bottom: 108px;
  }

  .features-heading h2 {
    font-size: 2.55rem;
  }

  .feature-card-grid {
    margin-top: 42px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .feature-card {
    min-height: 232px;
    padding: 34px 24px 26px;
  }

  .product-section,
  .functions-section,
  .pricing-section {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .function-row h3 {
    font-size: 4.6rem;
  }

  .plan-name h3 {
    font-size: 4.8rem;
  }

  .plan-price strong {
    font-size: 5.4rem;
  }
}

@media (min-width: 1250px) {
  .hero h1 {
    font-size: 5.85rem;
  }

  .product-rig {
    max-width: 735px;
  }
}

@media (hover: hover) and (pointer: fine) {
  .feature-card:hover {
    border-color: rgba(255, 105, 0, 0.34);
    box-shadow: 0 28px 70px rgba(16, 17, 15, 0.1);
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature-card,
  .features-action {
    transition: none;
  }
}

/* Final polish after visual QA */

.hero-scroll {
  display: none !important;
}

.hero-copy {
  width: 100%;
  max-width: 100%;
}

.hero-description,
.hero-actions,
.hero-benefits {
  width: 100%;
  max-width: calc(100vw - 36px);
}

@media (max-width: 479px) {
  .site-header {
    right: 14px;
    left: 14px;
    width: auto;
    margin: 0;
  }

  .brand-word b,
  .brand-word strong {
    font-size: 0.95rem;
  }

  .hero {
    width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-shell {
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    display: contents;
  }

  .hero-badge {
    order: 1;
    width: max-content;
    max-width: 100%;
  }

  .hero-copy,
  .hero-description,
  .hero-actions,
  .hero-benefits {
    width: min(100%, 330px);
    max-width: 330px;
  }

  .hero h1 {
    order: 2;
    max-width: 330px;
    font-size: 2.92rem;
  }

  .hero-description {
    order: 3;
    font-size: 0.92rem;
  }

  .hero-actions {
    order: 4;
  }

  .primary-action,
  .secondary-action {
    width: 100%;
    max-width: 100%;
  }

  .product-rig {
    order: 5;
    width: min(100%, 330px);
    max-width: 330px;
    margin: 24px 0 0;
  }

  .hero-benefits {
    order: 6;
    margin-top: 16px;
    max-width: 330px;
  }

  .hero-benefits b {
    font-size: 0.58rem;
    line-height: 1.15;
  }

  .hero-benefits small {
    font-size: 0.52rem;
    line-height: 1.2;
  }
}

@media (min-width: 480px) and (max-width: 679px) {
  .site-header {
    right: 18px;
    left: 18px;
    width: auto;
    margin: 0;
  }

  .hero {
    width: 100%;
  }

  .hero-shell {
    display: flex;
    flex-direction: column;
  }

  .hero-copy {
    display: contents;
  }

  .hero-badge {
    order: 1;
    width: max-content;
    max-width: 100%;
  }

  .hero h1 {
    order: 2;
  }

  .hero-description {
    order: 3;
  }

  .hero-actions {
    order: 4;
  }

  .hero-benefits {
    order: 6;
    margin-top: 18px;
  }

  .hero-copy,
  .hero-description,
  .hero-actions,
  .hero-benefits {
    width: min(100%, 430px);
    max-width: 430px;
  }

  .product-rig {
    order: 5;
    width: min(100%, 430px);
    max-width: 430px;
    margin: 28px 0 0;
  }
}

@media (min-width: 960px) {
  .hero-actions {
    grid-template-columns: 230px 170px;
  }

  .hero {
    min-height: 680px;
    padding-top: 112px;
    padding-bottom: 74px;
  }

  .hero h1 {
    margin-top: 14px;
    font-size: 4rem;
  }

  .hero-description,
  .hero-actions,
  .hero-benefits {
    max-width: 520px;
  }

  .product-rig {
    max-width: 600px;
    margin-right: 42px;
    margin-top: 0;
  }
}

@media (min-width: 1250px) {
  .hero h1 {
    font-size: 4.35rem;
  }

  .product-rig {
    max-width: 620px;
  }
}

@keyframes rigIn {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(28px) scale(0.98);
  }
}

/* Modules / benefits / plans redesign */

.legacy-landing-section {
  display: none !important;
}

.nav-actions .login-link {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
}

.nav-actions .login-link:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}

.operations-section {
  position: relative;
  padding: 84px 16px 100px;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 105, 0, 0.13), transparent 24%),
    radial-gradient(circle at 90% 48%, rgba(255, 105, 0, 0.1), transparent 26%),
    #080a09;
  color: var(--white);
}

.operations-shell {
  width: min(1328px, 100%);
  margin-inline: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #101210;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.36),
    inset 0 1px rgba(255, 255, 255, 0.06);
}

.ops-block + .ops-block,
.ops-final-cta {
  margin-top: 34px;
}

.ops-heading {
  display: grid;
  align-items: start;
  grid-template-columns: 11px 1fr;
  gap: 12px;
}

.ops-heading > span {
  width: 7px;
  height: 7px;
  margin-top: 13px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 105, 0, 0.13);
}

.ops-heading h2 {
  color: var(--white);
  font-size: 1.44rem;
  font-weight: 880;
  line-height: 1.08;
  text-transform: uppercase;
}

.ops-heading p {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.9rem;
  line-height: 1.45;
}

.ops-heading strong {
  color: var(--orange-bright);
  font-weight: 850;
}

.module-grid {
  display: grid;
  margin-top: 18px;
  gap: 10px;
}

.module-card {
  display: grid;
  min-height: 132px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 105, 0, 0.22);
  border-radius: 13px;
  background:
    radial-gradient(circle at 18% 0, rgba(255, 105, 0, 0.14), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  grid-template-columns: 64px 1fr;
  gap: 18px;
  transition:
    transform 240ms var(--ease),
    border-color 240ms ease,
    box-shadow 240ms ease;
}

.ops-icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(145deg, #ff982d, #ff5d00);
  box-shadow:
    0 14px 30px rgba(255, 105, 0, 0.24),
    inset 0 1px rgba(255, 255, 255, 0.28);
}

.ops-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--white);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.module-card h3 {
  font-size: 1rem;
  font-weight: 850;
}

.module-card p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.82rem;
  line-height: 1.45;
}

.ops-benefit-grid {
  display: grid;
  margin-top: 22px;
  gap: 10px;
}

.ops-benefit-grid li {
  min-height: 150px;
  padding: 18px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
  text-align: center;
}

.ops-benefit-grid i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-inline: auto;
  border: 1px solid rgba(255, 105, 0, 0.78);
  border-radius: 50%;
  color: var(--orange-bright);
  font-style: normal;
  font-weight: 850;
}

.ops-benefit-grid b {
  display: block;
  margin-top: 12px;
  font-size: 0.87rem;
  line-height: 1.2;
}

.ops-benefit-grid span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
  line-height: 1.4;
}

.ops-plan-grid {
  display: grid;
  margin-top: 18px;
  gap: 12px;
}

.ops-plan-card {
  position: relative;
  display: grid;
  min-height: 312px;
  padding: 22px 18px 18px;
  border: 1px solid rgba(255, 105, 0, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 105, 0, 0.12), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.028));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05);
}

.ops-plan-card.is-popular {
  border-color: rgba(255, 105, 0, 0.88);
  box-shadow:
    0 0 0 1px rgba(255, 105, 0, 0.16),
    0 0 34px rgba(255, 105, 0, 0.22),
    inset 0 1px rgba(255, 255, 255, 0.08);
}

.ops-plan-card > small {
  position: absolute;
  top: -11px;
  left: 50%;
  padding: 4px 14px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.ops-plan-card h3 {
  font-size: 1.18rem;
  font-weight: 880;
  text-align: center;
}

.ops-plan-card > p {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  text-align: center;
}

.ops-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-top: 16px;
  color: var(--white);
}

.ops-price sup {
  margin-right: 2px;
  color: var(--orange-bright);
  font-size: 1rem;
  font-weight: 850;
}

.ops-price strong {
  color: inherit;
  font-size: 2.2rem;
  font-weight: 880;
  line-height: 0.95;
}

.ops-price span {
  margin-left: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
}

.ops-plan-card.is-popular .ops-price strong,
.ops-plan-card.is-popular .ops-price sup {
  color: var(--orange-bright);
}

.ops-plan-card ul {
  display: grid;
  align-content: start;
  margin-top: 18px;
  gap: 8px;
}

.ops-plan-card li {
  display: grid;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  line-height: 1.25;
  grid-template-columns: 18px 1fr;
}

.ops-plan-card li::before {
  color: var(--orange-bright);
  content: "✓";
  font-weight: 900;
}

.ops-plan-action {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  align-self: end;
  margin-top: 20px;
  border: 1px solid rgba(255, 105, 0, 0.86);
  border-radius: 10px;
  color: var(--orange-bright);
  font-size: 0.78rem;
  font-weight: 850;
}

.ops-plan-card.is-popular .ops-plan-action,
.ops-final-primary {
  border-color: transparent;
  background: linear-gradient(135deg, #ff982d, #ff5d00);
  color: var(--white);
  box-shadow: 0 16px 32px rgba(255, 105, 0, 0.24);
}

.ops-plan-custom {
  text-align: center;
}

.ops-building {
  display: grid;
  min-height: 70px;
  place-items: center;
  color: var(--orange-bright);
  font-size: 3.1rem;
  line-height: 1;
}

.ops-final-cta {
  display: grid;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 105, 0, 0.42);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 105, 0, 0.22), transparent 28%),
    linear-gradient(135deg, rgba(255, 105, 0, 0.13), rgba(255, 255, 255, 0.035));
  gap: 18px;
}

.ops-final-cta > div:first-child {
  display: grid;
  align-items: center;
  grid-template-columns: 64px 1fr;
  gap: 16px;
}

.ops-final-cta h2 {
  font-size: 1.15rem;
  font-weight: 880;
  line-height: 1.16;
}

.ops-final-cta p {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.84rem;
}

.ops-final-actions {
  display: grid;
  gap: 10px;
}

.ops-final-primary,
.ops-final-secondary {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 0.86rem;
  font-weight: 860;
}

.ops-final-primary {
  gap: 14px;
}

.ops-final-primary i {
  font-style: normal;
}

.ops-final-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.82);
}

@media (min-width: 680px) {
  .operations-section {
    padding-inline: 28px;
  }

  .operations-shell {
    padding: 34px;
    border-radius: 28px;
  }

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

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

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

  .ops-final-cta {
    grid-template-columns: 1fr minmax(250px, 0.42fr);
  }
}

@media (min-width: 960px) {
  .nav-actions .login-link {
    display: flex;
    min-height: 54px;
    align-items: center;
    padding: 0 18px;
    font-size: 0.82rem;
    font-weight: 790;
  }

  .nav-actions .nav-cta {
    min-width: 132px;
    justify-content: center;
  }

  .operations-section {
    padding-top: 96px;
    padding-bottom: 120px;
  }

  .operations-shell {
    padding: 34px 38px 28px;
  }

  .ops-block + .ops-block,
  .ops-final-cta {
    margin-top: 42px;
  }

  .module-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .module-card {
    min-height: 132px;
    padding: 20px;
  }

  .ops-benefit-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0;
  }

  .ops-benefit-grid li {
    border-top: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    background: transparent;
  }

  .ops-benefit-grid li:last-child {
    border-right: 0;
  }

  .ops-plan-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .ops-final-cta {
    padding: 18px 22px;
    grid-template-columns: 1fr 360px;
  }

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

@media (hover: hover) and (pointer: fine) {
  .module-card:hover,
  .ops-plan-card:hover {
    border-color: rgba(255, 105, 0, 0.62);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.22);
    transform: translateY(-4px);
  }

  .ops-plan-action:hover,
  .ops-final-primary:hover,
  .ops-final-secondary:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 679px) {
  .operations-section {
    padding: 58px 16px 78px;
  }

  .operations-shell {
    padding: 24px;
    border-radius: 24px;
  }

  .ops-heading h2 {
    font-size: 1.32rem;
  }

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

  .module-card {
    min-height: 124px;
    align-content: center;
    justify-items: center;
    padding: 14px 8px;
    text-align: center;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .module-card p {
    display: none;
  }

  .module-card h3 {
    max-width: 110px;
    font-size: 0.74rem;
    line-height: 1.18;
  }

  .ops-icon {
    width: 50px;
    height: 50px;
    border-radius: 11px;
  }

  .ops-icon svg {
    width: 28px;
    height: 28px;
  }

  .ops-benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .ops-benefit-grid li {
    min-height: 112px;
    display: grid;
    align-content: center;
    padding: 13px 8px;
  }

  .ops-benefit-grid span {
    display: none;
  }

  .ops-benefit-grid b {
    max-width: 120px;
    margin-inline: auto;
    font-size: 0.72rem;
  }

  .ops-plan-grid {
    gap: 8px;
  }

  .ops-plan-card {
    min-height: 0;
    align-items: center;
    padding: 15px 14px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
  }

  .ops-plan-card > small {
    position: static;
    width: max-content;
    padding: 3px 8px;
    font-size: 0.5rem;
    transform: none;
    grid-column: 1 / -1;
    justify-self: center;
  }

  .ops-plan-card h3,
  .ops-plan-card > p {
    text-align: left;
  }

  .ops-plan-card h3 {
    font-size: 0.92rem;
  }

  .ops-plan-card > p,
  .ops-plan-card ul,
  .ops-plan-action,
  .ops-building {
    display: none;
  }

  .ops-price {
    margin: 0;
    justify-content: flex-end;
  }

  .ops-price sup {
    font-size: 0.72rem;
  }

  .ops-price strong {
    font-size: 1.35rem;
  }

  .ops-price span {
    max-width: 42px;
    font-size: 0.52rem;
    line-height: 1.05;
  }

  .ops-plan-custom::after {
    color: var(--orange-bright);
    content: "Crear cuenta";
    font-size: 0.72rem;
    font-weight: 850;
    justify-self: end;
  }

  .ops-final-cta {
    padding: 14px;
  }

  .ops-final-cta > div:first-child {
    grid-template-columns: 54px 1fr;
    gap: 12px;
  }

  .ops-final-cta h2 {
    font-size: 0.98rem;
  }

  .ops-final-cta p {
    font-size: 0.74rem;
  }
}
