/* Vistorio Core Edition product page */

/* ─── Hero ─── */
.co-hero-title {
  margin: 0 0 1rem;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--ink);
}

.co-hero-tagline {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--red);
  margin: 0 0 0.35rem;
  line-height: 1.35;
}

.co-hero-tagline--sub {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.co-hero-tagline em,
.co-hero-tagline--sub em {
  font-style: normal;
  color: var(--ink);
  font-weight: 700;
}

.co-hero-scene {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
}

.co-orbit {
  position: relative;
  width: min(100%, 420px);
  aspect-ratio: 1;
}

.co-orbit__center {
  position: absolute;
  inset: 22%;
  background: var(--ink);
  border-radius: 20px;
  padding: 1rem;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.06);
  z-index: 2;
}

.co-orbit__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.co-orbit__head strong {
  font-size: 0.72rem;
  color: #fff;
}

.co-orbit__live {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--success);
}

.co-orbit__kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
}

.co-orbit__kpi {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 0.5rem 0.55rem;
}

.co-orbit__kpi label {
  display: block;
  font-size: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.1rem;
}

.co-orbit__kpi b {
  font-size: 0.78rem;
  font-weight: 800;
  color: #fff;
}

.co-orbit__kpi b.up { color: var(--success); }

.co-orbit__node {
  position: absolute;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.4rem 0.65rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  animation: hp-float-card 7s ease-in-out infinite;
}

.co-orbit__node--1 { top: 2%; left: 50%; transform: translateX(-50%); }
.co-orbit__node--2 { top: 18%; right: 0; animation-delay: -1s; }
.co-orbit__node--3 { top: 50%; right: -2%; transform: translateY(-50%); animation-delay: -2s; }
.co-orbit__node--4 { bottom: 12%; right: 8%; animation-delay: -3s; }
.co-orbit__node--5 { bottom: 2%; left: 50%; transform: translateX(-50%); animation-delay: -4s; }
.co-orbit__node--6 { bottom: 12%; left: 8%; animation-delay: -5s; }
.co-orbit__node--7 { top: 50%; left: -2%; transform: translateY(-50%); animation-delay: -1.5s; }
.co-orbit__node--8 { top: 18%; left: 0; animation-delay: -2.5s; }

@media (max-width: 1023px) {
  .co-orbit { width: 320px; }
  .co-orbit__node { font-size: 0.55rem; padding: 0.3rem 0.5rem; }
}

/* ─── Layout bands ─── */
.co-band--calm {
  background: var(--page-muted);
}

.co-band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.co-band--dark {
  background: var(--ink);
  color: #fff;
}

.co-band--dark .hp-eyebrow { color: rgba(255,255,255,0.5); }
.co-band--dark .hp-h2 { color: #fff; }
.co-band--dark .hp-lede { color: rgba(255,255,255,0.65); }

/* ─── Industry cards ─── */
.co-ind-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
}

.co-ind {
  padding: 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

.co-ind:hover {
  transform: translateY(-3px);
  border-color: rgba(177,18,38,0.2);
}

.co-ind__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: rgba(177,18,38,0.08);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.co-ind h3 {
  margin: 0 0 0.4rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.co-ind p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── Why choose ─── */
.co-why-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
}

.co-why {
  padding: 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease);
}

.co-why:hover { transform: translateY(-3px); }

.co-why__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: rgba(177,18,38,0.08);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.co-why h3 {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
  font-weight: 800;
}

.co-why p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── Module cards ─── */
.co-modules {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
}

.co-module {
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}

.co-module:hover {
  transform: translateY(-4px);
  border-color: rgba(177,18,38,0.25);
  box-shadow: var(--shadow-md);
}

.co-module__icon {
  font-size: 1.35rem;
  margin-bottom: 0.65rem;
}

.co-module h3 {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--ink);
}

.co-module p {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
  flex: 1;
}

.co-module span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--red);
}

/* ─── Executive dashboard (largest section) ─── */
.co-exec-mega {
  background: var(--ink);
  border-radius: 24px;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-lg);
}

.co-exec-mega__head {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.co-exec-mega__head h3 {
  margin: 0;
  font-size: 0.9rem;
  color: #fff;
}

.co-exec-mega__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 900px) {
  .co-exec-mega__grid { grid-template-columns: repeat(2, 1fr); }
}

.co-exec-mega__kpi {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 0.85rem;
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

.co-exec-mega__kpi:hover {
  transform: translateY(-2px);
  border-color: rgba(177,18,38,0.35);
}

.co-exec-mega__kpi label {
  display: block;
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.42);
  margin-bottom: 0.25rem;
}

.co-exec-mega__kpi strong {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
}

.co-exec-mega__kpi strong.up { color: var(--success); }
.co-exec-mega__kpi strong.warn { color: var(--warn); }

.co-exec-mega__chart {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 1rem;
}

.co-exec-mega__chart h4 {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.co-exec-mega__chart svg {
  width: 100%;
  height: 80px;
}

.co-exec-copy {
  margin-top: 2rem;
  text-align: center;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.co-exec-copy h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 800;
  color: var(--ink);
}

.co-exec-copy p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ─── Procurement flow ─── */
.co-proc-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.co-proc-step {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.co-proc-arrow {
  color: var(--red);
  font-weight: 800;
  font-size: 0.85rem;
}

.co-proc-highlight {
  margin-top: 1.5rem;
  padding: 1.25rem 1.5rem;
  background: var(--page-muted);
  border: 1px solid rgba(177,18,38,0.12);
  border-radius: 16px;
  text-align: center;
}

.co-proc-highlight p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}

/* ─── Simplicity compare ─── */
.co-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 700px) {
  .co-compare { grid-template-columns: 1fr; }
}

.co-compare-card {
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.co-compare-card--old {
  background: #f1f3f6;
}

.co-compare-card--new {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.co-compare-card h3 {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 800;
}

.co-compare-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.co-compare-card li {
  font-size: 0.82rem;
  line-height: 1.45;
  padding-left: 1.25rem;
  position: relative;
}

.co-compare-card--old li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #94a3b8;
  font-weight: 700;
}

.co-compare-card--new li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 800;
}

.co-sim-features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.co-sim-feat {
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

/* ─── Operations hub ─── */
.co-ops-hub {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .co-ops-hub { grid-template-columns: repeat(2, 1fr); }
}

.co-ops-tile {
  padding: 1.15rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

.co-ops-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(177,18,38,0.2);
}

.co-ops-tile__icon {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.co-ops-tile h3 {
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
  font-weight: 800;
}

.co-ops-tile span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--success);
}

.co-ops-tile span.live::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--success);
  margin-right: 0.25rem;
  animation: hp-pulse 1.5s ease infinite;
}

/* ─── Mobile ─── */
.co-mobile {
  background: var(--ink);
  color: #fff;
}

.co-mobile .hp-eyebrow { color: rgba(255,255,255,0.5); }
.co-mobile .hp-h2 { color: #fff; }
.co-mobile .hp-lede { color: rgba(255,255,255,0.65); }

.co-mobile__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 900px) {
  .co-mobile__layout { grid-template-columns: 1fr; }
}

.co-phones {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.co-phone {
  width: 160px;
  background: #0a0e12;
  border-radius: 24px;
  padding: 0.5rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  border: 2px solid rgba(255,255,255,0.08);
}

.co-phone--2 { transform: translateY(1.5rem); }

.co-phone__screen {
  background: var(--surface);
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.co-phone__header {
  padding: 0.75rem;
  background: var(--ink);
  color: #fff;
}

.co-phone__header strong {
  display: block;
  font-size: 0.72rem;
}

.co-phone__header span {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.5);
}

.co-phone__body { padding: 0.65rem; }

.co-phone__row {
  padding: 0.5rem 0.6rem;
  margin-bottom: 0.4rem;
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ink);
}

.co-mobile-list {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.co-mobile-list li {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding-left: 1.25rem;
  position: relative;
}

.co-mobile-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 800;
}

/* ─── Benefits ─── */
.co-benefits {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(13rem, 1fr));
}

.co-benefit {
  padding: 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease);
}

.co-benefit:hover { transform: translateY(-3px); }

.co-benefit__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: rgba(177,18,38,0.08);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.co-benefit h3 {
  margin: 0 0 0.4rem;
  font-size: 0.92rem;
  font-weight: 800;
}

.co-benefit p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── Implementation timeline ─── */
.co-timeline {
  display: grid;
  gap: 0;
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}

.co-timeline::before {
  content: '';
  position: absolute;
  left: 1.15rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.co-step {
  display: grid;
  grid-template-columns: 2.5rem 1fr;
  gap: 1rem;
  padding-bottom: 1.5rem;
  position: relative;
}

.co-step:last-child { padding-bottom: 0; }

.co-step__num {
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.co-step__body h3 {
  margin: 0 0 0.25rem;
  font-size: 0.92rem;
  font-weight: 800;
}

.co-step__body p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── What's included ─── */
.co-included {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
  gap: 0.65rem;
}

.co-included-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
}

.co-included-item::before {
  content: '✓';
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 8px;
  background: rgba(13,122,78,0.1);
  color: var(--success);
  font-weight: 800;
  font-size: 0.75rem;
  display: grid;
  place-items: center;
}

/* ─── Final CTA ─── */
.co-final {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: var(--ink);
  text-align: center;
}

.co-final .hp-h2 {
  color: #fff;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.co-final .hp-lede {
  color: rgba(255,255,255,0.65);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
