@font-face {
  font-family: "Helvetica Now Display";
  src: url("fonts/helvetica-now-regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Display";
  src: url("fonts/helvetica-now-medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Now Display";
  src: url("fonts/helvetica-now-bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Mast — colours */
  --ink: #000;
  --ink-muted: #0006;
  --on-primary: #fff;
  --body: #000;
  --mute: #a0a0a0;
  --hairline: #e1e1e1;
  --hairline-strong: #a0a0a0;
  --canvas: #fff;
  --canvas-soft: #f4f4f4;
  --canvas-soft-2: #ebebeb;
  --lilac: #bba5f8;
  --blush: #ffb6a8;
  --warm: #ff5702;
  --smokey: #b2d6e9;
  --gold: #ffc728;
  --teal: #00b282;

  /* Mast — typography */
  --sans: "Helvetica Now Display", Arial, sans-serif;
  --text-body: 18px;
  --text-small: 14px;
  --text-large-body: 24px;
  --text-medium-title: 40px;
  --text-large-title: 64px;
  --lh-body: 1.25;
  --lh-title: 1.1;

  /* Mast — spacing */
  --wrap: 1140px;
  --gutter: 32px;
  --content: 750px;
  --space-xs: 12px;
  --space-sm: 24px;
  --space-md: 40px;
  --space-lg: 80px;
  --space-xl: 120px;

  --shadow-1: 0 0 0 1px #00000014 inset;
  --shadow-2: 0 1px 1px #00000005, 0 2px 2px #0000000a, 0 0 0 1px #00000014 inset;
  --shadow-3: 0 2px 2px #0000000a, 0 8px 8px -8px #0000000a, 0 0 0 1px #00000014 inset;
  --shadow-4: 0 2px 2px #0000000a, 0 8px 16px -4px #0000000a, 0 0 0 1px #00000014 inset;
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --pill: 100px;
  --section-radius: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--sans);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: var(--lh-body);
  color: var(--ink);
  background: var(--canvas-soft);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; }
a { color: inherit; }
button { font-family: inherit; }
h1, h2, h3, h4, p, ul, ol, dl, blockquote, figure { margin: 0; }
address { font-style: normal; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 8px 16px;
  border-radius: var(--r-sm);
}
.skip-link:focus { left: 8px; }

.wrap {
  width: min(var(--wrap), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.content-col {
  max-width: var(--content);
}

.mono-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: var(--text-small);
  font-weight: 400;
  line-height: var(--lh-body);
  color: var(--mute);
}
.mono-label.danger { color: var(--warm); }
.mono-label.success { color: var(--teal); }
.mono-label.on-dark { color: rgba(255,255,255,.55); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  border-radius: var(--pill);
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { height: 48px; padding: 0 20px; font-size: 16px; }
.btn-sm { height: 32px; padding: 0 12px; font-size: 13px; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #171717; }
.btn-secondary {
  background: var(--canvas);
  color: var(--ink);
  box-shadow: var(--shadow-1);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hairline);
}
.btn-on-dark { background: #fff; color: var(--ink); }
.btn-ghost-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.2);
}

.announcement {
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
}
.announcement-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 40px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.announcement .mono-label { color: var(--lilac); }
.announcement p { flex: 1; min-width: 200px; color: rgba(255,255,255,.78); }
.announcement a { color: #fff; text-decoration: none; font-weight: 500; white-space: nowrap; }
.announcement a:hover { text-decoration: underline; }
.announcement a::after { content: " →"; }

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.brand-icon { width: 22px; height: 21px; }
.brand-word { width: 56px; height: 20px; }

.hero {
  position: relative;
  z-index: 8;
  padding: var(--space-md) 0 0;
  background: var(--canvas);
  border-bottom-left-radius: var(--section-radius);
  border-bottom-right-radius: var(--section-radius);
  margin-bottom: calc(var(--section-radius) * -1);
}
.hero-shell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
}
.hero-body {
  width: 100%;
  margin-top: var(--space-md);
}
.hero h1 {
  font-family: var(--sans);
  font-size: clamp(40px, 6vw, var(--text-large-title));
  font-weight: 400;
  line-height: var(--lh-title);
  margin-top: var(--space-xs);
  margin-bottom: var(--space-sm);
  max-width: none;
  white-space: nowrap;
}
.lead, .section-lead {
  font-family: var(--sans);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: var(--lh-body);
  color: var(--body);
  max-width: var(--content);
}
.hero .lead {
  color: var(--ink);
  margin-bottom: 0;
  max-width: var(--content);
}
.hero .check-list {
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
  max-width: var(--content);
}
.hero .btn {
  margin-top: 0;
}

.example-mockup {
  --mockup-overlap: 48px;
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: var(--space-lg);
  margin-bottom: calc(var(--mockup-overlap) * -1);
}
.mockup-mesh {
  position: absolute;
  top: -72px;
  bottom: var(--mockup-overlap);
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background:
    radial-gradient(ellipse 42% 48% at 18% 38%, color-mix(in srgb, var(--lilac) 72%, transparent), transparent 70%),
    radial-gradient(ellipse 38% 44% at 78% 28%, color-mix(in srgb, var(--warm) 48%, transparent), transparent 72%),
    radial-gradient(ellipse 36% 40% at 58% 62%, color-mix(in srgb, var(--blush) 70%, transparent), transparent 70%),
    radial-gradient(ellipse 30% 34% at 40% 18%, color-mix(in srgb, var(--teal) 38%, transparent), transparent 70%),
    radial-gradient(ellipse 34% 30% at 88% 58%, color-mix(in srgb, var(--gold) 50%, transparent), transparent 70%),
    radial-gradient(ellipse 28% 32% at 8% 72%, color-mix(in srgb, var(--smokey) 60%, transparent), transparent 70%);
  filter: blur(48px) saturate(1.15);
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(to bottom, transparent, #000 24%);
}
.chat-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.browser-mockup {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 0;
}
.browser-frame {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  box-shadow: var(--shadow-3), 0 24px 48px -24px #0000001f;
  overflow: hidden;
}
.browser-chrome {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  padding: 10px 10px 0 14px;
  background: var(--canvas-soft);
  border-bottom: 1px solid var(--hairline);
}
.browser-dots {
  display: flex;
  gap: 7px;
  padding: 0 0 11px 2px;
}
.browser-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }
.example-switch {
  display: flex;
  flex: 1;
  min-width: 0;
  gap: 2px;
  overflow-x: auto;
  padding-top: 1px;
  scrollbar-width: none;
}
.example-switch::-webkit-scrollbar { display: none; }
.example-tab {
  appearance: none;
  position: relative;
  flex-shrink: 0;
  border: 1px solid transparent;
  border-bottom: 0;
  background: transparent;
  padding: 9px 16px 10px;
  border-radius: 8px 8px 0 0;
  font-family: inherit;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-muted);
  cursor: pointer;
  white-space: nowrap;
}
.example-tab:hover {
  color: var(--ink);
  background: #00000008;
}
.example-tab.is-active {
  background: var(--canvas);
  color: var(--ink);
  border-color: var(--hairline);
  box-shadow: none;
  margin-bottom: -1px;
  padding-bottom: 11px;
}
.browser-viewport {
  background: var(--canvas);
  height: min(520px, 70vh);
  overflow-y: auto;
  overscroll-behavior: contain;
}
.chat-ui {
  display: flex;
  flex-direction: column;
}
.chat-thread {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 28px;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
}
.chat-thread[hidden] {
  display: none !important;
}
.chat-anim-item {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.chat-anim-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.chat-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 24px;
}
.chat-typing[hidden],
.chat-msg[hidden] {
  display: none !important;
}
.chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mute);
  animation: chat-typing 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes chat-typing {
  0%, 60%, 100% { opacity: 0.35; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-3px); }
}
.chat-msg {
  display: flex;
  width: 100%;
}
.chat-msg p {
  margin: 0;
  font-size: var(--text-small);
  line-height: var(--lh-body);
  color: var(--ink);
}
.chat-msg--user {
  justify-content: flex-end;
}
.chat-msg--user .chat-bubble {
  display: grid;
  gap: 10px;
  max-width: 85%;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--canvas-soft);
  border-radius: 18px 18px 4px 18px;
}
.chat-msg--assistant {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 92%;
}
.chat-file {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(240px, 100%);
  padding: 10px 12px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: 8px;
}
.chat-file-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #2563eb;
  flex-shrink: 0;
}
.chat-file-icon img {
  display: block;
  width: 18px;
  height: 18px;
}
.chat-file-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.chat-file-text strong {
  font-weight: 400;
  font-size: 13px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chat-file-text span {
  font-size: 11px;
  color: var(--ink-muted);
}
.chat-attach {
  display: block;
  width: min(260px, 100%);
  overflow: hidden;
  border-radius: 10px;
}
.chat-attach img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.chat-social {
  width: 100%;
  max-width: 360px;
  overflow: hidden;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  box-shadow: 0 4px 12px #0000000d;
}
.chat-social-image {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.chat-social-image--tall {
  height: 280px;
  object-position: top;
}
.chat-social-image--anchor-bl {
  object-position: left 78%;
}
.chat-social-body {
  display: grid;
  gap: 12px;
  padding: 16px;
}
.chat-social-body p {
  font-size: 13px;
  line-height: 1.4;
}
.chat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--ink-muted) !important;
  font-size: 11px !important;
}
.chat-meta {
  font-size: 12px !important;
  color: var(--mute) !important;
}
.chat-tool-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  font-size: 12px !important;
  color: var(--mute) !important;
}
.chat-tool-icon {
  display: block;
  flex-shrink: 0;
  border-radius: 3px;
}
.chat-chevron {
  font-size: 11px;
  margin-left: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .chat-anim-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .chat-typing span {
    animation: none;
    opacity: 0.6;
  }
}

.hero-subtitle {
  font-size: clamp(20px, 3vw, var(--text-large-body));
  line-height: var(--lh-body);
  color: var(--ink);
}
.section-lead + .section-lead { margin-top: 12px; }
.section-lead.muted, .section-lead.on-dark { color: var(--ink-muted); }
.band-dark .section-lead.on-dark { color: rgba(255,255,255,.68); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.section {
  position: relative;
  padding: calc(var(--space-lg) + var(--section-radius) + var(--space-sm)) 0 calc(var(--space-lg) + var(--section-radius));
  background: var(--canvas);
  border-bottom-left-radius: var(--section-radius);
  border-bottom-right-radius: var(--section-radius);
  margin-bottom: calc(var(--section-radius) * -1);
}
#fundament {
  z-index: 7;
  padding-top: calc(var(--space-lg) + var(--section-radius) + var(--space-sm) + 48px);
}
#oplevering { z-index: 6; }
#bewaking { z-index: 5; }
#prijzen { z-index: 4; }
#faq {
  z-index: 3;
  background: var(--canvas-soft);
  padding-top: calc(var(--space-lg) + var(--section-radius) + var(--space-md));
}
.section h2 {
  font-family: var(--sans);
  font-size: clamp(28px, 4vw, var(--text-medium-title));
  font-weight: 400;
  line-height: var(--lh-title);
  margin: var(--space-xs) 0 var(--space-sm);
  max-width: var(--content);
}
.section h3 {
  font-family: var(--sans);
  font-size: var(--text-large-body);
  font-weight: 400;
  line-height: var(--lh-title);
  margin-bottom: 8px;
}
.section h4 {
  font-family: var(--sans);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: var(--lh-body);
  margin: 6px 0 8px;
}
.band-soft { background: var(--canvas-soft); }
.band-dark {
  background: var(--ink);
  color: #fff;
}
.band-dark h2 { color: #fff; max-width: var(--content); }
.band-dark .section-lead.on-dark { max-width: var(--content); }
#bewaking .section-lead { margin-bottom: 0; }
#bewaking .addons { margin-top: var(--space-lg); }
#bewaking .addons h3 { margin-bottom: 12px; }
.quote-band { padding: var(--space-lg) 0; }
.quote-band .wrap { display: block; }
.quote-band blockquote {
  max-width: var(--content);
}
blockquote {
  font-family: var(--sans);
  font-size: clamp(22px, 3vw, var(--text-medium-title));
  font-weight: 400;
  line-height: var(--lh-title);
  color: var(--ink);
}
.inline-quote {
  font-size: 18px;
  margin: 28px 0 40px;
  padding-left: 16px;
  border-left: 2px solid var(--lilac);
  color: var(--body);
  font-weight: 400;
  letter-spacing: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
.problem-col {
  background: var(--canvas);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-2);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--ink);
}
.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  line-height: var(--lh-body);
}
.check-list li:last-child { margin-bottom: 0; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 14px;
  height: 14px;
  background: currentColor;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M2.5 8.2 6.2 12 13.5 3.8' stroke='black' stroke-width='1.15' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M2.5 8.2 6.2 12 13.5 3.8' stroke='black' stroke-width='1.15' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
}

.phase-carousel {
  --phase-gap: 48px;
  --phase-slide: min(calc(var(--content) + var(--phase-gap)), calc(100vw - var(--gutter) * 2));
  --phase-index: 0;
  margin-top: var(--space-md);
}
.phase-nav {
  position: sticky;
  top: 16px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: fit-content;
  padding: 4px 6px;
  margin-bottom: var(--space-md);
  gap: 2px;
  background: var(--ink);
  border-radius: var(--pill);
}
.phase-nav-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 8px 16px;
  border-radius: var(--pill);
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,.5);
  cursor: pointer;
}
.phase-nav-btn.is-active {
  background: var(--canvas);
  color: var(--ink);
  box-shadow: none;
}
.phase-nav-arrow {
  color: rgba(255,255,255,.35);
  font-size: 13px;
  padding: 0 2px;
}
.phase-viewport {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  overflow: hidden;
}
.phase-track {
  display: flex;
  align-items: flex-start;
  transform: translateX(calc(var(--phase-index) * var(--phase-slide) * -1));
  transition: transform 0.55s cubic-bezier(.22, .61, .36, 1);
}
.phase {
  flex: 0 0 var(--phase-slide);
  box-sizing: border-box;
  padding-right: var(--phase-gap);
  max-width: var(--phase-slide);
  opacity: 0.08;
  cursor: pointer;
  transition: opacity 0.4s ease;
}
.phase.is-peek {
  opacity: 0.28;
}
.phase.is-active {
  opacity: 1;
  cursor: default;
}
@media (hover: hover) {
  .phase:not(.is-active):hover {
    opacity: 0.5;
  }
}
.phase h3 {
  margin-bottom: 12px;
}
.phase-lead {
  color: var(--ink-muted);
  max-width: var(--content);
}
.phase-list {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0 0;
  max-width: var(--content);
  display: grid;
  gap: 12px;
}
.phase-list li {
  padding: 20px;
  background: var(--canvas);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-1);
}
.phase-item-title {
  margin: 0 0 6px;
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--ink);
}
.phase-list p:not(.phase-item-title) {
  margin: 0;
  color: var(--ink);
  font-weight: 400;
  font-size: var(--text-small);
  line-height: var(--lh-body);
}
.phase-list p.choice-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.choice-pills span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 0;
  border-radius: var(--pill);
  background: var(--canvas-soft);
  font-size: 12px;
  line-height: 1.3;
  color: var(--ink-muted);
}
.choice-pills svg {
  display: block;
  flex-shrink: 0;
  border-radius: 3px;
}
.phase-list .code-mock {
  margin-top: 16px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  background: var(--canvas);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: var(--shadow-3);
  transition: box-shadow .2s ease, transform .2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-4);
}
.card p { color: var(--ink-muted); font-size: var(--text-small); line-height: var(--lh-body); }
.card-wide { grid-column: 1 / -1; }

.code-mock {
  margin-top: 20px;
  background: #0a0a0a;
  color: #f2f2f2;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-4);
}
.code-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-bottom: 1px solid #222;
}
.code-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333;
}
.code-bar span:nth-child(1) { background: #ff5702; }
.code-bar span:nth-child(2) { background: #ffc728; }
.code-bar span:nth-child(3) { background: #00b282; }
.code-bar code {
  margin-left: 8px;
  font-family: var(--sans);
  font-size: 11px;
  color: #888;
}
.code-mock pre {
  margin: 0;
  padding: 16px 18px 20px;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.55;
  overflow-x: auto;
}
.code-mock .k { color: var(--lilac); }

.option-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.option-top h3 { margin: 0; }
.badge {
  font-family: var(--sans);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 999px;
  background: var(--canvas-soft);
  color: var(--body);
}
.badge.on-dark { background: rgba(255,255,255,.12); color: #fff; }

.timeline {
  list-style: none;
  position: relative;
  padding: 0 0 0 20px;
  margin: 36px 0 0;
  max-width: var(--content);
}
.timeline::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: rgba(255,255,255,.16);
}
.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  column-gap: 16px;
  align-items: start;
  padding: 10px 0;
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
}
.timeline li.is-us::before {
  background: transparent;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
}
.timeline li.is-ongoing {
  margin-top: 6px;
}
.timeline li.is-ongoing::before {
  content: "∞";
  left: -26px;
  top: 10px;
  width: 14px;
  height: auto;
  border-radius: 0;
  background: var(--ink);
  font-size: 15px;
  line-height: 1;
  text-align: center;
  color: #fff;
}
.tl-optional {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(255,255,255,.4);
  white-space: nowrap;
}
.timeline li.is-us .tl-week,
.timeline li.is-us strong {
  color: rgba(255,255,255,.55);
}
.tl-week {
  padding-top: 1px;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255,255,255,.48);
  white-space: nowrap;
}
.tl-body {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 10px;
  row-gap: 2px;
}
.timeline strong {
  font-weight: 400;
  line-height: 1.4;
}
.tl-time {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--gold);
  white-space: nowrap;
}
.timeline p {
  flex: 1 1 100%;
  margin: 0;
  color: rgba(255,255,255,.52);
  font-size: 14px;
  line-height: 1.45;
}

.deliver-grid {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.deliver-grid li {
  background: var(--canvas);
  border-radius: var(--r-md);
  padding: 16px 16px 16px 44px;
  box-shadow: var(--shadow-1);
  position: relative;
  font-size: 15px;
  line-height: 1.45;
}
.deliver-grid li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 20px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--teal);
}

.pagebreak-intro {
  margin-top: var(--space-lg);
  max-width: var(--content);
}
.pagebreak-intro p + p {
  margin-top: 12px;
}
.pagebreak {
  width: 100%;
  margin: var(--space-md) 0 0;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.pagebreak-video {
  position: relative;
}
.pagebreak-embed {
  position: relative;
  z-index: 2;
  aspect-ratio: 940 / 529;
  background: #111;
}
.pagebreak-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.pagebreak-video-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.table-scroll { overflow-x: auto; margin-top: var(--space-md); }
.compare-wrap {
  min-width: 640px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--canvas);
  box-shadow: var(--shadow-2);
}
.compare {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  background: transparent;
}
.compare th, .compare td {
  text-align: left;
  padding: 14px 20px;
  border-bottom: 1px solid var(--hairline);
  font-size: 14px;
}
.compare th {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  background: var(--canvas-soft);
  color: var(--body);
}
.compare th:not(:first-child),
.compare td:not(:first-child) {
  text-align: center;
  width: 18%;
}
.compare td:first-child { width: 46%; }
.compare th.featured { background: var(--ink); color: #fff; }
.compare th.featured span {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--pill);
  background: #fff;
  color: var(--ink);
}
.compare td:nth-child(3) { font-weight: 500; }
.compare tr:last-child td { border-bottom: 0; }
.compare-wrap:not(.is-open) .compare-more { display: none; }
.compare-wrap:not(.is-open) tbody tr:nth-child(5) td { border-bottom: 0; }
.compare-toggle {
  display: block;
  width: 100%;
  appearance: none;
  border: 0;
  border-top: 1px solid var(--hairline);
  background: transparent;
  padding: 16px 20px;
  font-family: inherit;
  font-size: 13px;
  text-align: left;
  color: var(--mute);
  cursor: pointer;
}
.compare-toggle:hover { color: var(--ink); }

.band-dark .compare-wrap {
  background: rgba(255,255,255,.05);
  box-shadow: none;
  border: 1px solid rgba(255,255,255,.1);
}
.band-dark .compare th,
.band-dark .compare td {
  border-bottom-color: rgba(255,255,255,.08);
  color: rgba(255,255,255,.62);
}
.band-dark .compare th {
  background: transparent;
  color: rgba(255,255,255,.4);
  padding-top: 18px;
  padding-bottom: 18px;
}
.band-dark .compare td:first-child {
  color: rgba(255,255,255,.88);
}
.band-dark .compare th.featured {
  background: transparent;
  color: inherit;
}
.band-dark .compare td:nth-child(3) {
  color: #fff;
}
.band-dark .compare tbody tr:hover td {
  background: rgba(255,255,255,.03);
}
.band-dark .compare-toggle {
  border-top-color: rgba(255,255,255,.08);
  color: rgba(255,255,255,.5);
}
.band-dark .compare-toggle:hover { color: #fff; }
.band-dark .addons p {
  color: rgba(255,255,255,.68);
}
.band-dark .chip-row li {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
  box-shadow: none;
}

.addons { margin-top: 48px; }
.addons p { color: var(--body); margin: 8px 0 20px; max-width: 640px; }
.chip-row {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip-row li {
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--canvas);
  box-shadow: var(--shadow-1);
}

.scan-banner {
  display: block;
  padding: 28px 32px;
  margin: 40px 0 32px;
  background: var(--canvas);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-1);
}
.scan-banner h3 { margin: 6px 0 8px; }
.scan-banner .check-list {
  margin: 12px 0 8px;
  font-size: 14px;
}
.scan-banner p:last-of-type {
  color: var(--mute);
  font-size: 13px;
  max-width: 560px;
}

.price-switch {
  display: flex;
  width: fit-content;
  padding: 4px;
  background: var(--canvas-soft-2);
  border-radius: 64px;
  margin: 0 auto 32px;
  gap: 4px;
}
.price-tab {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 10px 18px;
  border-radius: 64px;
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  cursor: pointer;
}
.price-tab.is-active { background: var(--canvas); color: var(--ink); box-shadow: var(--shadow-2); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.pricing-grid[hidden] {
  display: none !important;
}
.price-card {
  background: var(--canvas);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
}
.price-card h3 { margin: 0 0 8px; }
.price-desc { color: var(--ink-muted); font-size: var(--text-small); min-height: 44px; }
.price {
  margin: 20px 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price span {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -1.2px;
}
.price small { color: var(--mute); font-size: 13px; }
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  flex: 1;
}
.price-card li {
  position: relative;
  padding: 8px 0 8px 24px;
  font-size: 14px;
  color: var(--body);
  border-bottom: 1px solid var(--hairline);
}
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 14px;
  background: currentColor;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M2.5 8.2 6.2 12 13.5 3.8' stroke='black' stroke-width='1.15' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M2.5 8.2 6.2 12 13.5 3.8' stroke='black' stroke-width='1.15' stroke-linecap='round' stroke-linejoin='round'/></svg>") center / contain no-repeat;
}
.price-note { font-size: 12px; color: var(--mute); margin-bottom: 20px; }
.price-card .btn { width: 100%; }
.price-card.is-featured {
  background: var(--ink);
  color: #fff;
}
.price-card.is-featured .price-desc,
.price-card.is-featured li { color: rgba(255,255,255,.72); }
.price-card.is-featured li { border-bottom-color: rgba(255,255,255,.1); }
.price-card.is-featured .price small { color: rgba(255,255,255,.5); }

.fineprint {
  margin-top: 24px;
  text-align: center;
  font-size: 12px;
  color: var(--mute);
}

.early-inner { max-width: var(--content); }
.early-inner p { color: var(--body); margin-top: 12px; }

.faq-list {
  width: 100%;
  max-width: var(--content);
  margin-top: var(--space-md);
}
.faq-list details {
  border-bottom: 1px solid var(--hairline);
  padding: 4px 0;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: var(--text-body);
  font-weight: 500;
  color: var(--ink);
  padding: 18px 32px 18px 0;
  position: relative;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 18px;
  font-weight: 400;
  color: var(--mute);
}
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p {
  color: var(--ink);
  padding: 0 32px 18px 0;
  max-width: 42em;
  font-size: var(--text-small);
  line-height: var(--lh-body);
}
.faq-list details p + p { padding-top: 0; }

.cta-band { padding: 120px 0; }
.cta-inner { max-width: 680px; }
.cta-hint { margin-top: 20px; color: rgba(255,255,255,.5); font-size: 14px; }

.footer-minimal {
  position: relative;
  z-index: 1;
  background: var(--canvas);
  padding: calc(40px + var(--section-radius)) 0 48px;
}
.footer-minimal-inner p {
  margin: 0;
  font-size: 13px;
  color: var(--mute);
  text-align: center;
}

.footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: 64px 0 40px;
  color: var(--body);
  font-size: 14px;
}
.footer-inner { display: grid; gap: 32px; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.8px;
  color: var(--ink);
}
.footer-contact a { text-decoration: none; }
.footer-contact a:hover { color: var(--mute); }
.footer-cols {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}
.footer-cols nav { display: flex; flex-direction: column; gap: 8px; }
.footer-cols a { text-decoration: none; color: var(--body); }
.footer-cols a:hover { color: var(--ink); }
.footer-base {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: 12px;
  color: var(--mute);
}
.footer-base a { color: var(--mute); text-decoration: none; }

@media (max-width: 1199px) {
  .card-grid.four { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 959px) {
  :root { --gutter: 20px; --section-radius: 16px; }
  .hero { padding: var(--space-sm) 0 0; }
  .hero-shell { gap: var(--space-sm); }
  .hero-body { margin-top: var(--space-sm); }
  .hero h1 { white-space: normal; }
  .section { padding: calc(var(--space-md) + var(--section-radius) + var(--space-sm)) 0 calc(var(--space-md) + var(--section-radius)); }
  #fundament { padding-top: calc(var(--space-md) + var(--section-radius) + var(--space-sm) + 36px); }
  .example-mockup { --mockup-overlap: 36px; }
  .quote-band { padding: var(--space-md) 0; }
  .split, .card-grid, .card-grid.three, .card-grid.four, .card-grid.two,
  .pricing-grid, .deliver-grid, .footer-cols {
    grid-template-columns: 1fr;
  }
  .timeline li {
    grid-template-columns: 64px 1fr;
    column-gap: 12px;
  }
  .scan-banner { padding: 24px; }
  .chat-thread { padding: 18px 16px; }
  .example-tab { padding: 8px 10px 9px; font-size: 12px; }
  .browser-chrome { gap: 10px; padding: 8px 8px 0 12px; }
  .phase-nav { width: 100%; justify-content: center; }
  .phase-carousel {
    --phase-gap: 24px;
    --phase-slide: 85vw;
  }
}

@media (max-width: 599px) {
  :root { --gutter: 20px; }
  .brand-word { display: none; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); white-space: normal; }
  .announcement-inner { font-size: 12px; }
  .price-switch { width: 100%; }
  .price-tab { flex: 1; text-align: center; padding: 10px 8px; font-size: 13px; }
  .timeline li { padding: 10px 0; }
  .browser-viewport { height: 420px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
  .phase-track,
  .phase {
    transition: none;
  }
}
