:root {
  --paper: #f7f2e8;
  --paper-soft: #fbf8f2;
  --surface: #ffffff;
  --surface-warm: #f5eddf;
  --ink: #3c3527;
  --body: #594f40;
  --muted: #7a6e5e;
  --line: #ded3c2;
  --line-strong: #c8bba7;
  --green: #1f8a5b;
  --green-dark: #12633f;
  --green-soft: #e3f1e9;
  --shadow: 0 24px 80px rgba(85, 70, 46, 0.14);
  --shadow-small: 0 12px 36px rgba(85, 70, 46, 0.11);
  --radius: 16px;
  --radius-small: 12px;
  --max: 1280px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Cabinet Grotesk", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 4.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

h1 span {
  color: var(--green);
  white-space: nowrap;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.35rem;
  line-height: 1.1;
}

p {
  color: var(--body);
}

::selection {
  background: rgba(31, 138, 91, 0.2);
}

:focus-visible {
  outline: 3px solid rgba(31, 138, 91, 0.5);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(200, 187, 167, 0.72);
  background: rgba(247, 242, 232, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  max-width: var(--max);
  height: 72px;
  margin: 0 auto;
  padding: 0 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--green);
  color: white;
  box-shadow: 0 6px 18px rgba(31, 138, 91, 0.2);
}

.brand-icon svg {
  width: 17px;
  height: 17px;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.nav-menu a,
.text-link {
  color: var(--body);
  font-size: 0.94rem;
  font-weight: 600;
  transition: color 180ms ease;
}

.nav-menu a:hover,
.text-link:hover {
  color: var(--green);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.6rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button-primary {
  background: var(--green);
  color: white;
  box-shadow: 0 10px 28px rgba(31, 138, 91, 0.22);
}

.button-primary:hover {
  background: var(--green-dark);
  box-shadow: 0 14px 34px rgba(31, 138, 91, 0.28);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--green);
  background: var(--surface);
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
}

.button-large {
  min-height: 60px;
  padding: 0 32px;
  font-size: 1.05rem;
}

.section-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 128px 28px;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(540px, 1.15fr);
  align-items: center;
  gap: 40px;
  max-width: 1440px;
  min-height: calc(100dvh - 72px);
  margin: 0 auto;
  padding: 72px 28px 64px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 34px;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
}

.product-window {
  overflow: hidden;
  border: 1px solid rgba(222, 211, 194, 0.9);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transition:
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 500ms ease;
}

.product-window:hover {
  transform: translateY(-6px) rotate(-0.35deg);
  box-shadow: 0 34px 95px rgba(85, 70, 46, 0.2);
}

.product-window-main {
  position: absolute;
  top: 5%;
  left: 0;
  width: 100%;
  transform: rotate(1.2deg);
}

.product-window-main:hover {
  transform: translateY(-6px) rotate(0.5deg);
}

.window-bar {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

.window-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--line-strong);
}

.window-bar span:first-child {
  background: #d9886b;
}

.window-bar span:nth-child(2) {
  background: #d6af55;
}

.window-bar span:nth-child(3) {
  background: #5eaa7e;
}

.window-bar b {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
}

.product-window img {
  width: 100%;
  height: auto;
  image-rendering: auto;
  backface-visibility: hidden;
}

.product-window-main img {
  width: 118%;
  max-width: none;
  transform: translateX(-7%);
}

.feature-window img {
  width: 126%;
  max-width: none;
  transform: translateX(-7%);
}

.phone-shot {
  position: absolute;
  right: 0;
  bottom: -3%;
  width: 27%;
  aspect-ratio: 0.355;
  overflow: hidden;
  border: 7px solid var(--surface);
  border-radius: 28px;
  background: #16120c;
  box-shadow: 0 22px 65px rgba(60, 53, 39, 0.28);
  transform: rotate(-3deg);
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
}

.phone-shot:hover {
  transform: rotate(-1deg) translateY(-8px);
}

.phone-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.proof-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 36px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.proof-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.proof-items span {
  color: var(--ink);
  font-size: 1.02rem;
  font-weight: 700;
  text-align: center;
}

.section-intro {
  max-width: 820px;
  margin-bottom: 64px;
}

.section-intro p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 1.15rem;
}

.stage-layout {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  align-items: center;
  gap: 54px;
}

.feature-notes {
  display: grid;
  gap: 0;
}

.feature-notes article {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.feature-notes article:first-child {
  border-top: 1px solid var(--line);
}

.feature-notes span {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
}

.feature-notes p {
  margin: 0;
}

.feature-window {
  align-self: center;
}

.checkin-demo-window:hover {
  transform: translateY(-6px);
}

.checkin-demo,
.ota-demo,
.archive-demo,
.assistant-demo,
.reminder-demo,
.dossier-demo,
.guest-demo {
  --demo-bg: #120f0a;
  --demo-surface: #1d1810;
  --demo-surface-2: #241d13;
  --demo-ivory: #f7f1e8;
  --demo-ivory-2: #e9e0d1;
  --demo-muted: #a99c86;
  --demo-muted-2: #867a67;
  --demo-green: #2fa97c;
  --demo-green-ink: #052117;
  --demo-brass: #c4a882;
  --demo-line: rgba(255, 240, 220, 0.08);
  position: relative;
  display: grid;
  min-height: 760px;
  place-items: center;
  overflow: hidden;
  color: var(--demo-ivory);
  background:
    radial-gradient(700px 460px at 50% -8%, rgba(47, 169, 124, 0.16), transparent 62%),
    radial-gradient(600px 400px at 88% 112%, rgba(196, 168, 130, 0.12), transparent 58%),
    #0a0805;
  isolation: isolate;
}

.checkin-demo::before,
.checkin-demo::after,
.ota-demo::before,
.ota-demo::after,
.archive-demo::before,
.archive-demo::after {
  position: absolute;
  z-index: -1;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(196, 168, 130, 0.1);
  border-radius: 50%;
  content: "";
}

.checkin-demo::before,
.ota-demo::before,
.archive-demo::before {
  top: 16%;
  left: -18%;
}

.checkin-demo::after,
.ota-demo::after,
.archive-demo::after {
  right: -17%;
  bottom: 8%;
  width: 350px;
  height: 350px;
}

.checkin-demo p,
.checkin-demo h3,
.ota-demo p,
.ota-demo h3,
.archive-demo p,
.archive-demo h3,
.assistant-demo p,
.assistant-demo h3,
.reminder-demo p,
.reminder-demo h3,
.dossier-demo p,
.dossier-demo h3,
.guest-demo p,
.guest-demo h3 {
  margin: 0;
}

.checkin-demo-phone-wrap {
  display: grid;
  place-items: center;
}

.checkin-demo-phone {
  position: relative;
  width: 320px;
  height: 660px;
  flex: none;
  padding: 10px;
  border-radius: 44px;
  background: #050506;
  box-shadow:
    0 40px 90px -30px rgba(0, 0, 0, 0.9),
    0 0 0 1px rgba(255, 255, 255, 0.07);
}

.checkin-demo.is-running .checkin-demo-phone,
.ota-demo.is-running .checkin-demo-phone,
.archive-demo.is-running .checkin-demo-phone,
.assistant-demo.is-running .checkin-demo-phone,
.reminder-demo.is-running .checkin-demo-phone,
.dossier-demo.is-running .checkin-demo-phone,
.guest-demo.is-running .checkin-demo-phone {
  animation: checkin-phone-in 900ms cubic-bezier(0.2, 0.9, 0.25, 1) both;
}

@keyframes checkin-phone-in {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.checkin-demo-notch {
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 4;
  width: 110px;
  height: 26px;
  border-radius: 0 0 16px 16px;
  background: #050506;
  transform: translateX(-50%);
}

.checkin-demo-screen {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border-radius: 35px;
  background: var(--demo-bg);
}

.checkin-demo-statusbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 26px 4px;
  color: #e8dcc9;
  font-size: 12px;
  font-weight: 600;
}

.checkin-demo-signal {
  letter-spacing: 1px;
}

.checkin-demo-battery {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 11px;
  margin-left: 6px;
  border: 1.5px solid #e8dcc9;
  border-radius: 3px;
}

.checkin-demo-battery::after {
  position: absolute;
  inset: 1.5px 6px 1.5px 1.5px;
  border-radius: 1px;
  background: #e8dcc9;
  content: "";
}

.checkin-demo-view {
  position: absolute;
  inset: 44px 0 0;
  display: flex;
  flex-direction: column;
  padding: 14px 20px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease;
}

.checkin-demo-view.is-active {
  opacity: 1;
}

[data-checkin-view="boot"] {
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.checkin-demo-logo {
  display: flex;
  align-items: center;
  gap: 9px;
}

.checkin-demo-logo span {
  color: var(--demo-ivory);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.checkin-demo-logo i,
.checkin-demo-caption-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--demo-green);
  box-shadow: 0 0 12px var(--demo-green);
  animation: checkin-pulse 1.4s ease-in-out infinite;
}

@keyframes checkin-pulse {
  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

[data-checkin-view="boot"] > p {
  color: var(--demo-muted);
  font-size: 12.5px;
}

.checkin-demo-view > h3 {
  color: var(--demo-ivory);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.checkin-demo-eyebrow {
  margin-bottom: 3px !important;
  color: var(--demo-brass);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.checkin-demo-progress {
  display: flex;
  gap: 6px;
  margin: 10px 0 16px;
}

.checkin-demo-progress span,
.checkin-demo-progress i {
  height: 4px;
  flex: 1;
  border-radius: 2px;
  background: rgba(255, 240, 220, 0.12);
}

.checkin-demo-progress span {
  background: var(--demo-green);
}

.checkin-demo-scan {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
  padding: 16px;
  border: 1px solid var(--demo-line);
  border-radius: 18px;
  background: var(--demo-surface);
}

.checkin-demo-document {
  position: relative;
  width: 210px;
  height: 132px;
  overflow: hidden;
  border-radius: 12px;
  background: linear-gradient(135deg, #e9dcc2, #d8c39c);
  box-shadow: 0 10px 26px -10px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: scale(0.6);
  transition:
    transform 700ms cubic-bezier(0.2, 0.9, 0.25, 1),
    opacity 500ms ease;
}

[data-checkin-view="scan"].is-active .checkin-demo-document {
  opacity: 1;
  transform: scale(1);
}

.checkin-demo-document > b {
  position: absolute;
  top: 14px;
  right: 14px;
  color: #5b4a28;
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
}

.checkin-demo-photo {
  position: absolute;
  top: 16px;
  left: 14px;
  width: 46px;
  height: 60px;
  border-radius: 6px;
  background: linear-gradient(160deg, #b7a37e, #8f7c58);
}

.checkin-demo-document > i {
  position: absolute;
  left: 74px;
  height: 7px;
  border-radius: 3px;
  background: rgba(60, 45, 20, 0.35);
}

.checkin-demo-document .line-1 { top: 18px; width: 112px; }
.checkin-demo-document .line-2 { top: 34px; width: 88px; }
.checkin-demo-document .line-3 { top: 56px; width: 104px; }
.checkin-demo-document .line-4 { top: 72px; width: 70px; }

.checkin-demo-mrz {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  height: 20px;
  border-radius: 4px;
  background: repeating-linear-gradient(90deg, rgba(60, 45, 20, 0.4) 0 5px, transparent 5px 9px);
}

.checkin-demo-scanline {
  position: absolute;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--demo-green), transparent);
  box-shadow: 0 0 16px 3px rgba(47, 169, 124, 0.7);
  opacity: 0;
}

[data-checkin-view="scan"].is-active .checkin-demo-scanline {
  animation: checkin-sweep 1.6s ease-in-out 500ms 2;
}

@keyframes checkin-sweep {
  from { top: 0; opacity: 1; }
  to { top: 129px; opacity: 1; }
}

.checkin-demo-flash {
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
}

[data-checkin-view="scan"].is-scanned .checkin-demo-flash {
  animation: checkin-flash 500ms ease-out;
}

@keyframes checkin-flash {
  30% { opacity: 0.85; }
}

.checkin-demo-scan > p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--demo-muted);
  font-size: 12px;
}

.checkin-demo-scan > p span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 6px;
  background: var(--demo-surface-2);
  font-size: 10px;
}

.checkin-demo-scan > strong {
  color: var(--demo-green);
  font-size: 12.5px;
  opacity: 0;
  transform: translateY(4px);
  transition: 400ms ease;
}

[data-checkin-view="scan"].is-scanned .checkin-demo-scan > strong {
  opacity: 1;
  transform: none;
}

.checkin-demo-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 11px;
}

.checkin-demo-field small {
  color: var(--demo-muted-2);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkin-demo-field > div {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border: 1px solid var(--demo-line);
  border-radius: 11px;
  background: var(--demo-surface);
  transition: 300ms ease;
}

.checkin-demo-field span {
  color: var(--demo-ivory);
  font-size: 13.5px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(6px);
  transition: 350ms ease;
}

.checkin-demo-field b {
  display: grid;
  width: 19px;
  height: 19px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  color: var(--demo-green-ink);
  background: var(--demo-green);
  font-size: 11px;
  opacity: 0;
  transform: scale(0.4);
  transition: 300ms ease;
}

.checkin-demo-field.is-filled > div {
  border-color: rgba(47, 169, 124, 0.4);
  box-shadow: 0 0 0 3px rgba(47, 169, 124, 0.1);
}

.checkin-demo-field.is-filled span,
.checkin-demo-field.is-filled b {
  opacity: 1;
  transform: none;
}

.checkin-demo-submit {
  position: relative;
  margin-top: auto;
}

.checkin-demo-submit > span {
  display: block;
  padding: 16px;
  border-radius: 13px;
  color: var(--demo-green-ink);
  background: var(--demo-green);
  box-shadow: 0 10px 26px -8px rgba(47, 169, 124, 0.55);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: transform 120ms ease;
}

.checkin-demo-submit > b {
  position: absolute;
  right: 36px;
  bottom: -30px;
  font-size: 44px;
  opacity: 0;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.5));
  transform: translateY(30px) rotate(8deg);
  transition: 450ms ease;
}

[data-checkin-view="form"].is-finger-in .checkin-demo-submit > b {
  opacity: 1;
  transform: translateY(-6px) rotate(8deg);
}

[data-checkin-view="form"].is-pressed .checkin-demo-submit > span {
  transform: scale(0.95);
}

[data-checkin-view="form"].is-pressed .checkin-demo-submit > b {
  transform: translateY(-16px) rotate(8deg);
}

.checkin-demo-submit > i {
  position: absolute;
  bottom: 26px;
  left: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(5, 33, 23, 0.5);
  opacity: 0;
  transform: translateX(-50%) scale(0);
}

[data-checkin-view="form"].is-pressed .checkin-demo-submit > i {
  animation: checkin-ripple 600ms ease-out;
}

@keyframes checkin-ripple {
  0% { opacity: 0.6; transform: translateX(-50%) scale(0); }
  100% { opacity: 0; transform: translateX(-50%) scale(9); }
}

[data-checkin-view="done"] {
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.checkin-demo-check {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border-radius: 50%;
  background: var(--demo-green);
  box-shadow:
    0 0 0 12px rgba(47, 169, 124, 0.14),
    0 16px 40px -10px rgba(47, 169, 124, 0.6);
  transform: scale(0);
}

[data-checkin-view="done"].is-active .checkin-demo-check {
  animation: checkin-pop 600ms cubic-bezier(0.2, 1.5, 0.4, 1) forwards;
}

@keyframes checkin-pop {
  to { transform: scale(1); }
}

.checkin-demo-check svg {
  width: 48px;
  height: 48px;
}

.checkin-demo-check path {
  fill: none;
  stroke: var(--demo-green-ink);
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6;
}

[data-checkin-view="done"].is-active .checkin-demo-check path {
  animation: checkin-draw 500ms 350ms ease forwards;
}

@keyframes checkin-draw {
  to { stroke-dashoffset: 0; }
}

[data-checkin-view="done"] > h3,
[data-checkin-view="done"] > p {
  opacity: 0;
  transform: translateY(8px);
}

[data-checkin-view="done"] > h3 {
  margin-top: 14px;
  font-size: 24px;
}

[data-checkin-view="done"] > p {
  color: var(--demo-muted);
  font-size: 13px;
}

[data-checkin-view="done"].is-active > h3 {
  animation: checkin-rise 500ms 400ms forwards;
}

[data-checkin-view="done"].is-active > p {
  animation: checkin-rise 500ms 550ms forwards;
}

@keyframes checkin-rise {
  to { opacity: 1; transform: none; }
}

.checkin-demo-sent-list {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}

.checkin-demo-sent-list > div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border: 1px solid var(--demo-line);
  border-radius: 12px;
  background: var(--demo-surface);
  opacity: 0;
  transform: translateX(-10px);
}

[data-checkin-view="done"].is-active .checkin-demo-sent-list > div {
  animation: checkin-slide-in 450ms forwards;
}

[data-checkin-view="done"].is-active .checkin-demo-sent-list > div:nth-child(1) { animation-delay: 700ms; }
[data-checkin-view="done"].is-active .checkin-demo-sent-list > div:nth-child(2) { animation-delay: 900ms; }
[data-checkin-view="done"].is-active .checkin-demo-sent-list > div:nth-child(3) { animation-delay: 1100ms; }

@keyframes checkin-slide-in {
  to { opacity: 1; transform: none; }
}

.checkin-demo-sent-list > div > b {
  display: grid;
  width: 22px;
  height: 22px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  color: var(--demo-green-ink);
  background: var(--demo-green);
  font-size: 12px;
}

.checkin-demo-sent-list span {
  display: flex;
  flex-direction: column;
}

.checkin-demo-sent-list strong {
  color: var(--demo-ivory-2);
  font-size: 13px;
  font-weight: 600;
}

.checkin-demo-sent-list small {
  color: var(--demo-muted-2);
  font-size: 11px;
}

.checkin-demo-caption {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 20px 12px 17px;
  border: 1px solid rgba(196, 168, 130, 0.38);
  border-radius: 999px;
  color: var(--demo-ivory);
  background: rgba(29, 24, 16, 0.94);
  box-shadow:
    0 16px 44px -12px rgba(0, 0, 0, 0.75),
    0 0 0 5px rgba(47, 169, 124, 0.06);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateX(-50%) scale(0.96);
  transition: opacity 350ms ease, transform 350ms ease;
  white-space: nowrap;
}

.checkin-demo-caption::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 15px;
  height: 15px;
  margin-left: -7px;
  border-right: 1px solid rgba(196, 168, 130, 0.38);
  border-bottom: 1px solid rgba(196, 168, 130, 0.38);
  background: rgba(29, 24, 16, 0.94);
  content: "";
  transform: rotate(45deg);
}

.checkin-demo-caption-dot {
  display: block;
  width: 10px;
  height: 10px;
  flex: none;
}

.checkin-demo-caption.is-active {
  animation: checkin-caption-blink 2.6s ease-in-out infinite;
}

@keyframes checkin-caption-blink {
  0%, 100% { opacity: 1; transform: translateX(-50%) scale(1); }
  50% { opacity: 0.48; transform: translateX(-50%) scale(0.975); }
}

.checkin-demo-brandline {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  color: var(--demo-muted-2);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-align: center;
}

.checkin-demo-brandline strong {
  color: var(--demo-ivory);
}

.mid-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-top: 36px;
  padding-bottom: 36px;
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: var(--shadow-small);
}

.mid-cta p {
  margin-bottom: 2px;
  color: white;
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
  font-weight: 700;
  line-height: 1.15;
}

.mid-cta span {
  color: #d8d0c2;
}

.mid-cta .button-primary {
  background: #3baa79;
}

.calendar-story {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 56px;
}

.calendar-copy h2 {
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
}

.calendar-copy > p {
  font-size: 1.12rem;
}

.ota-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-top: 26px;
}

.ota-logos > span {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.7);
  transition: transform 220ms ease, border-color 220ms ease;
}

.ota-logos > span:hover {
  transform: translateY(-3px);
  border-color: rgba(31, 138, 91, 0.45);
}

.ota-logos img {
  max-width: 108px;
  max-height: 25px;
  object-fit: contain;
}

.ota-logos .ical-logo {
  gap: 7px;
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 750;
}

.ota-logos .ical-logo i {
  font-size: 1.15rem;
}

.inline-points {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.inline-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 650;
}

.inline-points i {
  color: var(--green);
  font-size: 1.2rem;
}

.calendar-frame {
  aspect-ratio: 1.42;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.calendar-frame:hover {
  transform: rotate(0) translateY(-6px);
}

.calendar-frame img {
  width: 176%;
  max-width: none;
  transform: translate(-23%, -48%);
  image-rendering: auto;
  backface-visibility: hidden;
}

.ota-demo-window {
  aspect-ratio: auto;
  min-height: 760px;
  transform: rotate(0.5deg);
}

.ota-demo {
  position: relative;
  display: grid;
  min-height: 760px;
  place-items: center;
  overflow: hidden;
  color: var(--demo-ivory);
  background:
    radial-gradient(700px 460px at 50% -8%, rgba(47, 169, 124, 0.16), transparent 62%),
    radial-gradient(600px 400px at 88% 112%, rgba(196, 168, 130, 0.12), transparent 58%),
    #0a0805;
  isolation: isolate;
}

.ota-demo-view {
  position: absolute;
  inset: 44px 0 0;
  display: flex;
  flex-direction: column;
  padding: 14px 20px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease;
}

.ota-demo-view.is-active {
  opacity: 1;
}

.ota-demo-view > h3 {
  color: var(--demo-ivory);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.ota-demo-eyebrow {
  margin-bottom: 3px !important;
  color: var(--demo-brass);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ota-demo-calendar-head {
  display: grid;
  grid-template-columns: 1fr 30px 30px;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.ota-demo-calendar-head h3 {
  color: var(--demo-ivory);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 21px;
  font-weight: 800;
}

.ota-demo-calendar-head > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 9px;
  color: var(--demo-muted);
  background: var(--demo-surface);
  font-size: 17px;
}

.ota-demo-weekdays,
.ota-demo-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.ota-demo-weekdays {
  margin-bottom: 6px;
}

.ota-demo-weekdays span {
  color: var(--demo-muted-2);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.ota-demo-day {
  position: relative;
  display: flex;
  aspect-ratio: 1;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  color: var(--demo-ivory-2);
  background: var(--demo-surface);
  font-size: 12.5px;
  font-weight: 500;
}

.ota-demo-day.is-empty {
  background: transparent;
}

.ota-demo-day > i {
  position: absolute;
  right: 22%;
  bottom: 5px;
  left: 22%;
  height: 3px;
  border-radius: 2px;
  background: var(--demo-green);
}

.ota-demo-day > i.is-brass {
  background: var(--demo-brass);
}

.ota-demo-day > i.is-blue {
  background: #60a5fa;
}

[data-ota-view="calendar"].has-booking .ota-demo-day.is-selected {
  color: var(--demo-green-ink);
  background: var(--demo-green);
  box-shadow: 0 0 0 3px rgba(47, 169, 124, 0.18);
  font-weight: 700;
  animation: ota-day-pop 400ms ease both;
}

@keyframes ota-day-pop {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

.ota-demo-booking {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(47, 169, 124, 0.4);
  border-radius: 13px;
  background: var(--demo-surface);
  box-shadow: 0 0 0 3px rgba(47, 169, 124, 0.1);
  opacity: 0;
  transform: translateY(12px);
  transition: 450ms ease;
}

[data-ota-view="calendar"].has-booking .ota-demo-booking {
  opacity: 1;
  transform: none;
}

.ota-demo-booking > b,
.ota-demo-mail > div > b {
  display: grid;
  width: 34px;
  height: 34px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(150deg, var(--demo-green), #1c7a58);
  font-size: 14px;
}

.ota-demo-booking > span,
.ota-demo-mail > div > span {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.ota-demo-booking strong {
  color: var(--demo-ivory);
  font-size: 14px;
  font-weight: 600;
}

.ota-demo-booking small {
  overflow: hidden;
  color: var(--demo-muted);
  font-size: 11.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ota-demo-booking > i {
  margin-left: auto;
  padding: 5px 9px;
  border-radius: 20px;
  color: var(--demo-green);
  background: rgba(47, 169, 124, 0.12);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ota-demo-channels {
  margin-top: 16px;
}

.ota-demo-channel {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 11px;
  padding: 12px 14px;
  border: 1px solid var(--demo-line);
  border-radius: 13px;
  background: var(--demo-surface);
  opacity: 0;
  transform: translateX(-10px);
  transition: 450ms ease;
}

[data-ota-view="sync"].is-active .ota-demo-channel {
  opacity: 1;
  transform: none;
}

[data-ota-view="sync"].is-active .ota-demo-channel:nth-child(2) { transition-delay: 150ms; }
[data-ota-view="sync"].is-active .ota-demo-channel:nth-child(3) { transition-delay: 300ms; }

.ota-demo-wordmark {
  min-width: 108px;
  font-size: 15px;
  font-weight: 800;
}

.ota-demo-wordmark.airbnb { color: #ff5a5f; }
.ota-demo-wordmark.booking { color: #5faee3; }
.ota-demo-wordmark.vrbo { color: #7b8fff; font-size: 18px; font-style: italic; }

.ota-demo-channel > span {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  color: var(--demo-muted);
  font-size: 12px;
  font-weight: 600;
}

.ota-demo-channel > span > i {
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 240, 220, 0.25);
  border-top-color: var(--demo-green);
  border-radius: 50%;
  animation: ota-spin 800ms linear infinite;
}

@keyframes ota-spin {
  to { transform: rotate(360deg); }
}

.ota-demo-channel em {
  font-style: normal;
}

.ota-demo-channel strong,
.ota-demo-channel small {
  display: none;
}

.ota-demo-channel.is-synced > span > i,
.ota-demo-channel.is-synced em {
  display: none;
}

.ota-demo-channel.is-synced strong {
  display: inline;
  color: var(--demo-green);
  font-size: 12px;
}

.ota-demo-channel.is-synced small {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  color: var(--demo-green-ink);
  background: var(--demo-green);
  font-size: 11px;
}

.ota-demo-sync-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto !important;
  padding: 12px 14px;
  border: 1px solid rgba(47, 169, 124, 0.22);
  border-radius: 12px;
  color: var(--demo-ivory-2);
  background: rgba(47, 169, 124, 0.08);
  font-size: 12px;
  line-height: 1.35;
  opacity: 0;
  transition: 500ms 500ms ease;
}

[data-ota-view="sync"].is-active .ota-demo-sync-note {
  opacity: 1;
}

.ota-demo-sync-note i {
  color: var(--demo-green);
  font-size: 16px;
}

.ota-demo-radar-card {
  margin-top: 10px;
  padding: 18px;
  border: 1px solid rgba(196, 168, 130, 0.4);
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(196, 168, 130, 0.16), var(--demo-surface));
  box-shadow: 0 16px 40px -14px rgba(196, 168, 130, 0.3);
  opacity: 0;
  transform: scale(0.92);
  transition: 500ms ease;
}

[data-ota-view="radar"].is-active .ota-demo-radar-card {
  opacity: 1;
  transform: none;
}

.ota-demo-radar-title {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}

.ota-demo-radar-title > i {
  display: grid;
  width: 44px;
  height: 44px;
  flex: none;
  place-items: center;
  border-radius: 12px;
  color: var(--demo-brass);
  background: rgba(196, 168, 130, 0.18);
  font-size: 22px;
}

.ota-demo-radar-title span {
  display: flex;
  flex-direction: column;
}

.ota-demo-radar-title strong {
  color: var(--demo-ivory);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 16px;
}

.ota-demo-radar-title small {
  color: var(--demo-brass);
  font-size: 11.5px;
}

.ota-demo-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 0 4px;
}

.ota-demo-price del {
  color: var(--demo-muted-2);
  font-size: 18px;
  font-weight: 600;
}

.ota-demo-price > i {
  color: var(--demo-brass);
  font-size: 18px;
  font-style: normal;
}

.ota-demo-price > strong {
  color: var(--demo-green);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 30px;
  font-weight: 800;
}

.ota-demo-price > span {
  padding: 4px 9px;
  border-radius: 20px;
  color: var(--demo-green);
  background: rgba(47, 169, 124, 0.14);
  font-size: 11px;
  font-weight: 600;
}

.ota-demo-radar-card > p {
  color: var(--demo-muted);
  font-size: 11.5px;
  text-align: center;
}

.ota-demo-radar-hint {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
  padding: 12px 13px;
  border: 1px solid rgba(196, 168, 130, 0.3);
  border-radius: 12px;
  color: var(--demo-ivory-2);
  background: rgba(196, 168, 130, 0.12);
  font-size: 12px;
  line-height: 1.35;
}

.ota-demo-radar-hint i {
  flex: none;
  color: var(--demo-brass);
  font-size: 17px;
}

.ota-demo-mail {
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid var(--demo-line);
  border-radius: 16px;
  background: var(--demo-surface);
  opacity: 0;
  transform: translateY(12px);
  transition: 500ms ease;
}

[data-ota-view="confirm"].is-active .ota-demo-mail {
  opacity: 1;
  transform: none;
}

.ota-demo-mail > div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px;
  border-bottom: 1px solid var(--demo-line);
}

.ota-demo-mail > div > b {
  width: 36px;
  height: 36px;
}

.ota-demo-mail > div strong {
  color: var(--demo-ivory);
  font-size: 13.5px;
  font-weight: 600;
}

.ota-demo-mail > div small {
  color: var(--demo-muted-2);
  font-size: 11px;
}

.ota-demo-mail section {
  padding: 14px;
}

.ota-demo-mail section > strong {
  display: block;
  margin-bottom: 10px;
  color: var(--demo-ivory);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 14px;
}

.ota-demo-mail section > i {
  display: block;
  width: 100%;
  height: 8px;
  margin-bottom: 8px;
  border-radius: 4px;
  background: rgba(255, 240, 220, 0.09);
}

.ota-demo-mail section > i:nth-of-type(2) { width: 82%; }
.ota-demo-mail section > i:nth-of-type(3) { width: 64%; }

.ota-demo-mail section > p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--demo-muted);
  font-size: 10px;
}

.ota-demo-mail section > p span {
  padding: 2px 4px;
  border: 1px solid var(--demo-line);
  border-radius: 4px;
  color: var(--demo-ivory-2);
  font-size: 8px;
  font-weight: 700;
}

.ota-demo-send {
  width: 100%;
  margin-top: 16px;
  padding: 15px;
  border-radius: 13px;
  color: var(--demo-green-ink);
  background: var(--demo-green);
  box-shadow: 0 10px 26px -8px rgba(47, 169, 124, 0.55);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  transition: 120ms ease;
}

[data-ota-view="confirm"].is-pressed .ota-demo-send {
  transform: scale(0.95);
}

[data-ota-view="confirm"].is-sent .ota-demo-send {
  opacity: 0.45;
}

.ota-demo-sent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 12px !important;
  color: var(--demo-green);
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transform: translateY(6px);
  transition: 400ms ease;
}

[data-ota-view="confirm"].is-sent .ota-demo-sent {
  opacity: 1;
  transform: none;
}

.ota-demo-finger {
  position: absolute;
  right: 34px;
  bottom: -30px;
  z-index: 2;
  color: var(--demo-ivory);
  font-size: 46px;
  opacity: 0;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.5));
  transform: translateY(30px) rotate(8deg);
  transition: 450ms ease;
}

[data-ota-view="confirm"].is-finger-in .ota-demo-finger {
  opacity: 1;
  transform: translateY(-8px) rotate(8deg);
}

[data-ota-view="confirm"].is-pressed .ota-demo-finger {
  transform: translateY(-18px) rotate(8deg);
}

[data-ota-view="done"] {
  align-items: center;
  justify-content: center;
}

.ota-demo-check {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  border-radius: 50%;
  background: var(--demo-green);
  box-shadow:
    0 0 0 12px rgba(47, 169, 124, 0.14),
    0 16px 40px -10px rgba(47, 169, 124, 0.6);
  transform: scale(0);
}

[data-ota-view="done"].is-active .ota-demo-check {
  animation: checkin-pop 600ms cubic-bezier(0.2, 1.5, 0.4, 1) forwards;
}

.ota-demo-check svg {
  width: 46px;
  height: 46px;
}

.ota-demo-check path {
  fill: none;
  stroke: var(--demo-green-ink);
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6;
}

[data-ota-view="done"].is-active .ota-demo-check path {
  animation: checkin-draw 500ms 350ms ease forwards;
}

[data-ota-view="done"] > h3 {
  margin-top: 14px;
  font-size: 23px;
  opacity: 0;
  transform: translateY(8px);
}

[data-ota-view="done"].is-active > h3 {
  animation: checkin-rise 500ms 400ms forwards;
}

.ota-demo-summary {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 9px;
  margin-top: 20px;
}

.ota-demo-summary > div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  border: 1px solid var(--demo-line);
  border-radius: 12px;
  background: var(--demo-surface);
  opacity: 0;
  transform: translateX(-10px);
}

[data-ota-view="done"].is-active .ota-demo-summary > div {
  animation: checkin-slide-in 450ms forwards;
}

[data-ota-view="done"].is-active .ota-demo-summary > div:nth-child(1) { animation-delay: 700ms; }
[data-ota-view="done"].is-active .ota-demo-summary > div:nth-child(2) { animation-delay: 880ms; }
[data-ota-view="done"].is-active .ota-demo-summary > div:nth-child(3) { animation-delay: 1060ms; }
[data-ota-view="done"].is-active .ota-demo-summary > div:nth-child(4) { animation-delay: 1240ms; }

.ota-demo-summary > div > b {
  display: grid;
  width: 21px;
  height: 21px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  color: var(--demo-green-ink);
  background: var(--demo-green);
  font-size: 11px;
}

.ota-demo-summary span {
  display: flex;
  flex-direction: column;
}

.ota-demo-summary strong {
  color: var(--demo-ivory-2);
  font-size: 13px;
  font-weight: 600;
}

.ota-demo-summary small {
  color: var(--demo-muted-2);
  font-size: 11px;
}

.automation-grid {
  display: grid;
  /* Tre colonne uguali: cosi' le tre schede della seconda riga hanno la stessa
     larghezza. Sopra, il titolo prende una colonna e il riquadro grande le altre
     due (era 0.9/1.2/0.9: schede di larghezze diverse). */
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}

.vertical-heading {
  grid-row: 1;
  align-self: center;
  padding-right: 38px;
}

/* Le tre schede brevi stanno su UNA riga sola, tutte della stessa altezza.
   Prima il titolo occupava la colonna 1 su due righe: due schede finivano
   in riga 2 e la terza scivolava da sola su una riga in piu', disallineata. */
.automation-cell:not(.cell-image) {
  grid-row: 2;
  min-height: 210px;
  padding: 26px;
}

.vertical-heading h2 {
  font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.automation-cell {
  min-height: 290px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition:
    transform 300ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 300ms ease,
    box-shadow 300ms ease;
}

.automation-cell:hover {
  transform: translateY(-5px);
  border-color: rgba(31, 138, 91, 0.42);
  box-shadow: var(--shadow-small);
}

.automation-cell i {
  display: inline-block;
  margin-bottom: 52px;
  color: var(--green);
  font-size: 2rem;
}

.automation-cell p {
  margin: 0;
}

.cell-image {
  position: relative;
  grid-column: 2 / span 2;
  min-height: 430px;
  padding: 0;
  background: var(--ink);
}

.cell-image img {
  width: 124%;
  max-width: none;
  height: 270px;
  object-fit: cover;
  object-position: top;
  opacity: 0.86;
  transform: translateX(-8%);
}

.cell-image > .archive-demo-copy {
  padding: 26px 30px;
}

.cell-image h3,
.cell-image p {
  color: white;
}

.cell-image p {
  color: #d9d0c1;
}

.archive-demo-cell {
  min-height: 920px;
}

.archive-demo {
  position: relative;
  display: grid;
  min-height: 760px;
  place-items: center;
  overflow: hidden;
  color: var(--demo-ivory);
  background:
    radial-gradient(700px 460px at 50% -8%, rgba(47, 169, 124, 0.16), transparent 62%),
    radial-gradient(600px 400px at 88% 112%, rgba(196, 168, 130, 0.12), transparent 58%),
    #0a0805;
  isolation: isolate;
}

.archive-demo i {
  display: inline-block;
  margin: 0;
  font-size: inherit;
}

.archive-demo-view {
  position: absolute;
  inset: 44px 0 0;
  display: flex;
  flex-direction: column;
  padding: 14px 20px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease;
}

.archive-demo-view.is-active {
  opacity: 1;
}

.archive-demo-view > h3 {
  color: var(--demo-ivory);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.archive-demo-eyebrow {
  margin-bottom: 3px !important;
  color: var(--demo-brass) !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.archive-demo-filters {
  display: flex;
  gap: 8px;
  margin: 12px 0 14px;
}

.archive-demo-filters span {
  padding: 7px 13px;
  border-radius: 20px;
  color: var(--demo-muted);
  background: rgba(255, 240, 220, 0.05);
  font-size: 11px;
  font-weight: 600;
}

.archive-demo-filters span:first-child {
  color: var(--demo-green-ink);
  background: var(--demo-green);
}

.archive-demo-record {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
  padding: 12px 13px;
  border: 1px solid var(--demo-line);
  border-radius: 13px;
  background: var(--demo-surface);
  opacity: 0;
  transform: translateY(10px);
  transition: 450ms ease;
}

[data-archive-view="list"].is-active .archive-demo-record {
  opacity: 1;
  transform: none;
}

[data-archive-view="list"].is-active .archive-demo-record:nth-of-type(3) { transition-delay: 100ms; }
[data-archive-view="list"].is-active .archive-demo-record:nth-of-type(4) { transition-delay: 200ms; }

.archive-demo-record > i {
  width: 9px;
  height: 9px;
  flex: none;
  border-radius: 50%;
  background: var(--demo-green);
}

.archive-demo-record:nth-of-type(3) > i { background: var(--demo-brass); }
.archive-demo-record:nth-of-type(4) > i { background: #60a5fa; }

.archive-demo-record > span {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.archive-demo-record strong {
  overflow: hidden;
  color: var(--demo-ivory);
  font-size: 13.5px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.archive-demo-record small {
  color: var(--demo-muted-2);
  font-size: 11px;
}

.archive-demo-record > b {
  display: flex;
  flex: none;
  gap: 5px;
}

.archive-demo-record > b i {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 6px;
  color: var(--demo-green);
  background: rgba(47, 169, 124, 0.16);
  font-size: 11px;
}

.archive-demo-record > b i.is-todo {
  color: var(--demo-muted-2);
  background: rgba(255, 240, 220, 0.06);
}

.archive-demo-record.is-selected {
  border-color: rgba(47, 169, 124, 0.5);
  box-shadow: 0 0 0 3px rgba(47, 169, 124, 0.12);
  transform: scale(1.02) !important;
}

.archive-demo-hint {
  margin-top: auto !important;
  color: var(--demo-muted-2) !important;
  font-size: 11.5px;
  text-align: center;
}

.archive-demo-back {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.archive-demo-back > span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 8px;
  color: var(--demo-muted);
  background: var(--demo-surface);
  font-size: 17px;
}

.archive-demo-back .archive-demo-eyebrow {
  margin-bottom: 0 !important;
}

.archive-demo-guest {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
}

.archive-demo-guest strong {
  color: var(--demo-ivory);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 21px;
  font-weight: 800;
}

.archive-demo-guest small {
  color: var(--demo-muted);
  font-size: 12px;
}

.archive-demo-action {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 11px;
  padding: 13px;
  border: 1px solid var(--demo-line);
  border-radius: 14px;
  background: var(--demo-surface);
  opacity: 0;
  transform: translateX(-10px);
  transition: 400ms ease;
}

[data-archive-view="detail"].is-active .archive-demo-action {
  opacity: 1;
  transform: none;
}

[data-archive-view="detail"].is-active .archive-demo-action:nth-of-type(2) { transition-delay: 80ms; }
[data-archive-view="detail"].is-active .archive-demo-action:nth-of-type(3) { transition-delay: 160ms; }
[data-archive-view="detail"].is-active .archive-demo-action:nth-of-type(4) { transition-delay: 240ms; }

.archive-demo-action > i {
  display: grid;
  width: 42px;
  height: 42px;
  flex: none;
  place-items: center;
  border-radius: 11px;
  color: var(--demo-brass);
  background: var(--demo-surface-2);
  font-size: 20px;
}

.archive-demo-action > span {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.archive-demo-action > span strong {
  color: var(--demo-ivory);
  font-size: 14px;
  font-weight: 600;
}

.archive-demo-action > span small {
  color: var(--demo-muted-2);
  font-size: 11px;
}

.archive-demo-action > b {
  display: flex;
  flex: none;
  align-items: center;
}

.archive-demo-action > b > em {
  padding: 8px 13px;
  border: 1px solid rgba(47, 169, 124, 0.3);
  border-radius: 10px;
  color: var(--demo-green);
  background: rgba(47, 169, 124, 0.14);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  white-space: nowrap;
}

.archive-demo-action > b > i {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 240, 220, 0.25);
  border-top-color: var(--demo-green);
  border-radius: 50%;
  animation: ota-spin 800ms linear infinite;
}

.archive-demo-action > b > span {
  display: none;
  align-items: center;
  gap: 5px;
  padding: 6px 9px;
  border-radius: 8px;
  color: var(--demo-ivory-2);
  background: rgba(255, 240, 220, 0.06);
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
}

.archive-demo-action > b > span > small {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  color: var(--demo-green-ink);
  background: var(--demo-green);
  font-size: 11px;
}

.archive-demo-action > b > span > i {
  color: var(--demo-brass);
  font-size: 13px;
}

.archive-demo-action.is-processing > b > em {
  display: none;
}

.archive-demo-action.is-processing > b > i {
  display: inline-block;
}

.archive-demo-action.is-done {
  border-color: rgba(47, 169, 124, 0.35);
}

.archive-demo-action.is-done > b > em,
.archive-demo-action.is-done > b > i {
  display: none;
}

.archive-demo-action.is-done > b > span {
  display: flex;
}

.archive-demo-finger {
  position: absolute;
  top: var(--archive-finger-top, 340px);
  right: 20px;
  z-index: 3;
  color: var(--demo-ivory);
  font-size: 42px !important;
  opacity: 0;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.5));
  transform: translateY(18px) rotate(8deg);
  transition: top 300ms ease, opacity 300ms ease, transform 350ms ease;
}

[data-archive-view="detail"].is-tapping .archive-demo-finger {
  opacity: 1;
  transform: translateY(2px) rotate(8deg);
}

[data-archive-view="detail"].is-pressed .archive-demo-finger {
  transform: translateY(-8px) rotate(8deg);
}

[data-archive-view="done"] {
  align-items: center;
  justify-content: center;
}

.archive-demo-check {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 50%;
  background: var(--demo-green);
  box-shadow:
    0 0 0 12px rgba(47, 169, 124, 0.14),
    0 16px 40px -10px rgba(47, 169, 124, 0.6);
  transform: scale(0);
}

[data-archive-view="done"].is-active .archive-demo-check {
  animation: checkin-pop 600ms cubic-bezier(0.2, 1.5, 0.4, 1) forwards;
}

.archive-demo-check svg {
  width: 44px;
  height: 44px;
}

.archive-demo-check path {
  fill: none;
  stroke: var(--demo-green-ink);
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 6;
}

[data-archive-view="done"].is-active .archive-demo-check path {
  animation: checkin-draw 500ms 350ms ease forwards;
}

[data-archive-view="done"] > h3 {
  margin-top: 14px;
  font-size: 22px;
  opacity: 0;
  transform: translateY(8px);
}

[data-archive-view="done"].is-active > h3 {
  animation: checkin-rise 500ms 400ms forwards;
}

.archive-demo-summary {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 9px;
  margin-top: 18px;
}

.archive-demo-summary > div {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px;
  border: 1px solid var(--demo-line);
  border-radius: 12px;
  background: var(--demo-surface);
  opacity: 0;
  transform: translateX(-10px);
}

[data-archive-view="done"].is-active .archive-demo-summary > div {
  animation: checkin-slide-in 450ms forwards;
}

[data-archive-view="done"].is-active .archive-demo-summary > div:nth-child(1) { animation-delay: 700ms; }
[data-archive-view="done"].is-active .archive-demo-summary > div:nth-child(2) { animation-delay: 860ms; }
[data-archive-view="done"].is-active .archive-demo-summary > div:nth-child(3) { animation-delay: 1020ms; }
[data-archive-view="done"].is-active .archive-demo-summary > div:nth-child(4) { animation-delay: 1180ms; }

.archive-demo-summary > div > b {
  display: grid;
  width: 21px;
  height: 21px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  color: var(--demo-green-ink);
  background: var(--demo-green);
  font-size: 11px;
}

.archive-demo-summary > div > span {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.archive-demo-summary strong {
  color: var(--demo-ivory-2);
  font-size: 13px;
  font-weight: 600;
}

.archive-demo-summary small {
  color: var(--demo-muted-2);
  font-size: 11px;
}

.archive-demo-summary em {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px 8px;
  border-radius: 7px;
  color: var(--demo-brass);
  background: rgba(196, 168, 130, 0.14);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  white-space: nowrap;
}

.archive-demo-summary em i {
  font-size: 12px;
}

.archive-demo-copy {
  position: relative;
  z-index: 2;
  background: #3a3123;
}

.cell-green {
  border-color: var(--green);
  background: var(--green);
  color: white;
}

.cell-green i,
.cell-green p {
  color: white;
}

.cell-soft {
  background: var(--green-soft);
}

.intelligence-story {
  max-width: none;
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  background: var(--paper-soft);
}

.assistant-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  padding: 70px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 88% 10%, rgba(73, 175, 122, 0.28), transparent 28%),
    var(--ink);
  box-shadow: var(--shadow);
}

.assistant-symbol,
.push-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border-radius: 14px;
  background: var(--green);
  color: white;
  font-size: 1.55rem;
}

.assistant-copy .eyebrow,
.push-panel .eyebrow {
  color: #72d7a5;
}

.assistant-copy h2,
.assistant-copy > p:not(.eyebrow) {
  color: white;
}

.assistant-copy h2 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 5.2vw, 5.4rem);
}

.assistant-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: #ded6ca;
  font-size: 1.08rem;
}

.assistant-demo {
  position: relative;
  display: grid;
  min-height: 720px;
  place-items: center;
  padding-bottom: 34px;
}

.assistant-demo-head {
  display: flex;
  flex: none;
  align-items: center;
  gap: 11px;
  padding: 10px 18px 12px;
  border-bottom: 1px solid var(--demo-line);
}

.assistant-demo-head > span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(150deg, var(--demo-green), #1c7a58);
  box-shadow: 0 0 16px rgba(47, 169, 124, 0.4);
  font-size: 19px;
}

.assistant-demo-head > div {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.assistant-demo-head > div > strong {
  color: var(--demo-ivory);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.assistant-demo-head > div > small {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 3px;
  padding: 3px 8px;
  border-radius: 20px;
  color: var(--demo-brass);
  background: rgba(196, 168, 130, 0.14);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.assistant-demo-head > p {
  display: flex;
  flex: none;
  align-items: center;
  gap: 6px;
  color: var(--demo-muted);
  font-size: 11px;
}

.assistant-demo-head > p > i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--demo-green);
  box-shadow: 0 0 8px var(--demo-green);
  animation: assistant-online-pulse 1.6s ease-in-out infinite;
}

@keyframes assistant-online-pulse {
  50% { opacity: 0.4; }
}

.assistant-demo-chat {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
  padding: 16px 16px 8px;
}

.assistant-demo-message {
  max-width: 82%;
  padding: 11px 14px;
  border-radius: 16px;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 350ms ease, transform 350ms ease;
}

.assistant-demo-message.is-visible {
  opacity: 1;
  transform: none;
}

.assistant-demo-message.is-question {
  align-self: flex-end;
  border-bottom-right-radius: 5px;
  color: var(--demo-green-ink);
  background: var(--demo-green);
}

.assistant-demo-message.is-answer,
.assistant-demo-message.is-typing {
  align-self: flex-start;
  border: 1px solid var(--demo-line);
  border-bottom-left-radius: 5px;
  color: var(--demo-ivory-2);
  background: var(--demo-surface);
}

.assistant-demo-message strong {
  font-weight: 700;
}

.assistant-demo-message .assistant-demo-sparkle {
  margin-right: 5px;
  color: var(--demo-brass);
}

.assistant-demo-message .assistant-demo-up {
  color: var(--demo-green);
  font-weight: 700;
  white-space: nowrap;
}

.assistant-demo-message.is-typing {
  display: flex;
  gap: 5px;
  padding: 14px 16px;
}

.assistant-demo-message.is-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--demo-muted);
  animation: assistant-typing-bounce 1.2s ease-in-out infinite;
}

.assistant-demo-message.is-typing span:nth-child(2) { animation-delay: 200ms; }
.assistant-demo-message.is-typing span:nth-child(3) { animation-delay: 400ms; }

@keyframes assistant-typing-bounce {
  0%, 80%, 100% { opacity: 0.5; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-5px); }
}

.assistant-demo-input {
  display: flex;
  flex: none;
  align-items: center;
  gap: 10px;
  padding: 12px 16px 16px;
}

.assistant-demo-input > span {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--demo-line);
  border-radius: 22px;
  color: var(--demo-muted-2);
  background: var(--demo-surface);
  font-size: 12.5px;
  transition: color 200ms ease;
}

.assistant-demo-input > span.is-speaking {
  color: var(--demo-ivory-2);
}

.assistant-demo-input > i {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  color: var(--demo-green-ink);
  background: var(--demo-green);
  box-shadow: 0 8px 20px -6px rgba(47, 169, 124, 0.55);
  font-size: 18px;
}

.assistant-demo-input > i::after {
  position: absolute;
  inset: 0;
  border: 2px solid var(--demo-green);
  border-radius: 50%;
  content: "";
  opacity: 0;
  animation: assistant-mic-ring 2s ease-out infinite;
}

@keyframes assistant-mic-ring {
  from { opacity: 0.6; transform: scale(1); }
  to { opacity: 0; transform: scale(1.6); }
}

.assistant-demo-brandline {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  color: var(--demo-muted-2) !important;
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.assistant-demo-brandline strong {
  color: var(--demo-ivory);
}

.assistant-questions {
  display: grid;
  align-content: center;
  gap: 12px;
}

.assistant-questions p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.065);
  color: white;
  font-weight: 650;
  transition: transform 220ms ease, background 220ms ease;
}

.assistant-questions p:nth-child(even) {
  transform: translateX(20px);
}

.assistant-questions p:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.1);
}

.assistant-questions p:nth-child(even):hover {
  transform: translateX(28px);
}

.assistant-questions i {
  color: #72d7a5;
  font-size: 1.22rem;
}

.operations-pair {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 20px;
  margin-top: 20px;
}

.operations-pair.operations-single {
  grid-template-columns: 1fr;
}

.operations-single .operation-copy {
  max-width: 920px;
}

.reminder-panel,
.push-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.reminder-panel {
  display: flex;
  min-height: 640px;
  flex-direction: column;
  background: var(--surface);
}

.operation-copy {
  padding: 48px;
}

.operation-copy h2,
.push-panel h2 {
  margin-bottom: 20px;
  font-size: clamp(2.35rem, 3.8vw, 4rem);
}

.operation-copy > p:not(.eyebrow),
.push-panel > p:not(.eyebrow) {
  margin-bottom: 0;
  font-size: 1.03rem;
}

.reminder-shot {
  position: relative;
  min-height: 360px;
  min-width: 0;
  margin-top: auto;
  overflow: hidden;
  background: var(--ink);
}

.reminder-shot img {
  position: absolute;
  top: -300px;
  left: -66%;
  width: 210%;
  max-width: none;
  border: 6px solid white;
  border-radius: 15px 15px 0 0;
  box-shadow: var(--shadow);
  transition: transform 450ms cubic-bezier(0.16, 1, 0.3, 1);
  image-rendering: auto;
  backface-visibility: hidden;
}

.reminder-panel:hover .reminder-shot img {
  transform: translateX(-12px);
}

.reminder-demo {
  position: relative;
  display: grid;
  min-height: 760px;
  place-items: center;
  color: var(--demo-ivory);
  background:
    radial-gradient(700px 460px at 50% -8%, rgba(47, 169, 124, 0.16), transparent 62%),
    radial-gradient(600px 400px at 88% 112%, rgba(196, 168, 130, 0.12), transparent 58%),
    #0a0805;
  isolation: isolate;
}

.reminder-demo-view {
  position: absolute;
  inset: 44px 0 0;
  display: flex;
  flex-direction: column;
  padding: 14px 20px 20px;
  opacity: 0;
  transition: opacity 500ms ease;
}

.reminder-demo-view.is-active {
  opacity: 1;
}

.reminder-demo-eyebrow {
  margin-bottom: 3px !important;
  color: var(--demo-brass) !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.reminder-demo-view > h3 {
  margin-bottom: 14px;
  color: var(--demo-ivory);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.reminder-demo-group {
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: 450ms ease;
}

.reminder-demo-view.is-active .reminder-demo-group {
  opacity: 1;
  transform: none;
}

.reminder-demo-view.is-active .reminder-demo-group:nth-of-type(2) { transition-delay: 120ms; }
.reminder-demo-view.is-active .reminder-demo-group:nth-of-type(3) { transition-delay: 240ms; }

.reminder-demo-group > div {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.reminder-demo-group > div > i {
  width: 9px;
  height: 9px;
  flex: none;
  border-radius: 50%;
  background: #e8a23d;
}

.reminder-demo-group:nth-of-type(2) > div > i {
  background: var(--demo-green);
}

.reminder-demo-group:nth-of-type(3) > div > i {
  background: var(--demo-brass);
}

.reminder-demo-group > div > strong {
  color: var(--demo-ivory);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.reminder-demo-group > div > small {
  color: var(--demo-muted-2);
  font-size: 11px;
}

.reminder-demo-item {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 8px !important;
  padding: 11px 13px;
  border: 1px solid var(--demo-line);
  border-radius: 12px;
  color: var(--demo-ivory-2) !important;
  background: var(--demo-surface);
}

.reminder-demo-item > b {
  display: grid;
  width: 22px;
  height: 22px;
  flex: none;
  place-items: center;
  border: 2px solid var(--demo-muted-2);
  border-radius: 7px;
  color: transparent;
  font-size: 12px;
  transition: 250ms ease;
}

.reminder-demo-item > span {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  font-size: 13.5px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: 300ms ease;
}

.reminder-demo-item > em {
  flex: none;
  padding: 5px 9px;
  border-radius: 20px;
  color: var(--demo-muted);
  background: rgba(255, 240, 220, 0.06);
  font-size: 10.5px;
  font-style: normal;
  font-weight: 600;
}

.reminder-demo-item.is-primary > em {
  color: #e8a23d;
  background: rgba(232, 162, 61, 0.14);
}

.reminder-demo-item.is-done {
  opacity: 0.7;
}

.reminder-demo-item.is-done > b {
  border-color: var(--demo-green);
  color: var(--demo-green-ink);
  background: var(--demo-green);
}

.reminder-demo-item.is-done > span {
  color: var(--demo-muted-2);
  text-decoration: line-through;
}

.reminder-demo-finger {
  position: absolute;
  top: var(--reminder-finger-top, 150px);
  left: 26px;
  z-index: 3;
  color: var(--demo-ivory);
  font-size: 42px;
  opacity: 0;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.5));
  transform: translateY(16px) rotate(8deg);
  transition: top 300ms ease, opacity 300ms ease, transform 350ms ease;
}

.reminder-demo-view.is-tapping .reminder-demo-finger {
  opacity: 1;
  transform: translateY(0) rotate(8deg);
}

.reminder-demo-view.is-pressed .reminder-demo-finger {
  transform: translateY(-8px) rotate(8deg);
}

.reminder-demo-push {
  position: absolute;
  top: 12px;
  right: 12px;
  left: 12px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 240, 220, 0.12);
  border-radius: 18px;
  background: rgba(20, 17, 12, 0.9);
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateY(-160%);
  transition:
    transform 500ms cubic-bezier(0.2, 1.1, 0.3, 1),
    opacity 300ms ease;
}

.reminder-demo.has-push .reminder-demo-push {
  opacity: 1;
  transform: translateY(0);
}

.reminder-demo-push > span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: none;
  place-items: center;
  border-radius: 11px;
  color: white;
  background: linear-gradient(150deg, var(--demo-green), #1c7a58);
  box-shadow: 0 0 14px rgba(47, 169, 124, 0.4);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 20px;
  font-weight: 800;
}

.reminder-demo-push > div {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.reminder-demo-push > div > p {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px !important;
}

.reminder-demo-push small {
  color: var(--demo-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.reminder-demo-push time {
  color: var(--demo-muted-2);
  font-size: 10px;
}

.reminder-demo-push strong {
  color: var(--demo-ivory);
  font-size: 13.5px;
  font-weight: 700;
}

.reminder-demo-push em {
  overflow: hidden;
  color: var(--demo-ivory-2);
  font-size: 12px;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reminder-demo.is-buzzing .checkin-demo-phone {
  animation: reminder-phone-buzz 500ms ease;
}

@keyframes reminder-phone-buzz {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40% { transform: translateX(4px); }
  80% { transform: translateX(3px); }
}

/* ── Scheda della prenotazione diretta: le email diventano dettagli ── */

.dossier-demo-view {
  position: absolute;
  inset: 44px 0 0;
  display: flex;
  flex-direction: column;
  padding: 14px 20px 18px;
}

.dossier-demo-eyebrow {
  margin-bottom: 3px !important;
  color: var(--demo-brass) !important;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dossier-demo-view > h3 {
  color: var(--demo-ivory);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.dossier-demo-sub {
  margin-bottom: 13px !important;
  color: var(--demo-muted) !important;
  font-size: 11.5px;
}

.dossier-demo-button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 13px;
  padding: 10px 12px;
  border: 1px solid rgba(47, 169, 124, 0.45);
  border-radius: 11px;
  color: var(--demo-green);
  background: rgba(47, 169, 124, 0.1);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  transition: 250ms ease;
}

.dossier-demo-button > i {
  font-size: 14px;
  transition: transform 300ms ease;
}

.dossier-demo-button.is-pressed {
  transform: scale(0.96);
  background: rgba(47, 169, 124, 0.2);
}

.dossier-demo-button.is-loading > i {
  animation: dossier-spin 900ms linear infinite;
}

.dossier-demo-button.is-done {
  border-color: rgba(196, 168, 130, 0.4);
  color: var(--demo-brass);
  background: rgba(196, 168, 130, 0.1);
}

@keyframes dossier-spin {
  to { transform: rotate(360deg); }
}

.dossier-demo-scroll {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  gap: 7px;
  overflow: hidden;
}

/* Le email lette scorrono via: sono il mezzo, non il risultato. */
.dossier-demo-mail {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid var(--demo-line);
  border-radius: 9px;
  background: rgba(255, 240, 220, 0.03);
  opacity: 0;
  transform: translateX(-14px);
  transition: 320ms ease;
}

.dossier-demo-mail.is-visible {
  opacity: 1;
  transform: none;
}

.dossier-demo-mail > b {
  flex: none;
  padding: 2px 7px;
  border-radius: 20px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dossier-demo-mail.is-guest > b {
  color: #7cc6ee;
  background: rgba(124, 198, 238, 0.14);
}

.dossier-demo-mail.is-host > b {
  color: var(--demo-green);
  background: rgba(47, 169, 124, 0.14);
}

.dossier-demo-mail > span {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  color: var(--demo-ivory-2);
  font-size: 11.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dossier-demo-mail > em {
  flex: none;
  color: var(--demo-muted-2);
  font-size: 10px;
  font-style: normal;
}

.dossier-demo-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.dossier-demo-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 9px 11px;
  border: 1px solid var(--demo-line);
  border-radius: 11px;
  background: var(--demo-surface);
  opacity: 0;
  transform: translateY(9px);
  transition: 380ms ease;
}

.dossier-demo-row.is-visible {
  opacity: 1;
  transform: none;
}

.dossier-demo-row > b {
  flex: none;
  font-size: 14px;
  line-height: 1.25;
}

.dossier-demo-row > div {
  min-width: 0;
  flex: 1;
}

.dossier-demo-row strong {
  display: block;
  color: var(--demo-ivory);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
}

.dossier-demo-row small {
  display: block;
  margin-top: 2px;
  color: var(--demo-muted-2);
  font-size: 10px;
}

/* Le due categorie che valgono di più: promesse fatte e domande appese. */
.dossier-demo-row.is-promise {
  border-color: rgba(47, 169, 124, 0.35);
  background: rgba(47, 169, 124, 0.08);
}

.dossier-demo-row.is-open {
  border-color: rgba(232, 162, 61, 0.4);
  background: rgba(232, 162, 61, 0.09);
}

.dossier-demo-row.is-open strong {
  color: #f0bd6d;
}

.dossier-demo-row.is-manual {
  border-color: rgba(124, 198, 238, 0.35);
  background: rgba(124, 198, 238, 0.08);
}

.dossier-demo-row.is-manual small {
  color: #7cc6ee;
}

.dossier-demo-finger {
  position: absolute;
  top: 128px;
  left: 116px;
  z-index: 3;
  color: var(--demo-ivory);
  font-size: 40px;
  opacity: 0;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.5));
  transform: translateY(16px) rotate(8deg);
  transition: opacity 300ms ease, transform 350ms ease;
}

.dossier-demo-finger.is-visible {
  opacity: 0.92;
  transform: translateY(0) rotate(0deg);
}

.push-panel {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  padding: 48px;
  background: var(--green);
  color: white;
}

.push-panel .push-icon {
  background: white;
  color: var(--green);
}

.push-panel h2,
.push-panel > p:not(.eyebrow) {
  color: white;
}

.push-panel > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.push-events {
  display: grid;
  gap: 9px;
  margin-top: auto;
  padding-top: 34px;
}

.push-events span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
}

.push-events i {
  font-size: 1.12rem;
}

.guest-story {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: center;
  gap: 70px;
}

.guest-copy {
  position: sticky;
  top: 120px;
  align-self: start;
}

.guest-copy h2 {
  font-size: clamp(2.7rem, 4.8vw, 5rem);
}

.guest-copy > p:not(.eyebrow) {
  font-size: 1.12rem;
}

.guest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
}

.guest-tags span {
  padding: 9px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  color: var(--body);
  font-size: 0.85rem;
  font-weight: 650;
}

.guest-visual {
  position: relative;
  min-height: 800px;
}

.guest-phone,
.guest-editor {
  position: absolute;
  overflow: hidden;
  border: 7px solid white;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.guest-phone {
  left: 4%;
  z-index: 2;
  width: 36%;
  height: 760px;
  border-radius: 30px;
}

.guest-phone img {
  width: 100%;
  height: auto;
}

.guest-editor {
  top: 90px;
  right: 0;
  width: 72%;
  height: 620px;
  border-radius: var(--radius);
  transform: rotate(2deg);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}

.guest-editor:hover {
  transform: rotate(0) translateY(-5px);
}

.guest-editor img {
  width: 158%;
  max-width: none;
  height: auto;
  transform: translateX(-10%);
  image-rendering: auto;
  backface-visibility: hidden;
}

.guest-demo {
  --guest-cream: #f5efe3;
  --guest-card: #fffdf8;
  --guest-sage: #5a7a59;
  --guest-sage-deep: #3f5b3e;
  --guest-sage-soft: rgba(90, 122, 89, 0.12);
  --guest-ink: #2c382a;
  --guest-muted: #71806b;
  --guest-line: #e8e1d2;
  --guest-amber: #b87a2b;
  --guest-amber-soft: rgba(184, 122, 43, 0.14);
  display: grid;
  min-height: 800px;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(700px 460px at 50% -8%, rgba(90, 122, 89, 0.18), transparent 62%),
    radial-gradient(600px 400px at 88% 112%, rgba(196, 168, 130, 0.12), transparent 58%),
    #0a0805;
  isolation: isolate;
}

.guest-demo-screen {
  background: var(--guest-cream);
}

.guest-demo-topbar {
  z-index: 2;
  display: flex;
  flex: none;
  align-items: center;
  justify-content: space-between;
  padding: 16px 26px 10px;
  color: white;
  background: var(--guest-sage-deep);
  font-size: 12px;
  font-weight: 600;
}

.guest-demo-topbar > span:last-child {
  display: flex;
  align-items: center;
  gap: 6px;
}

.guest-demo-topbar > span:last-child > span {
  letter-spacing: 1px;
}

.guest-demo-topbar > span:last-child > i {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 11px;
  border: 1.5px solid white;
  border-radius: 3px;
}

.guest-demo-topbar > span:last-child > i::after {
  position: absolute;
  inset: 1.5px 6px 1.5px 1.5px;
  border-radius: 1px;
  background: white;
  content: "";
}

.guest-demo-scroll {
  flex: 1;
  overflow: hidden;
  background: var(--guest-cream);
  scroll-behavior: smooth;
}

.guest-demo-hero {
  position: relative;
  overflow: hidden;
  padding: 22px 22px 46px;
  border-radius: 0 0 26px 26px;
  color: white;
  background: linear-gradient(160deg, var(--guest-sage), var(--guest-sage-deep));
}

.guest-demo-hero::after {
  position: absolute;
  top: -32px;
  right: -24px;
  color: rgba(255, 255, 255, 0.08);
  content: "D";
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 150px;
  font-weight: 800;
  transform: rotate(12deg);
}

.guest-demo-hero > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.guest-demo-hero > h3 {
  margin: 6px 0 2px;
  color: white;
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 27px;
  font-weight: 800;
}

.guest-demo-hero > strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 500;
}

.guest-demo-hero > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 12px;
  font-weight: 600;
}

.guest-demo-hero > div {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 16px;
}

.guest-demo-hero > div > b {
  display: grid;
  width: 34px;
  height: 34px;
  flex: none;
  place-items: center;
  border-radius: 50%;
  color: var(--guest-sage-deep);
  background: white;
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.guest-demo-hero > div > p {
  display: flex;
  flex-direction: column;
}

.guest-demo-hero > div strong {
  color: white;
  font-size: 12.5px;
  font-weight: 600;
}

.guest-demo-hero > div small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
}

.guest-demo-body {
  display: flex;
  flex-direction: column;
  gap: 11px;
  padding: 16px 18px 26px;
}

.guest-demo-section-title {
  margin: 6px 2px 0 !important;
  color: var(--guest-muted) !important;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.guest-demo-card {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px;
  border: 1px solid var(--guest-line);
  border-radius: 15px;
  background: var(--guest-card);
  box-shadow: 0 6px 18px -12px rgba(60, 60, 40, 0.4);
}

.guest-demo-card > i {
  display: grid;
  width: 44px;
  height: 44px;
  flex: none;
  place-items: center;
  border-radius: 12px;
  color: var(--guest-sage-deep);
  background: var(--guest-sage-soft);
  font-size: 21px;
}

.guest-demo-card > span {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
}

.guest-demo-card > span > strong {
  color: var(--guest-ink);
  font-size: 14.5px;
  font-weight: 600;
}

.guest-demo-card > span > small {
  color: var(--guest-muted);
  font-size: 12px;
  line-height: 1.35;
}

.guest-demo-card > b {
  flex: none;
  color: #c4bba6;
  font-size: 20px;
  font-weight: 500;
}

.guest-demo-card > em {
  flex: none;
  padding: 5px 9px;
  border-radius: 20px;
  color: var(--guest-muted);
  background: rgba(90, 122, 89, 0.1);
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  white-space: nowrap;
}

.guest-demo-card:first-of-type > em {
  color: var(--guest-amber);
  background: var(--guest-amber-soft);
}

.guest-demo-card > em.is-top {
  color: var(--guest-sage);
  background: var(--guest-sage-soft);
}

.guest-demo-weather {
  padding: 16px;
  border: 1px solid var(--guest-line);
  border-radius: 15px;
  background: linear-gradient(160deg, #e7efea, var(--guest-card) 92%);
  box-shadow: 0 6px 18px -12px rgba(60, 60, 40, 0.4);
}

.guest-demo-weather > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.guest-demo-weather > div > span {
  display: flex;
  flex-direction: column;
}

.guest-demo-weather > div small {
  color: var(--guest-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.guest-demo-weather > div strong {
  margin-top: 4px;
  color: var(--guest-ink);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 38px;
  line-height: 1;
}

.guest-demo-weather > div em {
  margin-top: 2px;
  color: var(--guest-sage-deep);
  font-size: 12.5px;
  font-style: normal;
}

.guest-demo-weather > div > i {
  color: #e8a23d;
  font-size: 42px;
}

.guest-demo-weather > section {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--guest-line);
}

.guest-demo-weather > section > span {
  display: flex;
  flex: 1;
  align-items: center;
  flex-direction: column;
  gap: 4px;
}

.guest-demo-weather section small {
  color: var(--guest-muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.guest-demo-weather section i {
  color: var(--guest-sage);
  font-size: 17px;
}

.guest-demo-weather section b {
  color: var(--guest-ink);
  font-size: 12px;
}

.guest-demo-body > footer {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 22px 20px 30px;
  color: var(--guest-muted);
  text-align: center;
}

.guest-demo-body > footer strong {
  margin-bottom: 4px;
  color: var(--guest-sage-deep);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.guest-demo-body > footer span {
  font-size: 12px;
}

.guest-demo-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

.stats-story {
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.stats-copy {
  max-width: 760px;
  padding: 0 46px;
}

.stats-copy h2,
.stats-copy p {
  color: white;
}

.stats-copy p {
  color: #d7cfc1;
  font-size: 1.1rem;
}

.stats-window {
  width: 92%;
  height: 660px;
  margin: 54px 0 -150px auto;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.12);
  border-right: 0;
  border-radius: var(--radius) 0 0 0;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.stats-window:hover {
  transform: translateY(-7px);
}

.stats-window img {
  width: 122%;
  max-width: none;
  height: auto;
  transform: translateX(-6%);
  image-rendering: auto;
  backface-visibility: hidden;
}

.workspace-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px 72px;
  align-items: start;
}

.workspace-copy {
  max-width: 590px;
}

.workspace-copy h2 {
  font-size: clamp(2.6rem, 4.6vw, 4.8rem);
}

.workspace-copy > p {
  max-width: 530px;
  margin-top: 24px;
  font-size: 1.1rem;
}

.workspace-features {
  display: grid;
  gap: 0;
}

.workspace-features article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 8px 0 30px;
  border-top: 1px solid var(--line);
}

.workspace-features article + article {
  padding-top: 30px;
}

.workspace-features i {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: var(--green);
  background: var(--green-soft);
  font-size: 1.65rem;
}

.workspace-features h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.workspace-features p {
  max-width: 560px;
  margin: 0;
}

.feature-index {
  border-top: 1px solid var(--line);
}

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

.feature-groups article {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  gap: 0;
  padding: 28px;
  border-left: 1px solid var(--line);
}

.feature-groups h3 {
  margin-bottom: 24px;
  color: var(--green);
}

.feature-groups a {
  padding: 8px 0;
  color: var(--body);
  transition: color 180ms ease, transform 180ms ease;
}

.feature-groups a:hover {
  color: var(--green);
  transform: translateX(4px);
}

.comparison {
  max-width: none;
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  background: var(--paper-soft);
}

.comparison-heading {
  max-width: 780px;
}

.comparison-heading p:not(.eyebrow) {
  max-width: 650px;
  font-size: 1.12rem;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.comparison-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.comparison-table thead th {
  color: var(--muted);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.comparison-table tbody th {
  color: var(--ink);
}

.comparison-table td {
  color: var(--body);
}

.comparison-table td:nth-child(2) {
  background: rgba(31, 138, 91, 0.055);
  color: var(--green-dark);
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.comparison-note {
  max-width: 820px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.8rem;
  text-align: center;
}

.pricing {
  max-width: none;
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  background: var(--ink);
}

.pricing-heading {
  max-width: 780px;
  margin: 0 auto 50px;
  text-align: center;
}

.pricing-heading .eyebrow {
  color: #72d7a5;
}

.pricing-heading h2,
.pricing-heading p:not(.eyebrow) {
  color: white;
}

.pricing-heading p:not(.eyebrow) {
  margin: 0 auto;
  color: #d9d0c1;
  font-size: 1.1rem;
}

.trial-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto 30px;
  padding: 18px 20px;
  border: 1px solid rgba(114, 215, 165, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.trial-banner > span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(114, 215, 165, 0.14);
  color: #72d7a5;
  font-size: 1.35rem;
}

.trial-banner strong {
  display: block;
  color: white;
  font-size: 1.12rem;
}

.trial-banner p {
  margin: 2px 0 0;
  color: #bfb6a8;
  font-size: 0.86rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  display: flex;
  min-height: 610px;
  flex-direction: column;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  transition: transform 260ms ease, border-color 260ms ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(114, 215, 165, 0.58);
}

.pricing-card-featured {
  border-color: var(--green);
  background: rgba(31, 138, 91, 0.13);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #72d7a5;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
}

.pricing-card h3 {
  color: white;
  font-size: 1.55rem;
}

.pricing-card > p {
  min-height: 50px;
  margin-bottom: 28px;
  color: #bfb6a8;
}

.pricing-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.pricing-value strong {
  color: white;
  font-size: clamp(2.9rem, 5vw, 4.1rem);
  letter-spacing: -0.055em;
  line-height: 1;
}

.pricing-value span,
.pricing-card > small {
  color: #bfb6a8;
}

.pricing-card > small {
  margin-top: 8px;
  font-size: 0.75rem;
}

.pricing-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 34px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  list-style: none;
}

.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #eee8df;
  font-size: 0.9rem;
}

.pricing-card li i {
  margin-top: 3px;
  color: #72d7a5;
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-card .button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.pricing-example {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 880px;
  margin: 20px auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  color: #bfb6a8;
}

.pricing-example strong {
  color: white;
  font-size: 1.05rem;
}

.pricing-example b {
  color: #72d7a5;
}

.pricing-note {
  margin: 12px auto 0;
  color: #8f877b;
  font-size: 0.78rem;
  text-align: center;
}

.testimonials-heading {
  max-width: 860px;
  margin-bottom: 60px;
}

.testimonial-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
}

.testimonial-layout blockquote {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.quote-featured {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  justify-content: space-between;
  padding: 54px;
}

.stars {
  color: var(--green);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
}

.quote-featured > p {
  color: var(--ink);
  font-size: clamp(2rem, 3.8vw, 3.8rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

blockquote footer {
  display: grid;
  gap: 2px;
}

blockquote footer span {
  color: var(--muted);
  font-size: 0.9rem;
}

.quote-stack {
  display: grid;
  gap: 18px;
}

.quote-stack blockquote {
  display: flex;
  min-height: 226px;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
}

.quote-stack p {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 650;
  line-height: 1.2;
}

.signup {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 72px;
  margin-bottom: 90px;
  border-radius: var(--radius);
  background: var(--green-soft);
}

.signup-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 6.5rem);
}

.signup-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin-bottom: 0;
  font-size: 1.15rem;
}

.signup-actions {
  display: grid;
  gap: 12px;
}

.signup-actions > span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.faq-section {
  padding-top: 105px;
  border-top: 1px solid var(--line);
}

.faq-heading {
  max-width: 650px;
  margin-bottom: 58px;
}

.faq-heading h2 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 5vw, 5.4rem);
}

.faq-heading p {
  max-width: 560px;
  margin: 0;
  font-size: 1.08rem;
}

.faq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}

.faq-column {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 25px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--green-soft);
  font-size: 1rem;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item summary:hover {
  color: var(--green-dark);
}

.faq-item summary:focus-visible {
  border-radius: 8px;
  outline: 3px solid rgba(23, 117, 80, 0.22);
  outline-offset: 4px;
}

.faq-item[open] summary i {
  transform: rotate(180deg);
}

.faq-item > p {
  max-width: 600px;
  margin: -4px 50px 0 0;
  padding: 0 0 26px;
  color: var(--body);
  line-height: 1.65;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto auto;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px 28px 34px;
  border-top: 1px solid var(--line);
}

.footer-brand p {
  margin: 10px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: start;
}

.footer-links a {
  color: var(--body);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--green);
}

.footer-contacts {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-contacts a {
  display: flex;
  gap: 9px;
  align-items: center;
  color: var(--body);
  font-weight: 650;
}

.footer-contacts i {
  color: var(--green);
  font-size: 1.35rem;
}

.footer-contacts a:hover {
  color: var(--green);
}

.footer-copy {
  grid-column: 1 / span 3;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .nav-menu {
    gap: 18px;
  }

  .hero {
    grid-template-columns: 1fr 1.15fr;
    gap: 36px;
  }

  .hero-visual {
    min-height: 520px;
  }

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

  .vertical-heading {
    grid-column: 1 / span 2;
    grid-row: auto;
    padding: 0;
  }

  .cell-image {
    grid-column: 1 / span 2;
  }

  /* Con due colonne le tre schede non ci stanno su una riga: torna l'automatico.
     L'ultima prende la riga intera, altrimenti resta spaiata con mezza riga vuota. */
  .automation-cell:not(.cell-image) {
    grid-row: auto;
  }

  .automation-cell:not(.cell-image):last-of-type {
    grid-column: 1 / span 2;
  }

}

@media (max-width: 900px) {
  .nav-shell {
    grid-template-columns: auto auto 1fr;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: end;
  }

  .nav-menu {
    position: absolute;
    top: 72px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow-small);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 13px 12px;
  }

  .nav-actions {
    justify-self: end;
  }

  .nav-actions .text-link {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 72px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .stage-layout,
  .calendar-story,
  .guest-story,
  .workspace-section,
  .signup {
    grid-template-columns: 1fr;
  }

  .assistant-panel {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 54px;
  }

  .operations-pair {
    grid-template-columns: 1fr;
  }

  .reminder-panel {
    min-height: 600px;
  }

  .push-panel {
    min-height: 520px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .pricing-card {
    min-height: 0;
  }

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

  .feature-notes article,
  .feature-notes article:first-child {
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 0;
  }

  .calendar-frame {
    transform: none;
  }

  .guest-copy {
    position: static;
  }

  .guest-visual {
    min-height: 760px;
  }

  .workspace-section {
    gap: 42px;
  }

  .faq-columns {
    gap: 42px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
  }

  .footer-contacts {
    grid-column: 1 / span 2;
    display: flex;
    gap: 24px;
  }

  .footer-copy {
    grid-column: 1 / span 2;
  }

  .feature-groups {
    grid-template-columns: 1fr 1fr;
  }

  .testimonial-layout {
    grid-template-columns: 1fr;
  }

  .signup {
    align-items: start;
    gap: 42px;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 15px;
  }

  .nav-shell {
    height: 66px;
    padding: 0 18px;
  }

  .nav-menu {
    top: 66px;
  }

  .nav-actions .button {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.84rem;
  }

  .section-shell {
    padding: 82px 18px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
  }

  h1 span {
    white-space: normal;
  }

  h2 {
    font-size: clamp(2.45rem, 12vw, 3.8rem);
  }

  .hero {
    gap: 32px;
    padding: 54px 18px 46px;
  }

  .hero-lede {
    margin-bottom: 26px;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 405px;
  }

  .product-window-main {
    position: relative;
    top: 0;
    width: 100%;
    transform: none;
  }

  .phone-shot {
    right: -1%;
    bottom: -5%;
    width: 34%;
    border-width: 4px;
    border-radius: 18px;
  }

  .proof-strip {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 18px;
  }

  .proof-items {
    grid-template-columns: 1fr 1fr;
  }

  .proof-items span {
    text-align: left;
  }

  .section-intro {
    margin-bottom: 42px;
  }

  .feature-notes {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .feature-notes article {
    padding: 20px 0;
  }

  .checkin-demo,
  .ota-demo,
  .ota-demo-window,
  .archive-demo,
  .assistant-demo,
  .reminder-demo,
  .guest-demo {
    min-height: 620px;
  }

  .checkin-demo-phone-wrap {
    transform: scale(0.82);
  }

  .checkin-demo-caption {
    top: 18px;
    max-width: calc(100% - 28px);
    padding: 10px 15px 10px 13px;
    font-size: 13px;
  }

  .checkin-demo-brandline {
    bottom: 14px;
    padding: 0 14px;
    font-size: 12px;
  }

  .mid-cta {
    width: calc(100% - 36px);
    flex-direction: column;
    align-items: stretch;
    margin: 0 auto;
    padding: 30px 24px;
  }

  .calendar-story {
    gap: 34px;
  }

  .ota-logos > span {
    min-height: 44px;
    padding: 9px 12px;
  }

  .calendar-frame img {
    width: 258%;
    transform: translate(-36%, -62%);
  }

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

  .vertical-heading,
  .cell-image {
    grid-column: auto;
  }

  /* Su telefono una colonna sola: a due, le schede si stringevano a 130-180px. */
  .automation-grid {
    grid-template-columns: 1fr;
  }

  .automation-cell:not(.cell-image):last-of-type {
    grid-column: auto;
  }

  .automation-cell {
    min-height: 250px;
  }

  .intelligence-story,
  .pricing {
    padding-right: 18px;
    padding-left: 18px;
  }

  .assistant-panel {
    gap: 34px;
    padding: 38px 24px;
  }

  .assistant-copy h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .assistant-questions p:nth-child(even),
  .assistant-questions p:nth-child(even):hover {
    transform: none;
  }

  .reminder-panel {
    min-height: auto;
  }

  .operation-copy,
  .push-panel {
    padding: 34px 24px;
  }

  .reminder-shot {
    min-height: 390px;
  }

  .reminder-shot.reminder-demo {
    min-height: 620px;
  }

  .reminder-shot img {
    top: -360px;
    left: -128%;
    width: 310%;
  }

  .push-panel {
    min-height: 570px;
  }

  .cell-image {
    min-height: 400px;
  }

  .archive-demo-cell {
    min-height: 800px;
  }

  .guest-story {
    gap: 34px;
  }

  .guest-visual {
    min-height: 620px;
  }

  .guest-phone {
    left: 0;
    width: 49%;
    height: 590px;
  }

  .guest-editor {
    top: 70px;
    width: 72%;
    height: 470px;
  }

  .guest-editor img {
    width: 285%;
    transform: translateX(-19%);
  }

  .stats-story {
    width: calc(100% - 36px);
    margin: 0 auto;
    padding-top: 62px;
    padding-right: 0;
    padding-left: 0;
  }

  .stats-copy {
    padding: 0 24px;
  }

  .stats-window {
    height: 470px;
    margin-top: 36px;
    margin-bottom: -110px;
  }

  .workspace-section {
    gap: 32px;
  }

  .workspace-features article {
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .workspace-features i {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 1.4rem;
  }

  .faq-section {
    padding-top: 72px;
  }

  .faq-heading {
    margin-bottom: 40px;
  }

  .faq-columns {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-column + .faq-column {
    border-top: 0;
  }

  .faq-item summary {
    padding: 22px 0;
    font-size: 1rem;
  }

  .feature-groups {
    grid-template-columns: 1fr;
  }

  .feature-groups article {
    min-height: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trial-banner {
    grid-template-columns: auto 1fr;
  }

  .trial-banner .button {
    grid-column: 1 / span 2;
    width: 100%;
  }

  .pricing-card {
    padding: 34px 24px;
  }

  .pricing-card > p {
    min-height: 0;
  }

  .pricing-example {
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-featured {
    min-height: 430px;
    padding: 30px;
  }

  .quote-featured > p {
    font-size: 2.15rem;
  }

  .signup {
    width: calc(100% - 36px);
    margin-right: auto;
    margin-left: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 46px 18px 30px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .footer-contacts {
    grid-column: auto;
    display: grid;
    gap: 14px;
  }

  .footer-copy {
    grid-column: auto;
  }
}

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

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

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

/* ===== Server MCP — consultare Dedomo da Claude/ChatGPT ===== */
.mcp-panel {
  background:
    radial-gradient(circle at 12% 12%, rgba(73, 175, 122, 0.26), transparent 30%),
    var(--ink);
}

.mcp-symbol svg {
  width: 1em;
  height: 1em;
}

/* Header della "chat esterna": avatar del client + pill Dedomo collegato */
.mcp-demo-head {
  display: flex;
  flex: none;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--demo-line);
}

.mcp-demo-avatar {
  display: grid;
  width: 34px;
  height: 34px;
  flex: none;
  place-items: center;
  border-radius: 11px;
  color: #fff;
  background: linear-gradient(150deg, #d98b5f, #b5623a);
  box-shadow: 0 6px 16px -8px rgba(181, 98, 58, 0.8);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 800;
  transition: background 300ms ease;
}

.mcp-demo-avatar.is-gpt {
  background: linear-gradient(150deg, #2f9e83, #1c7a58);
  box-shadow: 0 6px 16px -8px rgba(28, 122, 88, 0.85);
}

.mcp-demo-head > div {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.mcp-demo-head > div > strong {
  color: var(--demo-ivory);
  font-family: "Cabinet Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 700;
}

.mcp-demo-head > div > small {
  margin-top: 2px;
  color: var(--demo-muted);
  font-size: 10.5px;
  letter-spacing: 0.02em;
}

.mcp-demo-link {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 5px 10px;
  border: 1px solid rgba(47, 169, 124, 0.4);
  border-radius: 20px;
  color: var(--demo-green);
  background: rgba(47, 169, 124, 0.12);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.mcp-demo-plug {
  display: inline-grid;
  place-items: center;
  font-size: 12px;
  animation: mcp-plug-pulse 1.8s ease-in-out infinite;
}

@keyframes mcp-plug-pulse {
  50% { opacity: 0.45; transform: scale(0.88); }
}

/* Tag "via Dedomo" davanti a ogni risposta: sottolinea che passa dal connettore */
.mcp-demo-via {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 7px;
  padding: 2px 7px;
  border-radius: 6px;
  color: var(--demo-brass);
  background: rgba(196, 168, 130, 0.16);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  vertical-align: 1px;
}

.mcp-demo-message .assistant-demo-up {
  color: var(--demo-green);
  font-weight: 700;
  white-space: nowrap;
}

/* Il tasto invio non ha il "ring" del microfono dell'assistente */
.mcp-demo-input > i::after {
  content: none;
}

@media (max-width: 900px) {
  .mcp-demo-link { font-size: 9.5px; padding: 4px 8px; }
}
