:root {
  color-scheme: light;
  --admal-bg: #eef8f4;
  --admal-bg-soft: #f8fdfb;
  --admal-text: #08271f;
  --admal-muted: rgba(8, 39, 31, 0.66);
  --admal-card: rgba(255, 255, 255, 0.88);
  --admal-card-strong: #ffffff;
  --admal-line: rgba(5, 85, 63, 0.12);
  --admal-shadow: rgba(22, 68, 54, 0.14);
  --admal-shadow-soft: rgba(22, 68, 54, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

html {
  min-width: 320px;
  background: var(--admal-bg);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--admal-text);
  background: var(--admal-bg);
}

button,
a {
  font: inherit;
}

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

.admal-page-shell {
  min-height: 100svh;
  overflow-x: hidden;
}

.admal-anima {
  position: relative;
  height: 93vh;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(115deg, rgba(224, 246, 238, 0.96), rgba(250, 254, 252, 0.98) 48%, rgba(232, 248, 242, 0.96)),
    var(--admal-bg);
}

.admal-anima::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 104, 77, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(8, 104, 77, 0.045) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.16));
}

.admal-background-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(115deg, rgba(11, 157, 109, 0.08), transparent 38%),
    linear-gradient(250deg, rgba(255, 255, 255, 0.76), transparent 44%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.62));
}

.admal-slider {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.1vw, 14px);
  width: min(100%, 1500px);
  height: 100%;
  min-height: 0;
  margin: 0 auto;
  padding: clamp(12px, 1.5vw, 24px);
}

.admal-stage {
  flex: 1;
  display: grid;
  min-height: 0;
}

.admal-slide {
  --title-max: 2.08rem;
  --hero-height: clamp(430px, 58vh, 540px);
  --phone-width: clamp(188px, 18vw, 250px);
  --phone-height: clamp(408px, 50vh, 540px);
  display: none;
  grid-template-columns: minmax(248px, 0.84fr) minmax(390px, 1.36fr) minmax(286px, 0.94fr);
  grid-template-areas: "left center right";
  align-items: center;
  gap: clamp(14px, 1.45vw, 24px);
  height: 100%;
  min-height: 0;
  opacity: 0;
}

.admal-slide.is-active {
  display: grid;
  opacity: 1;
  animation: admalReveal 640ms ease both;
}

.admal-left-panel {
  grid-area: left;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(9px, 1vw, 14px);
  height: 100%;
  min-height: 0;
  padding: clamp(16px, 1.45vw, 24px);
  color: var(--admal-text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(249, 254, 252, 0.92)),
    var(--admal-card);
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 26px;
  box-shadow: 0 20px 48px var(--admal-shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  overflow: hidden;
}

.admal-left-panel::after {
  content: "";
  position: absolute;
  inset: auto 18px 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.62;
}

.admal-left-panel > * {
  animation: admalPanelItem 640ms ease both;
}

.admal-left-panel > *:nth-child(2) { animation-delay: 70ms; }
.admal-left-panel > *:nth-child(3) { animation-delay: 130ms; }
.admal-left-panel > *:nth-child(4) { animation-delay: 190ms; }
.admal-left-panel > *:nth-child(5) { animation-delay: 250ms; }
.admal-left-panel > *:nth-child(6) { animation-delay: 310ms; }

.admal-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admal-number {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 14px 28px color-mix(in srgb, var(--accent) 24%, transparent);
  font-weight: 900;
}

.admal-mini-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: var(--accent-dark);
  background: rgba(239, 251, 246, 0.78);
  border: 1px solid rgba(4, 97, 70, 0.14);
}

.admal-eyebrow {
  margin: 0;
  color: rgba(8, 39, 31, 0.68);
  font-weight: 900;
  font-size: clamp(0.76rem, 0.82vw, 0.9rem);
}

.admal-title {
  margin: 0;
  color: #06271f;
  font-size: clamp(1.18rem, 1.72vw, var(--title-max));
  line-height: 1;
  letter-spacing: 0;
}

.admal-copy {
  margin: 0;
  max-width: 28rem;
  color: var(--admal-muted);
  font-size: clamp(0.86rem, 0.9vw, 1rem);
  line-height: 1.42;
  font-weight: 650;
}

.admal-steps {
  display: grid;
  gap: 7px;
}

.admal-step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  align-items: center;
  min-height: 38px;
  padding: 6px 10px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(5, 85, 63, 0.09);
  box-shadow: 0 12px 26px var(--admal-shadow-soft);
}

.admal-step-index {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  font-size: 0.66rem;
  font-weight: 900;
}

.admal-step-copy strong,
.admal-step-copy small {
  display: block;
}

.admal-step-copy strong {
  font-size: 0.78rem;
}

.admal-step-copy small {
  color: rgba(8, 39, 31, 0.55);
  font-weight: 700;
  font-size: 0.66rem;
}

.admal-old-way {
  margin-top: auto;
  display: grid;
  gap: 8px;
}

.admal-old-way p {
  margin: 0;
  text-align: center;
  color: rgba(8, 39, 31, 0.74);
  font-size: 0.72rem;
  font-weight: 900;
}

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

.admal-old-card {
  position: relative;
  min-height: 0;
  padding: 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(5, 85, 63, 0.1);
  box-shadow: 0 12px 24px rgba(22, 68, 54, 0.08);
}

.admal-old-thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1 / 0.88;
  margin-bottom: 6px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, #fffaf0, #eef8f4);
}

.admal-old-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.02);
}

.admal-old-card strong,
.admal-old-card small {
  display: block;
}

.admal-old-card strong {
  color: #12362d;
  font-size: 0.68rem;
}

.admal-old-card small {
  margin-top: 4px;
  color: rgba(18, 54, 45, 0.58);
  font-size: 0.6rem;
  line-height: 1.25;
}

.admal-cross {
  position: absolute;
  right: 7px;
  top: 7px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #ffffff;
  background: #f25b4c;
  font-weight: 900;
}

.admal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  text-decoration: none;
  font-weight: 900;
  font-size: 0.86rem;
  box-shadow: 0 12px 24px color-mix(in srgb, var(--accent) 20%, transparent);
}

.admal-anima .admal-cta,
.admal-anima .admal-cta:visited,
.admal-anima .admal-cta:hover,
.admal-anima .admal-cta:focus,
.admal-anima .admal-cta:active {
  color: #ffffff !important;
  text-decoration: none !important;
}

.admal-anima .admal-cta:hover,
.admal-anima .admal-cta:focus {
  background: linear-gradient(135deg, #043225, var(--accent-dark));
}

.admal-cta span {
  opacity: 0.82;
}

.admal-center-hero {
  grid-area: center;
  position: relative;
  min-height: var(--hero-height);
  display: grid;
  place-items: center;
}

.admal-center-hero::before {
  content: "";
  position: absolute;
  inset: 10% 5% 15%;
  border: 1px solid rgba(4, 115, 82, 0.12);
  border-radius: 48%;
  transform: rotate(-12deg);
  pointer-events: none;
}

.admal-hero-stack {
  position: relative;
  width: min(100%, 700px);
  height: var(--hero-height);
  min-height: 0;
  max-height: 680px;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
  gap: clamp(8px, 1.2vw, 14px);
}

.admal-hero-visuals {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  width: 100%;
  height: calc(var(--hero-height) - 86px);
  min-height: 0;
}

[data-screen-mode="dashboard"] .admal-hero-visuals {
  flex-direction: column;
  gap: clamp(8px, 1.25vw, 14px);
}

.admal-product-wrap {
  position: relative;
  z-index: 4;
  flex: 0 1 44%;
  width: min(44%, 300px);
  min-height: 0;
  display: grid;
  place-items: center;
  transform: rotate(-4deg);
  transition: transform 220ms ease;
}

[data-screen-mode="dashboard"] .admal-product-wrap {
  flex: 0 0 auto;
  width: min(34%, 210px);
  transform: translateY(-2px) rotate(-3deg);
}

.admal-product-device {
  position: relative;
  width: 100%;
  min-height: 218px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 30px 58px rgba(18, 63, 50, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.admal-product-device.is-asset {
  min-height: 0;
  margin: 0;
  background: transparent;
  box-shadow: none;
}

.admal-product-device.is-asset img {
  width: 100%;
  height: auto;
  max-height: min(40vh, 330px);
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(19, 77, 59, 0.2));
}

[data-screen-mode="dashboard"] .admal-product-device.is-asset img {
  max-height: min(19vh, 150px);
}

.admal-card-stack {
  perspective: 900px;
}

.admal-black-card {
  position: absolute;
  left: 8%;
  top: 20%;
  width: 80%;
  height: 78px;
  padding: 15px;
  border-radius: 16px;
  color: #d4aa56;
  background: linear-gradient(145deg, #17241f, #07110f);
  box-shadow: 0 18px 30px rgba(6, 20, 16, 0.14);
  transform: rotate(-4deg);
}

.admal-black-card.is-front {
  top: 50%;
  transform: rotate(4deg);
}

.admal-black-card strong,
.admal-black-card small,
.admal-product-device strong,
.admal-product-device small {
  display: block;
}

.admal-black-card strong {
  font-size: 1.45rem;
  letter-spacing: 0;
}

.admal-black-card small {
  margin-top: 8px;
  color: rgba(212, 170, 86, 0.74);
  font-weight: 800;
}

.admal-qr-mark {
  display: block;
  width: 62px;
  height: 62px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #111 20%, transparent 20% 40%, #111 40% 60%, transparent 60% 80%, #111 80%),
    linear-gradient(0deg, #111 20%, #d4aa56 20% 40%, #111 40% 60%, #d4aa56 60% 80%, #111 80%);
  background-blend-mode: multiply;
}

.admal-qr-mark.is-large {
  width: 128px;
  height: 128px;
  margin: 14px auto;
  background-color: #ffffff;
}

.admal-product-device.is-stand {
  min-height: 320px;
  background: transparent;
  box-shadow: none;
}

.admal-stand-face {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  gap: 12px;
  width: 76%;
  min-height: 300px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 22px;
  color: #26332d;
  background: linear-gradient(115deg, #ffffff, #f1f4f2);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 26px 44px rgba(41, 60, 53, 0.16);
  transform: skewY(-1deg);
}

.admal-stand-face strong {
  font-size: 2rem;
  color: #2d3531;
}

.admal-stand-face small,
.admal-product-device small {
  color: rgba(8, 39, 31, 0.62);
  font-weight: 900;
}

.admal-stand-shadow {
  position: absolute;
  left: 46%;
  bottom: 6px;
  width: 42%;
  height: 280px;
  border-radius: 10px 22px 22px 10px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(70, 78, 73, 0.08));
  transform: skewY(8deg);
}

.admal-product-device.is-pet {
  display: grid;
  place-items: center;
  min-height: 270px;
  padding: 18px;
  background: linear-gradient(145deg, #f5d39c, #fff9ef);
}

.admal-pet-photo {
  width: 72%;
  aspect-ratio: 1;
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(101, 63, 26, 0.26), rgba(255, 255, 255, 0.28)),
    radial-gradient(circle at 50% 30%, #684624 0 16%, #b88447 17% 28%, #f0ce91 29% 42%, transparent 43%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.44);
}

.admal-pet-chip {
  position: absolute;
  right: 12px;
  bottom: 16px;
  width: 48%;
  padding: 14px;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(145deg, #17221d, #0a3d2c);
}

.admal-tag-ring {
  position: absolute;
  left: 14%;
  top: 15%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 18px rgba(52, 37, 15, 0.16);
}

.admal-product-device.is-qr,
.admal-product-device.is-analytics {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  min-height: 300px;
  padding: 28px;
  text-align: center;
  background: linear-gradient(145deg, #ffffff, #e5f6ef);
}

.admal-product-device.is-qr strong {
  font-size: 2.4rem;
  color: var(--accent-dark);
}

.admal-mini-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  width: 80%;
  height: 92px;
}

.admal-mini-bars i {
  flex: 1;
  height: var(--tiny);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), rgba(7, 96, 70, 0.2));
}

.admal-phone {
  position: relative;
  z-index: 5;
  width: min(var(--phone-width), calc(var(--phone-height) * 0.461));
  height: var(--phone-height);
  max-height: var(--phone-height);
  min-height: 0;
  aspect-ratio: 430 / 932;
  padding: 10px;
  border-radius: 34px;
  background: linear-gradient(145deg, #0b4f3e, #0c7b58);
  box-shadow: 0 28px 56px rgba(16, 59, 47, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  transform: rotate(1.5deg);
  animation: admalPhoneFloat 6.4s ease-in-out infinite;
}

.admal-phone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 10px;
  z-index: 5;
  width: 72px;
  height: 17px;
  border-radius: 0 0 16px 16px;
  background: #063427;
  transform: translateX(-50%);
}

.admal-phone-screen {
  height: 100%;
  min-height: 0;
  max-height: 100%;
  overflow: hidden;
  border-radius: 27px;
  background: #fbfffd;
}

.admal-phone-screen img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: 100%;
  object-fit: cover;
  object-position: top center;
  animation: admalScreenDrift 9s ease-in-out infinite;
}

.admal-dashboard-frame {
  position: relative;
  z-index: 5;
  width: min(86%, 520px);
  aspect-ratio: 16 / 10;
  padding: 10px;
  border-radius: 28px;
  background: linear-gradient(145deg, #ffffff, #dff4ec);
  border: 1px solid rgba(5, 85, 63, 0.12);
  box-shadow: 0 28px 54px rgba(16, 59, 47, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: rotate(1deg);
}

.admal-dashboard-frame::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -12px;
  height: 12px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, rgba(7, 74, 56, 0.16), rgba(7, 74, 56, 0.04));
}

.admal-dashboard-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: #fbfffd;
}

.admal-dashboard-screen img {
  width: 100%;
  height: 125%;
  max-height: none;
  object-fit: cover;
  object-position: top center;
  animation: admalScreenPan 12s ease-in-out infinite;
}

.admal-generated-screen {
  display: grid;
  gap: 14px;
  align-content: start;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  padding: 50px 18px 20px;
  color: var(--admal-text);
  background: linear-gradient(180deg, #ffffff, #eef9f4);
}

.admal-screen-brand {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admal-screen-brand span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #ffffff;
  background: var(--accent);
}

.admal-screen-chart,
.admal-screen-row,
.admal-screen-note {
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(5, 85, 63, 0.08);
  box-shadow: 0 10px 22px rgba(22, 68, 54, 0.08);
}

.admal-screen-chart {
  height: 110px;
  background:
    linear-gradient(180deg, transparent 55%, rgba(8, 157, 108, 0.13) 56%),
    linear-gradient(90deg, rgba(8, 157, 108, 0.18) 8%, transparent 8% 16%, rgba(8, 157, 108, 0.42) 16% 26%, transparent 26% 34%, rgba(8, 157, 108, 0.7) 34% 48%, transparent 48% 58%, rgba(8, 157, 108, 0.36) 58% 68%, transparent 68% 78%, rgba(8, 157, 108, 0.9) 78% 90%, transparent 90%);
}

.admal-screen-row {
  min-height: 46px;
}

.admal-screen-row.is-short {
  width: 72%;
}

.admal-screen-note {
  padding: 14px;
}

.admal-screen-note strong,
.admal-screen-note small {
  display: block;
}

.admal-screen-note small {
  margin-top: 6px;
  color: var(--admal-muted);
}

.admal-nfc-pulse {
  position: absolute;
  z-index: 3;
  left: 47%;
  top: 42%;
  display: grid;
  place-items: center;
  width: clamp(84px, 9vw, 124px);
  height: clamp(84px, 9vw, 124px);
  border-radius: 50%;
  color: #ffffff;
  background: radial-gradient(circle, var(--accent) 0 34%, rgba(255, 255, 255, 0.82) 35% 55%, rgba(255, 255, 255, 0) 56%);
  box-shadow: 0 20px 45px color-mix(in srgb, var(--accent) 20%, transparent);
  animation: admalPulse 2.8s ease-in-out infinite;
}

.admal-nfc-pulse::before,
.admal-nfc-pulse::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent) 32%, transparent);
  animation: admalSignal 2.8s ease-out infinite;
}

.admal-nfc-pulse::after {
  inset: -28px;
  animation-delay: 520ms;
}

.admal-flow {
  position: relative;
  z-index: 2;
  align-self: end;
  margin-top: auto;
  width: min(100%, 620px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.admal-flow-card {
  display: grid;
  justify-items: center;
  gap: 4px;
  min-height: 66px;
  padding: 8px 6px;
  text-align: center;
  color: rgba(8, 39, 31, 0.74);
}

.admal-flow-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: var(--accent-dark);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(5, 85, 63, 0.08);
  box-shadow: 0 12px 24px var(--admal-shadow-soft);
}

.admal-flow-card strong {
  font-size: 0.7rem;
}

.admal-flow-card small {
  color: rgba(8, 39, 31, 0.58);
  font-size: 0.6rem;
  line-height: 1.25;
}

.admal-right-analytics {
  grid-area: right;
  display: grid;
  align-content: center;
  gap: 8px;
  min-height: 0;
}

.admal-analytics-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--admal-text);
  font-weight: 900;
}

.admal-analytics-heading span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.admal-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--accent) 16%, transparent);
}

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

.admal-kpi,
.admal-chart-card,
.admal-insight-card {
  color: var(--admal-text);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  box-shadow: 0 14px 32px var(--admal-shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.admal-kpi {
  min-height: 74px;
  display: grid;
  gap: 4px;
  align-content: center;
  padding: 10px;
  animation: admalAnalyticsIn 560ms ease both;
}

.admal-kpi:nth-child(2) { animation-delay: 80ms; }
.admal-kpi:nth-child(3) { animation-delay: 150ms; }
.admal-kpi:nth-child(4) { animation-delay: 220ms; }

.admal-kpi span {
  color: rgba(8, 39, 31, 0.58);
  font-size: 0.66rem;
  font-weight: 900;
}

.admal-kpi strong {
  font-size: clamp(1.18rem, 1.5vw, 1.62rem);
  line-height: 1;
}

.admal-kpi small {
  color: var(--accent);
  font-weight: 900;
}

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

.admal-chart-card {
  min-height: 124px;
  padding: 11px;
  overflow: hidden;
}

.admal-chart-card h3,
.admal-insight-card h3 {
  margin: 0 0 8px;
  font-size: 0.78rem;
}

.admal-bars {
  display: flex;
  align-items: end;
  gap: 5px;
  height: 72px;
}

.admal-bar {
  flex: 1;
  min-width: 7px;
  height: 100%;
  display: flex;
  align-items: end;
  border-radius: 999px;
  background: rgba(8, 104, 77, 0.08);
  overflow: hidden;
}

.admal-bar-fill {
  width: 100%;
  min-height: 5px;
  height: var(--bar, 0%);
  border-radius: inherit;
  background: linear-gradient(180deg, var(--accent), color-mix(in srgb, var(--accent-dark) 70%, #ffffff));
  transition: height 860ms cubic-bezier(0.2, 0.82, 0.2, 1);
}

.admal-line-chart {
  width: 100%;
  height: 86px;
}

.admal-line-base,
.admal-line-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admal-line-base {
  stroke: rgba(8, 104, 77, 0.1);
  stroke-width: 5;
}

.admal-line-path {
  stroke: var(--accent);
  stroke-width: 5;
  filter: drop-shadow(0 7px 10px color-mix(in srgb, var(--accent) 20%, transparent));
}

.admal-ring-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
  align-items: center;
}

.admal-ring {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--accent) var(--ring-angle, 0deg), rgba(8, 104, 77, 0.1) 0);
  transition: background 850ms ease;
}

.admal-ring-inner {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #ffffff;
  font-weight: 900;
}

.admal-progress-list,
.admal-funnel {
  display: grid;
  gap: 6px;
}

.admal-progress {
  display: grid;
  gap: 4px;
}

.admal-progress label {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: rgba(8, 39, 31, 0.68);
  font-size: 0.62rem;
  font-weight: 900;
}

.admal-progress-track,
.admal-funnel-track {
  border-radius: 999px;
  background: rgba(8, 104, 77, 0.08);
  overflow: hidden;
}

.admal-progress-track {
  height: 7px;
}

.admal-progress-fill,
.admal-funnel-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent) 28%, #ffffff), var(--accent));
}

.admal-progress-fill {
  width: var(--progress, 0%);
  transition: width 860ms ease;
}

.admal-funnel-row {
  display: grid;
  grid-template-columns: 64px 1fr 32px;
  gap: 6px;
  align-items: center;
  color: rgba(8, 39, 31, 0.68);
  font-size: 0.61rem;
  font-weight: 900;
}

.admal-funnel-track {
  height: 10px;
}

.admal-funnel-fill {
  width: var(--funnel, 0%);
  transition: width 880ms ease;
}

.admal-platform-list {
  display: grid;
  gap: 8px;
}

.admal-platform-list div,
.admal-rating,
.admal-mini-grid div,
.admal-swot div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 7px 8px;
  border-radius: 10px;
  background: rgba(238, 248, 244, 0.72);
  color: rgba(8, 39, 31, 0.72);
  font-size: 0.62rem;
  font-weight: 900;
}

.admal-rating {
  margin-top: 10px;
}

.admal-rating span {
  color: var(--accent);
  font-size: 1rem;
}

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

.admal-mini-grid div,
.admal-swot div {
  display: grid;
  justify-content: stretch;
  min-height: 46px;
}

.admal-mini-grid span,
.admal-swot span {
  color: rgba(8, 39, 31, 0.55);
  font-size: 0.68rem;
}

.admal-insight-card {
  padding: 12px;
}

.admal-insight-card p {
  margin: 0 0 10px;
  color: rgba(8, 39, 31, 0.66);
  font-size: 0.72rem;
  line-height: 1.38;
  font-weight: 700;
}

.admal-recommendation {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  font-size: 0.68rem;
  font-weight: 900;
}

.admal-tabs-shell {
  order: 2;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 46px;
  align-items: center;
  gap: 8px;
  width: min(100%, 1320px);
  margin: 0 auto;
  padding: 8px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 62px rgba(22, 68, 54, 0.12);
}

.admal-tabs {
  display: grid;
  grid-template-columns: repeat(7, minmax(92px, 1fr));
  gap: 6px;
  min-width: 0;
}

.admal-tab {
  display: grid;
  grid-template-columns: 20px 22px 1fr;
  align-items: center;
  gap: 6px;
  min-width: 0;
  min-height: 44px;
  padding: 6px 8px;
  border: 0;
  border-radius: 15px;
  color: rgba(8, 39, 31, 0.7);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.admal-tab:hover,
.admal-tab:focus-visible {
  color: var(--admal-text);
  background: rgba(7, 150, 111, 0.07);
  outline: none;
}

.admal-tab[aria-selected="true"] {
  color: #ffffff;
  background: linear-gradient(135deg, #052f25, var(--accent-dark));
  box-shadow: 0 14px 28px color-mix(in srgb, var(--accent) 20%, transparent);
}

.admal-tab-index {
  color: var(--accent);
  font-size: 0.68rem;
  font-weight: 900;
}

.admal-tab[aria-selected="true"] .admal-tab-index {
  color: #ffffff;
}

.admal-tab-icon {
  display: grid;
  place-items: center;
}

.admal-tab-label {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 0.68rem;
  font-weight: 900;
}

.admal-nav-button,
.admal-arrow {
  display: grid;
  place-items: center;
  border: 0;
  position: relative;
  color: transparent;
  background: linear-gradient(180deg, #10956c, #07523e);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 16px 32px rgba(7, 78, 58, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.24);
  cursor: pointer;
  isolation: isolate;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.admal-nav-button span,
.admal-arrow span {
  display: none;
}

.admal-nav-button::before,
.admal-arrow::before {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 2.5px solid #ffffff;
  border-right: 2.5px solid #ffffff;
  transform: rotate(45deg);
}

.admal-nav-button[data-prev]::before,
.admal-arrow-prev::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}

.admal-nav-button[data-next]::before,
.admal-arrow-next::before {
  margin-right: 4px;
}

.admal-nav-button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.admal-arrow {
  position: absolute;
  z-index: 12;
  top: 50%;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  opacity: 1;
  backdrop-filter: none;
  transform: translateY(-50%);
}

.admal-nav-button:hover,
.admal-nav-button:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-1px) scale(1.03);
  outline: none;
}

.admal-arrow:hover {
  filter: brightness(1.06);
  transform: translateY(-50%) scale(1.04);
}

.admal-arrow:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  filter: brightness(1.06);
  transform: translateY(-50%) scale(1.04);
}

.admal-nav-button:disabled,
.admal-arrow:disabled {
  filter: saturate(0.72) brightness(0.92);
  box-shadow: 0 10px 20px rgba(7, 78, 58, 0.12);
}

.admal-arrow-prev {
  left: 12px;
}

.admal-arrow-next {
  right: 12px;
}

@keyframes admalReveal {
  from {
    opacity: 0.88;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes admalPanelItem {
  from {
    opacity: 0.76;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes admalFloat {
  0%, 100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -13px;
  }
}

@keyframes admalPhoneFloat {
  0%, 100% {
    transform: translateY(0) rotate(1.5deg);
  }
  50% {
    transform: translateY(10px) rotate(-1deg);
  }
}

@keyframes admalPulse {
  0%, 100% {
    transform: scale(0.98);
  }
  50% {
    transform: scale(1.04);
  }
}

@keyframes admalSignal {
  0% {
    opacity: 0.56;
    transform: scale(0.72);
  }
  80%, 100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

@keyframes admalScreenDrift {
  0%, 100% {
    object-position: top center;
  }
  50% {
    object-position: center center;
  }
}

@keyframes admalScreenPan {
  0%, 100% {
    object-position: top center;
  }
  50% {
    object-position: bottom center;
  }
}

@keyframes admalDashboardScreenPan {
  0%, 100% {
    transform: translateY(0);
  }
  46%, 54% {
    transform: translateY(-34%);
  }
}

@keyframes admalAnalyticsIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1280px) {
  .admal-slide {
    grid-template-columns: minmax(246px, 0.82fr) minmax(360px, 1.24fr) minmax(294px, 1fr);
  }

  .admal-title {
    font-size: clamp(1.18rem, 1.82vw, 2.08rem);
  }

  .admal-tab {
    grid-template-columns: 20px 1fr;
  }

  .admal-tab-icon {
    display: none;
  }
}

@media (min-width: 1025px) {
  .admal-slide {
    --hero-height: clamp(500px, calc(93vh - 168px), 610px);
    --phone-width: clamp(238px, 17.6vw, 270px);
    --phone-height: clamp(510px, 64vh, 560px);
    align-items: end;
  }

  .admal-left-panel {
    align-self: end;
    height: auto;
    max-height: 100%;
    gap: clamp(7px, 0.72vw, 11px);
    padding: clamp(14px, 1.25vw, 21px);
    overflow: visible;
  }

  .admal-steps {
    gap: 6px;
  }

  .admal-step {
    min-height: 36px;
    padding: 5px 10px;
  }

  .admal-old-way {
    gap: 7px;
  }

  .admal-old-card {
    padding: 7px;
  }

  .admal-old-thumb {
    aspect-ratio: 1 / 0.84;
  }

  .admal-cta {
    min-height: 40px;
  }

  .admal-center-hero {
    align-self: end;
    width: 100%;
    min-height: min(var(--hero-height), 100%);
    place-items: end center;
  }

  .admal-hero-stack {
    width: 100%;
    max-width: 670px;
    height: min(var(--hero-height), 100%);
    max-height: 100%;
    align-items: stretch;
    gap: clamp(8px, 1vw, 12px);
  }

  .admal-hero-visuals {
    display: grid;
    grid-template-columns: minmax(150px, 0.78fr) minmax(190px, 0.86fr);
    grid-template-rows: minmax(152px, 1fr) minmax(92px, 0.58fr);
    grid-template-areas:
      "product device"
      "pulse device";
    align-items: center;
    justify-items: center;
    column-gap: clamp(0px, 1.4vw, 28px);
    row-gap: clamp(0px, 0.45vw, 8px);
    height: calc(var(--hero-height) - 82px);
  }

  [data-screen-mode="dashboard"] .admal-hero-visuals {
    grid-template-columns: minmax(170px, 0.74fr) minmax(260px, 1fr);
    grid-template-rows: minmax(150px, 0.74fr) minmax(96px, 0.56fr);
    gap: 0 clamp(10px, 1.5vw, 26px);
  }

  .admal-product-wrap {
    grid-area: product;
    align-self: end;
    justify-self: end;
    flex: none;
    width: min(88%, 292px);
    transform: translate(10px, -18px) rotate(-4deg);
  }

  .admal-product-device.is-asset img {
    max-height: min(31vh, 260px);
  }

  [data-screen-mode="dashboard"] .admal-product-wrap {
    align-self: end;
    justify-self: end;
    width: min(90%, 260px);
    transform: translate(10px, -58px) rotate(-3deg);
  }

  [data-screen-mode="dashboard"] .admal-product-device.is-asset img {
    max-height: min(28vh, 240px);
  }

  .admal-phone {
    grid-area: device;
    align-self: end;
    justify-self: start;
    translate: 12px -22px;
  }

  .admal-dashboard-frame {
    grid-area: device;
    align-self: end;
    justify-self: start;
    width: min(118%, 410px);
    translate: -46px 0;
    transform: rotate(0.7deg);
  }

  [data-screen-mode="dashboard"] .admal-dashboard-frame {
    width: clamp(480px, 31.5vw, 505px);
    aspect-ratio: 16 / 9;
    padding: 6px;
    border-radius: 22px;
    border-color: rgba(5, 85, 63, 0.08);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(228, 247, 240, 0.78));
    box-shadow: 0 14px 28px rgba(16, 59, 47, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.82);
    translate: clamp(-212px, calc(18vw - 465px), -188px) 0;
    z-index: 2;
  }

  [data-screen-mode="dashboard"] .admal-dashboard-frame img {
    height: 155%;
    max-height: none;
    object-fit: cover;
    object-position: top left;
    animation: admalDashboardScreenPan 18s ease-in-out infinite;
    will-change: transform;
  }

  .admal-nfc-pulse {
    grid-area: pulse;
    position: relative;
    left: auto;
    top: auto;
    align-self: start;
    justify-self: center;
    width: clamp(82px, 7.2vw, 106px);
    height: clamp(82px, 7.2vw, 106px);
    translate: 30px -8px;
  }

  [data-screen-mode="dashboard"] .admal-nfc-pulse {
    justify-self: start;
    translate: 282px -198px;
  }

  .admal-flow {
    width: min(100%, 640px);
  }

  .admal-right-analytics {
    align-self: end;
    align-content: end;
    gap: 7px;
  }

  .admal-kpi-grid,
  .admal-analytics-grid {
    gap: 7px;
  }

  .admal-kpi {
    min-height: 68px;
    padding: 9px;
  }

  .admal-chart-card {
    min-height: 114px;
    padding: 10px;
  }

  .admal-bars {
    height: 66px;
  }

  .admal-insight-card {
    padding: 10px;
  }

  .admal-insight-card p {
    margin-bottom: 8px;
    line-height: 1.34;
  }

  .admal-recommendation {
    min-height: 32px;
  }
}

@media (max-width: 1024px) {
  .admal-anima {
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }

  .admal-slider {
    height: auto;
    min-height: 100svh;
    padding: 14px;
  }

  .admal-tabs-shell {
    order: -1;
    position: sticky;
    top: 10px;
    z-index: 20;
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    padding: 9px;
    border-radius: 22px;
  }

  .admal-tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
  }

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

  .admal-tab {
    flex: 0 0 auto;
    width: 148px;
    min-height: 46px;
    scroll-snap-align: center;
  }

  .admal-nav-button {
    width: 40px;
    height: 40px;
  }

  .admal-slide,
  .admal-slide.is-active {
    --hero-height: clamp(420px, 48svh, 500px);
    --phone-width: clamp(198px, 26vw, 236px);
    --phone-height: clamp(430px, 48svh, 512px);
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "center"
      "right";
    height: auto;
    min-height: auto;
    align-items: stretch;
  }

  .admal-left-panel,
  .admal-center-hero,
  .admal-right-analytics {
    min-height: auto;
  }

  .admal-left-panel {
    height: auto;
    padding: 18px;
  }

  .admal-title {
    font-size: clamp(1.24rem, 4.5vw, 1.92rem);
  }

  .admal-old-way {
    display: none;
  }

  .admal-center-hero {
    min-height: var(--hero-height);
  }

  .admal-hero-stack {
    height: var(--hero-height);
    max-height: 500px;
  }

  .admal-hero-visuals {
    height: calc(var(--hero-height) - 82px);
  }

  [data-screen-mode="dashboard"] .admal-hero-visuals {
    gap: 12px;
  }

  [data-screen-mode="dashboard"] .admal-dashboard-frame {
    width: min(76vw, 560px);
  }

  [data-screen-mode="dashboard"] .admal-product-wrap {
    flex-basis: auto;
    width: min(26%, 168px);
  }

  .admal-right-analytics {
    grid-template-columns: 1fr 1fr;
  }

  .admal-analytics-heading,
  .admal-kpi-grid,
  .admal-analytics-grid,
  .admal-insight-card {
    grid-column: 1 / -1;
  }
}

@media (min-width: 641px) and (max-width: 1024px) {
  .admal-slide,
  .admal-slide.is-active {
    --hero-height: clamp(468px, 52svh, 560px);
    --phone-width: clamp(210px, 22vw, 240px);
    --phone-height: clamp(408px, 46svh, 500px);
  }

  .admal-left-panel {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(220px, 0.94fr);
    grid-template-areas:
      "kicker old"
      "eyebrow old"
      "title old"
      "copy old"
      "steps old"
      "cta cta";
    align-items: start;
    align-content: start;
    gap: 10px 14px;
    height: auto;
    padding: 18px;
  }

  .admal-kicker {
    grid-area: kicker;
  }

  .admal-eyebrow {
    grid-area: eyebrow;
  }

  .admal-title {
    grid-area: title;
    font-size: clamp(1.52rem, 3.25vw, 2.22rem);
  }

  .admal-copy {
    grid-area: copy;
    max-width: 34rem;
    font-size: 0.92rem;
  }

  .admal-old-way {
    grid-area: old;
    display: grid;
    margin-top: 0;
    align-content: start;
    gap: 8px;
    min-width: 0;
    padding-top: 2px;
  }

  .admal-old-way p {
    text-align: left;
    font-size: 0.74rem;
  }

  .admal-old-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    align-items: start;
  }

  .admal-old-card {
    padding: 8px;
  }

  .admal-old-thumb {
    aspect-ratio: 1 / 0.96;
  }

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

  .admal-step {
    grid-template-columns: 26px minmax(0, 1fr);
    min-height: 48px;
    padding: 7px 10px;
    align-items: center;
  }

  .admal-step-copy strong,
  .admal-step-copy small {
    line-height: 1.18;
  }

  .admal-cta {
    grid-area: cta;
    width: 100%;
    min-height: 46px;
    margin-top: 4px;
  }

  .admal-center-hero {
    width: 100%;
    min-height: var(--hero-height);
    place-items: end center;
  }

  .admal-hero-stack {
    width: min(100%, 860px);
    height: var(--hero-height);
    max-height: 560px;
    gap: 12px;
  }

  .admal-hero-visuals {
    height: calc(var(--hero-height) - 122px);
    display: grid;
    grid-template-columns: minmax(0, 40fr) minmax(62px, 12fr) minmax(0, 34fr);
    align-items: center;
    justify-content: center;
    justify-items: stretch;
    column-gap: clamp(10px, 1.7vw, 18px);
    padding-inline: clamp(18px, 2.8vw, 30px);
    overflow: visible;
  }

  .admal-product-wrap {
    grid-column: 1;
    justify-self: end;
    align-self: center;
    flex: none;
    width: clamp(285px, 32vw, 350px);
    max-width: 100%;
    margin: 0;
    transform: rotate(-4deg);
  }

  .admal-product-device.is-asset img {
    max-height: clamp(214px, 23svh, 262px);
  }

  .admal-phone {
    grid-column: 3;
    justify-self: start;
    align-self: center;
    flex: none;
    width: clamp(210px, 22vw, 240px);
    height: auto;
    max-height: none;
    margin: 0;
    padding: 9px;
    border-radius: 30px;
    transform: rotate(1.25deg);
  }

  .admal-phone::before {
    width: 62px;
    height: 15px;
    top: 10px;
  }

  .admal-phone-screen {
    border-radius: 23px;
  }

  .admal-nfc-pulse {
    position: relative;
    grid-column: 2;
    left: auto;
    top: auto;
    justify-self: center;
    align-self: center;
    width: clamp(62px, 6.2vw, 78px);
    height: clamp(62px, 6.2vw, 78px);
  }

  .admal-tabs-shell {
    grid-template-columns: 50px minmax(0, 1fr) 50px;
    gap: 10px;
    padding: 8px 14px;
    overflow: visible;
  }

  .admal-tabs {
    gap: 8px;
    padding-inline: 28px 32px;
    scroll-padding-inline: 88px;
  }

  .admal-tab {
    width: 132px;
  }

  .admal-tab-label {
    font-size: 0.72rem;
  }

  .admal-tabs-shell > .admal-nav-button {
    z-index: 2;
  }

  #admal-slide-pet-tag .admal-product-wrap {
    width: clamp(250px, 30vw, 320px);
    transform: rotate(-4deg);
  }

  #admal-slide-pet-tag .admal-product-device.is-asset img {
    max-height: clamp(196px, 22svh, 238px);
  }

  #admal-slide-pet-tag .admal-phone {
    width: clamp(205px, 21vw, 232px);
  }

  [data-screen-mode="dashboard"] .admal-hero-visuals {
    grid-template-columns: minmax(0, 33fr) minmax(58px, 10fr) minmax(0, 51fr);
    align-items: center;
    justify-content: center;
    justify-items: stretch;
    column-gap: clamp(10px, 1.7vw, 18px);
    padding-inline: clamp(18px, 2.8vw, 30px);
    transform: translateX(-88px) scale(0.92);
    transform-origin: right center;
  }

  [data-screen-mode="dashboard"] .admal-product-wrap {
    grid-column: 1;
    align-self: center;
    justify-self: end;
    width: clamp(255px, 30vw, 330px);
    max-width: 100%;
    transform: rotate(-3deg);
  }

  [data-screen-mode="dashboard"] .admal-product-device.is-asset img {
    max-height: clamp(172px, 18svh, 216px);
  }

  [data-screen-mode="dashboard"] .admal-nfc-pulse {
    grid-column: 2;
    align-self: center;
    justify-self: center;
    width: clamp(62px, 6vw, 76px);
    height: clamp(62px, 6vw, 76px);
  }

  [data-screen-mode="dashboard"] .admal-dashboard-frame {
    grid-column: 3;
    align-self: center;
    justify-self: start;
    width: min(clamp(450px, 49vw, 540px), calc(100vw - 112px));
    max-width: calc(100vw - 112px);
    height: auto;
    aspect-ratio: 16 / 9.6;
    margin-bottom: 0;
    padding: 7px;
    border-radius: 20px;
    box-shadow: 0 16px 30px rgba(16, 59, 47, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.88);
    transform: none;
  }

  [data-screen-mode="dashboard"] .admal-dashboard-screen img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    object-position: 50% 8%;
    animation: none;
    transform: none;
  }

  #admal-slide-analytics-ai .admal-dashboard-screen img {
    height: 130%;
    object-position: 50% 3%;
    animation: admalDashboardTabletPan 12s ease-in-out infinite alternate;
  }

  .admal-flow {
    width: min(100%, 700px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 0;
  }

  @keyframes admalDashboardTabletPan {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-18%);
    }
  }
}

@media (max-width: 760px) {
  .admal-slide,
  .admal-slide.is-active {
    --hero-height: clamp(410px, 62svh, 480px);
    --phone-width: min(50vw, 224px);
    --phone-height: clamp(430px, 60svh, 502px);
    grid-template-columns: 1fr;
    grid-template-areas:
      "left"
      "center"
      "right";
    align-items: stretch;
  }

  .admal-analytics-grid,
  .admal-right-analytics {
    grid-template-columns: 1fr;
  }

  .admal-center-hero {
    min-height: var(--hero-height);
  }

  .admal-flow {
    position: relative;
    margin-top: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admal-hero-stack {
    height: var(--hero-height);
    max-height: 480px;
  }
}

@media (max-width: 640px) {
  body,
  .admal-page-shell,
  .admal-anima {
    overflow-x: hidden;
  }

  .admal-slider {
    padding: 10px;
  }

  .admal-slide,
  .admal-slide.is-active {
    --hero-height: clamp(486px, 66svh, 540px);
    --phone-width: min(46vw, 190px);
    --phone-height: clamp(350px, 52svh, 420px);
    gap: 12px;
  }

  .admal-tabs-shell {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    padding: 8px;
    border-radius: 18px;
  }

  .admal-nav-button {
    width: 44px;
    height: 44px;
  }

  .admal-tab {
    width: 124px;
    min-height: 42px;
    border-radius: 14px;
  }

  .admal-tab-label {
    font-size: 0.7rem;
  }

  .admal-left-panel {
    padding: 16px;
    border-radius: 22px;
  }

  .admal-title {
    font-size: clamp(1.18rem, 6.5vw, 1.72rem);
  }

  .admal-copy {
    font-size: 0.82rem;
  }

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

  .admal-step {
    grid-template-columns: 1fr;
    min-height: 70px;
    align-content: center;
  }

  .admal-old-grid,
  .admal-kpi-grid,
  .admal-mini-grid,
  .admal-swot {
    grid-template-columns: 1fr;
  }

  .admal-center-hero {
    min-height: var(--hero-height);
  }

  .admal-hero-stack {
    width: 100%;
    height: var(--hero-height);
    max-height: 540px;
  }

  .admal-product-wrap {
    flex-basis: 42%;
    width: min(42%, 168px);
    min-height: 0;
    animation: none;
  }

  .admal-phone {
    width: min(var(--phone-width), calc(var(--phone-height) * 0.461));
    height: var(--phone-height);
    max-height: var(--phone-height);
    padding: 9px;
    border-radius: 34px;
  }

  .admal-hero-visuals {
    gap: 12px;
    height: calc(var(--hero-height) - 104px);
    transform: translateX(-12px);
  }

  .admal-product-device.is-asset img {
    max-height: 210px;
  }

  [data-screen-mode="dashboard"] .admal-dashboard-frame {
    width: min(86vw, 330px);
  }

  #admal-slide-analytics-ai .admal-dashboard-frame {
    height: clamp(238px, 60vw, 270px);
    aspect-ratio: auto;
  }

  [data-screen-mode="dashboard"] .admal-product-wrap {
    width: min(34vw, 126px);
  }

  [data-screen-mode="dashboard"] .admal-dashboard-screen img {
    height: 118%;
    animation: admalScreenPan 12s ease-in-out infinite;
  }

  #admal-slide-analytics-ai .admal-dashboard-screen img {
    height: 152%;
    object-position: 50% 2%;
    animation: admalMobileDashboardPan 12s ease-in-out infinite alternate;
    transform: translateY(0);
  }

  .admal-phone::before {
    width: 70px;
    height: 15px;
    top: 10px;
  }

  .admal-phone-screen {
    border-radius: 25px;
  }

  .admal-nfc-pulse {
    left: 9%;
    top: 51%;
    width: 76px;
    height: 76px;
  }

  .admal-flow {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }

  .admal-flow-card {
    min-height: 46px;
    padding: 5px;
  }

  .admal-flow-icon {
    display: none;
  }

  .admal-flow-card strong {
    font-size: 0.64rem;
  }

  .admal-flow-card small {
    font-size: 0.56rem;
  }

  .admal-kpi:nth-child(n + 4),
  .admal-chart-card.is-ring,
  .admal-chart-card.is-line,
  .admal-chart-card.is-platforms,
  .admal-chart-card.is-mini-grid,
  .admal-chart-card.is-swot {
    display: none;
  }

  .admal-right-analytics .admal-kpi,
  .admal-right-analytics .admal-chart-card,
  .admal-right-analytics .admal-insight-card {
    animation: none;
  }

  .admal-arrow {
    top: calc(83% - 490px);
    width: 46px;
    height: 46px;
    opacity: 1;
    transform: translateY(-50%);
  }

  .admal-anima:has(#admal-slide-qr-packages.is-active) .admal-arrow,
  .admal-anima:has(#admal-slide-analytics-ai.is-active) .admal-arrow {
    top: calc(75% - 345px);
  }

  .admal-arrow-prev {
    left: 17px;
  }

  .admal-arrow-next {
    right: 17px;
  }

  @keyframes admalMobileDashboardPan {
    0% {
      transform: translateY(0);
    }
    100% {
      transform: translateY(-28%);
    }
  }
}

@media (min-width: 641px) and (max-width: 760px) {
  .admal-slide,
  .admal-slide.is-active {
    --hero-height: clamp(520px, 58svh, 590px);
    --phone-width: clamp(205px, 27vw, 225px);
    --phone-height: clamp(392px, 46svh, 450px);
  }

  .admal-tabs-shell {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    gap: 8px;
    padding: 8px 10px;
    overflow: visible;
  }

  .admal-tabs {
    gap: 7px;
    padding-inline: 22px 24px;
    scroll-padding-inline: 72px;
  }

  .admal-tab {
    width: 122px;
    min-height: 44px;
  }

  .admal-left-panel {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "eyebrow"
      "title"
      "copy"
      "steps"
      "old"
      "cta";
    gap: 10px;
    padding: 16px;
  }

  .admal-old-way p {
    text-align: center;
  }

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

  .admal-step {
    grid-template-columns: 26px minmax(0, 1fr);
    min-height: 48px;
    padding: 7px 9px;
  }

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

  .admal-center-hero {
    min-height: var(--hero-height);
  }

  .admal-hero-stack {
    width: 100%;
    height: var(--hero-height);
    max-height: 520px;
  }

  .admal-hero-visuals {
    grid-template-columns: minmax(0, 38fr) minmax(54px, 12fr) minmax(0, 34fr);
    column-gap: 8px;
    height: calc(var(--hero-height) - 130px);
    padding-inline: 12px;
  }

  .admal-product-wrap {
    width: clamp(235px, 34vw, 290px);
    max-width: 100%;
    transform: rotate(-4deg);
  }

  .admal-product-device.is-asset img {
    max-height: clamp(188px, 21svh, 218px);
  }

  .admal-phone {
    width: clamp(205px, 27vw, 225px);
    padding: 9px;
    transform: rotate(1.25deg);
  }

  #admal-slide-pet-tag .admal-product-wrap {
    width: clamp(220px, 32vw, 270px);
  }

  #admal-slide-pet-tag .admal-phone {
    width: clamp(198px, 26vw, 220px);
  }

  .admal-nfc-pulse {
    width: 56px;
    height: 56px;
  }

  [data-screen-mode="dashboard"] .admal-hero-visuals {
    grid-template-columns: minmax(0, 31fr) 56px minmax(0, 52fr);
    height: calc(var(--hero-height) - 130px);
    padding-inline: 12px;
    transform: translateX(-74px) scale(0.92);
    transform-origin: right center;
  }

  [data-screen-mode="dashboard"] .admal-product-wrap {
    align-self: center;
    width: clamp(215px, 31vw, 280px);
    max-width: 100%;
    transform: rotate(-3deg);
  }

  [data-screen-mode="dashboard"] .admal-product-device.is-asset img {
    max-height: clamp(158px, 18svh, 198px);
  }

  [data-screen-mode="dashboard"] .admal-dashboard-frame {
    width: min(clamp(390px, 54vw, 437px), calc(100vw - 124px));
    max-width: calc(100vw - 124px);
    padding: 7px;
    border-radius: 20px;
    transform: none;
  }

  #admal-slide-analytics-ai .admal-dashboard-screen img {
    height: 130%;
    object-position: 50% 3%;
    animation: admalDashboardTabletPan 12s ease-in-out infinite alternate;
  }

  .admal-flow {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
  }
}

@media (min-width: 761px) and (max-width: 819px) {
  .admal-slide,
  .admal-slide.is-active {
    --hero-height: clamp(540px, 58svh, 590px);
    --phone-width: clamp(205px, 27vw, 225px);
    --phone-height: clamp(392px, 46svh, 450px);
  }

  .admal-hero-stack {
    width: 100%;
    height: var(--hero-height);
    max-height: 590px;
  }

  .admal-hero-visuals {
    height: calc(var(--hero-height) - 130px);
  }

  .admal-phone {
    width: clamp(205px, 27vw, 225px);
  }

  [data-screen-mode="dashboard"] .admal-hero-visuals {
    grid-template-columns: minmax(0, 31fr) 56px minmax(0, 52fr);
    height: calc(var(--hero-height) - 130px);
    transform: translateX(-94px) scale(0.91);
    transform-origin: right center;
  }

  [data-screen-mode="dashboard"] .admal-product-wrap {
    width: clamp(215px, 31vw, 280px);
  }

  [data-screen-mode="dashboard"] .admal-product-device.is-asset img {
    max-height: clamp(158px, 18svh, 198px);
  }

  [data-screen-mode="dashboard"] .admal-dashboard-frame {
    width: min(clamp(390px, 54vw, 437px), calc(100vw - 124px));
    max-width: calc(100vw - 124px);
  }
}

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

  .admal-product-wrap,
  .admal-phone,
  .admal-phone-screen img,
  .admal-dashboard-frame img,
  .admal-nfc-pulse,
  .admal-nfc-pulse::before,
  .admal-nfc-pulse::after {
    animation: none !important;
  }

  .admal-dashboard-frame img {
    transform: none !important;
  }
}
