:root {
  --bg: #07111f;
  --bg-2: #0b1d33;
  --card: rgba(20, 35, 55, 0.88);
  --card-soft: rgba(18, 31, 49, 0.72);
  --line: rgba(91, 166, 255, 0.35);
  --blue: #2f91ff;
  --blue-2: #72b7ff;
  --green: #35c66b;
  --green-2: #8df0ac;
  --white: #ffffff;
  --muted: rgba(255,255,255,0.72);
  --muted-2: rgba(255,255,255,0.52);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 20%, rgba(47,145,255,0.28), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(53,198,107,0.12), transparent 26%),
    linear-gradient(135deg, #030914, var(--bg), #081b31);
  color: var(--white);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  pointer-events: none;
}

.demo-shell {
  width: min(1180px, calc(100vw - 28px));
  margin: 0 auto;
  padding: 28px 0 34px;
}

.hero-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr minmax(310px, 430px) 0.82fr;
  gap: 26px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(114,183,255,0.18);
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(9,24,43,0.96), rgba(7,17,31,0.92)),
    radial-gradient(circle at 50% 20%, rgba(47,145,255,0.22), transparent 40%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -42% 12%;
  height: 48%;
  background: linear-gradient(90deg, transparent, rgba(47,145,255,0.14), transparent);
  filter: blur(28px);
  transform: rotate(-4deg);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-2);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 12px;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.subtitle {
  margin: 16px 0 28px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 600;
}

.side-steps {
  display: grid;
  gap: 12px;
}

.side-step {
  appearance: none;
  border: 1px solid rgba(114,183,255,0.16);
  background: rgba(12, 28, 49, 0.72);
  color: var(--white);
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 12px;
  border-radius: 18px;
  cursor: pointer;
  transition: 260ms ease;
}

.side-step:hover,
.side-step.is-active {
  border-color: rgba(47,145,255,0.75);
  background: rgba(47,145,255,0.16);
  transform: translateX(4px);
}

.side-icon {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: rgba(47,145,255,0.14);
  border: 1px solid rgba(114,183,255,0.28);
  color: var(--blue-2);
  font-weight: 900;
}

.side-step strong {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
}

.side-step small {
  display: block;
  color: var(--muted);
  margin-top: 2px;
}

.phone-wrap {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.phone {
  width: min(100%, 390px);
  border: 10px solid #090c11;
  border-radius: 38px;
  padding: 18px;
  background: linear-gradient(180deg, #08172a, #06111f);
  box-shadow:
    0 18px 58px rgba(0,0,0,0.62),
    0 0 0 1px rgba(255,255,255,0.12) inset,
    0 0 48px rgba(47,145,255,0.22);
}

.phone-bar,
.app-header,
.progress {
  display: flex;
  align-items: center;
}

.phone-bar {
  justify-content: space-between;
  color: rgba(255,255,255,0.86);
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 14px;
}

.phone-dot {
  width: 84px;
  height: 24px;
  border-radius: 999px;
  background: #020408;
}

.app-header {
  gap: 10px;
  margin-bottom: 18px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 2px solid var(--blue);
  background: linear-gradient(135deg, rgba(47,145,255,0.22), rgba(53,198,107,0.12));
  box-shadow: 0 0 22px rgba(47,145,255,0.24);
}

.chef-hat {
  font-size: 23px;
  color: #fff;
}

.brand-main,
.brand-sub {
  font-weight: 900;
  line-height: 0.96;
  font-size: 24px;
}

.brand-sub {
  color: var(--blue);
}

.menu-icon {
  margin-left: auto;
  color: var(--muted);
  font-size: 23px;
}

.progress {
  margin: 0 22px 16px;
}

.progress-step {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(47,145,255,0.55);
  border: 2px solid rgba(255,255,255,0.62);
  font-weight: 900;
  transition: 280ms ease;
}

.progress-step.is-active,
.progress-step.is-done {
  background: var(--blue);
  box-shadow: 0 0 18px rgba(47,145,255,0.74);
}

.progress-step.is-done {
  background: var(--green);
}

.progress-line {
  flex: 1;
  height: 3px;
  background: rgba(114,183,255,0.42);
}

.app-card {
  border: 1px solid rgba(114,183,255,0.25);
  background: var(--card);
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.22);
  opacity: 0.55;
  transform: scale(0.985);
  transition: 350ms ease;
}

.app-card.is-active,
.app-card.is-done {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(47,145,255,0.72);
}

.app-card.is-done {
  border-color: rgba(53,198,107,0.72);
}

.card-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.number-badge {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--blue);
  font-weight: 900;
  box-shadow: 0 0 14px rgba(47,145,255,0.5);
}

h2 {
  margin: 0;
  font-size: 18px;
}

.card-heading p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.temperature-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fridge {
  position: relative;
  width: 76px;
  height: 86px;
  border-radius: 10px;
  background: linear-gradient(135deg, #b8c0ca, #5b6775);
  box-shadow: inset -8px -8px 15px rgba(0,0,0,0.24);
}

.fridge-door {
  position: absolute;
  left: 36px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(0,0,0,0.22);
}

.thermometer {
  position: absolute;
  right: 8px;
  bottom: 9px;
  width: 12px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(to top, var(--blue), rgba(255,255,255,0.8));
  border: 3px solid rgba(255,255,255,0.8);
  box-shadow: 0 0 12px rgba(47,145,255,0.8);
}

.status-box {
  flex: 1;
  border: 1px solid rgba(53,198,107,0.55);
  border-radius: 16px;
  padding: 12px;
  background: rgba(8, 22, 36, 0.72);
}

.label {
  color: var(--muted);
  font-weight: 700;
  margin-right: 7px;
}

.temp-value {
  display: inline-block;
  color: var(--green-2);
  font-size: 25px;
  font-variant-numeric: tabular-nums;
}

.status-box small {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.86);
}

.mini-check,
.task-check {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

.flow-arrow {
  text-align: center;
  color: var(--blue-2);
  font-size: 27px;
  line-height: 1.05;
  text-shadow: 0 0 15px rgba(47,145,255,0.9);
  animation: arrowPulse 1.2s infinite ease-in-out;
}

.task-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.task-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border-radius: 13px;
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.88);
  transform: translateX(-8px);
  opacity: 0.42;
  transition: 340ms ease;
}

.task-list li.is-checked {
  opacity: 1;
  transform: translateX(0);
  background: rgba(53,198,107,0.13);
}

.task-check {
  opacity: 0.25;
  transform: scale(0.7);
  transition: 280ms ease;
}

li.is-checked .task-check {
  opacity: 1;
  transform: scale(1);
}

.audit-success {
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 17px;
  padding: 15px;
  background: linear-gradient(135deg, rgba(53,198,107,0.82), rgba(31,121,55,0.86));
  border: 1px solid rgba(141,240,172,0.65);
  transform: translateY(8px);
  opacity: 0.45;
  transition: 420ms ease;
}

.audit-card.is-active .audit-success,
.audit-card.is-done .audit-success {
  transform: translateY(0);
  opacity: 1;
}

.shield {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 4px solid rgba(255,255,255,0.92);
  border-radius: 22px 22px 26px 26px;
  font-size: 29px;
  font-weight: 900;
}

.audit-success strong,
.audit-success small {
  display: block;
}

.audit-success strong {
  font-size: 23px;
}

.audit-success small {
  color: rgba(255,255,255,0.86);
}

.benefits {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.benefit {
  padding: 18px;
  border-radius: 22px;
  background: rgba(12, 28, 49, 0.64);
  border: 1px solid rgba(114,183,255,0.14);
  text-align: center;
}

.benefit-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 10px;
  border-radius: 999px;
  border: 1px solid rgba(114,183,255,0.28);
  color: var(--blue-2);
  background: rgba(47,145,255,0.12);
  font-weight: 900;
}

.benefit strong {
  display: block;
  text-transform: uppercase;
  font-size: 15px;
}

.benefit small {
  display: block;
  color: var(--muted);
  margin-top: 5px;
}

.controls {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.primary-cta,
.secondary-cta {
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 900;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  transition: 240ms ease;
}

.primary-cta {
  color: white;
  background: linear-gradient(135deg, var(--blue), #1776e5);
  box-shadow: 0 12px 30px rgba(47,145,255,0.34);
}

.secondary-cta {
  color: var(--white);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
}

.primary-cta:hover,
.secondary-cta:hover {
  transform: translateY(-2px);
}

.demo-running .temperature-card {
  animation: cardGlow 1.2s ease both;
}

.demo-running .temp-value {
  animation: tempPop 800ms ease both;
}

.demo-complete .audit-card {
  box-shadow: 0 0 32px rgba(53,198,107,0.3);
}

@keyframes arrowPulse {
  0%, 100% { opacity: 0.55; transform: translateY(-1px); }
  50% { opacity: 1; transform: translateY(2px); }
}

@keyframes cardGlow {
  0% { box-shadow: 0 12px 26px rgba(0,0,0,0.22); }
  50% { box-shadow: 0 0 30px rgba(47,145,255,0.5); }
  100% { box-shadow: 0 12px 26px rgba(0,0,0,0.22); }
}

@keyframes tempPop {
  0% { transform: scale(0.75); filter: blur(2px); opacity: 0.2; }
  100% { transform: scale(1); filter: blur(0); opacity: 1; }
}

@media (max-width: 980px) {
  .hero-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .hero-copy,
  .benefits {
    max-width: 620px;
    margin: 0 auto;
    width: 100%;
  }

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

@media (max-width: 620px) {
  .demo-shell {
    width: min(100vw - 16px, 430px);
    padding: 8px 0 18px;
  }

  .hero-card {
    padding: 18px;
    border-radius: 24px;
    gap: 18px;
  }

  .side-steps {
    display: none;
  }

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

  .phone {
    border-width: 7px;
    padding: 13px;
    border-radius: 30px;
  }

  .brand-main,
  .brand-sub {
    font-size: 21px;
  }

  h2 {
    font-size: 16px;
  }

  .temperature-row {
    gap: 8px;
  }

  .fridge {
    width: 56px;
    height: 74px;
  }

  .temp-value {
    font-size: 21px;
  }

  .controls {
    padding-inline: 10px;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
    text-align: center;
  }
}


/* MyChef icon in app header */
.brand-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  border-radius: 10px;
}


/* Correcte MyChef-logo weergave */
.brand-mark {
  overflow: hidden;
}

.brand-logo {
  width: 46px !important;
  height: 46px !important;
  object-fit: contain !important;
  display: block !important;
  border-radius: 12px !important;
}


/* Soepeler demo-scrollen tussen de stappen */
html {
  scroll-behavior: smooth;
}

.app-card,
.phone-wrap,
.hero-card {
  scroll-margin-top: 24px;
  scroll-margin-bottom: 24px;
}
