@font-face {
  font-family: "Work Sans";
  src: url("../fonts/worksans-regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url("../fonts/worksans-semibold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Work Sans";
  src: url("../fonts/worksans-bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --brand: #1e4e8c;
  --brand-deep: #0b2748;
  --brand-dark: #07182d;
  --brand-mid: #278bda;
  --brand-bright: #55a9e9;
  --brand-pale: #e8eff8;
  --brand-paler: #f1f6fb;
  --brand-line: #d8e4f2;
  --product: #dc0a2d;
  --product-pale: #fff0f3;
  --amber: #f2ad3d;
  --green: #0f7456;
  --ink: #0b1220;
  --ink-soft: #334155;
  --muted: #5f7081;
  --paper: #f7f9fb;
  --surface: #ffffff;
  --line: #dbe3eb;
  --line-dark: rgba(210, 226, 241, 0.17);
  --shadow-soft: 0 18px 48px rgba(7, 24, 45, 0.09);
  --shadow-strong: 0 32px 86px rgba(3, 14, 28, 0.28);
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1240px;
  --header-height: 76px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Work Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

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

h1,
h2,
h3,
strong,
b {
  font-weight: 600;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 em,
h2 em {
  color: inherit;
  font-style: normal;
  position: relative;
}

::selection {
  color: #fff;
  background: var(--brand);
}

:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--brand-deep) !important;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.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: 10px;
  left: 10px;
  z-index: 2000;
  padding: 10px 16px;
  color: #fff;
  background: var(--brand-dark);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1500;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--brand-mid), var(--brand-bright));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(216, 228, 242, 0.72);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 30px rgba(7, 24, 45, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand img {
  width: 138px;
  height: auto;
}

.brand-divider {
  width: 1px;
  height: 28px;
  background: var(--line);
}

.product-name {
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
  color: #425164;
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  padding-block: 8px;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--brand-mid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--ease);
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 18px;
  color: #fff;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 7px;
  box-shadow: 0 9px 24px rgba(30, 78, 140, 0.2);
  transition: transform 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.nav-cta:hover {
  background: var(--brand-deep);
  box-shadow: 0 12px 28px rgba(11, 39, 72, 0.25);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(4) {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 600;
  line-height: 1;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease, border-color 0.22s ease;
}

.button-primary {
  color: #fff;
  background: #1476bd;
  border-color: #1476bd;
  box-shadow: 0 14px 34px rgba(39, 139, 218, 0.28);
}

.button-primary:hover {
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 18px 40px rgba(39, 139, 218, 0.34);
  transform: translateY(-3px);
}

.button-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 0.22s ease;
}

.button:hover .button-icon { transform: translateX(3px); }
.button:hover .button-icon-down { transform: translateY(2px); }

.button-ghost {
  color: #e7f2ff;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(222, 237, 252, 0.23);
}

.button-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(222, 237, 252, 0.4);
  transform: translateY(-3px);
}

.hero {
  position: relative;
  min-height: min(960px, calc(100vh - var(--header-height)));
  overflow: hidden;
  overflow: clip;
  color: #fff;
  background:
    radial-gradient(circle at 15% 12%, rgba(39, 139, 218, 0.22), transparent 27rem),
    radial-gradient(circle at 93% 72%, rgba(30, 78, 140, 0.32), transparent 33rem),
    linear-gradient(135deg, #07182d 0%, #0a2340 55%, #07182d 100%);
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(177, 203, 232, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(177, 203, 232, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to right, #000, transparent 77%);
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -180px;
  left: -8%;
  height: 230px;
  background: var(--paper);
  transform: rotate(-2.4deg);
  transform-origin: top right;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(85, 169, 233, 0.17);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  background: var(--brand-bright);
  border-radius: 50%;
  box-shadow: 0 0 25px rgba(85, 169, 233, 0.85);
}

.hero-orbit-one {
  top: -260px;
  right: -280px;
  width: 790px;
  height: 790px;
}

.hero-orbit-two {
  right: -95px;
  bottom: 72px;
  width: 390px;
  height: 390px;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(400px, 0.86fr) minmax(600px, 1.14fr);
  gap: clamp(46px, 5vw, 78px);
  align-items: center;
  min-height: 760px;
  padding-block: 88px 148px;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 19px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  color: #8bc9f5;
}

.eyebrow > span {
  width: 30px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 660px;
  margin-bottom: 26px;
  font-size: clamp(2.2rem, 2.45vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.062em;
}

.hero h1 em {
  display: inline-block;
  color: #8bc9f5;
}

.hero h1 em::after {
  content: "";
  position: absolute;
  right: 0.05em;
  bottom: 0.08em;
  left: 0.05em;
  height: 0.08em;
  background: var(--product);
  transform: rotate(-1.6deg);
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 32px;
  color: #c8d6e8;
  font-size: clamp(1.04rem, 1.5vw, 1.23rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 30px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 24px;
  padding: 0;
  margin: 0;
  color: #aebfd0;
  font-size: 0.86rem;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-points svg,
.demo-promise svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--brand-bright);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.product-stage {
  position: relative;
  z-index: 2;
  width: min(100%, 690px);
  min-width: 0;
  max-width: 100%;
  margin-left: auto;
  perspective: 1300px;
}

.stage-glow {
  position: absolute;
  inset: 12% 10%;
  background: rgba(39, 139, 218, 0.24);
  filter: blur(70px);
}

.product-window {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 508px;
  overflow: hidden;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid rgba(210, 226, 241, 0.55);
  border-radius: 13px;
  box-shadow: var(--shadow-strong), 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: rotateY(-3deg) rotateX(1deg);
  transform-origin: left center;
  transition: transform 0.7s var(--ease);
}

.product-stage:hover .product-window {
  transform: rotateY(0deg) rotateX(0deg) translateY(-5px);
}

.window-bar {
  display: grid;
  grid-template-columns: 88px 1fr 40px;
  align-items: center;
  min-height: 42px;
  padding-inline: 14px;
  background: #eef3f7;
  border-bottom: 1px solid #dde5ed;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  background: #c0cbd6;
  border-radius: 50%;
}

.window-dots span:first-child { background: #e76578; }
.window-dots span:nth-child(2) { background: #f0b64e; }
.window-dots span:last-child { background: #57b68e; }

.window-address {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 208px;
  padding: 4px 13px;
  color: #536475;
  background: #fff;
  border: 1px solid #e0e6ec;
  border-radius: 6px;
  font-size: 0.65rem;
  text-align: center;
}

.lock-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.window-avatar,
.task-owner {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  font-size: 0.56rem;
  font-weight: 700;
}

.window-avatar { justify-self: end; }

.product-toolbar {
  display: grid;
  grid-template-columns: 90px 1fr 80px;
  align-items: center;
  min-height: 55px;
  padding: 7px 13px;
  background: #fff;
  border-bottom: 1px solid #e6ebf0;
}

.toolbar-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.toolbar-brand img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.demo-tabs {
  justify-self: center;
  display: flex;
  gap: 3px;
  padding: 3px;
  background: #f0f3f6;
  border-radius: 7px;
}

.demo-tabs button {
  padding: 6px 11px;
  color: #536475;
  background: transparent;
  border: 0;
  border-radius: 5px;
  font-size: 0.66rem;
  font-weight: 600;
  cursor: pointer;
}

.demo-tabs button[aria-selected="true"] {
  color: var(--brand-deep);
  background: #fff;
  box-shadow: 0 2px 7px rgba(7, 24, 45, 0.1);
}

.quick-add {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  color: #fff;
  background: var(--brand);
  border: 0;
  border-radius: 5px;
  font-size: 0.62rem;
  font-weight: 600;
  cursor: pointer;
}

.quick-add span {
  font-size: 0.9rem;
  line-height: 0.6;
}

.demo-panel {
  min-height: 410px;
}

.demo-panel[hidden] {
  display: none !important;
}

#panel-hoy {
  display: grid;
  grid-template-columns: 132px 1fr;
}

.demo-sidebar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 17px 9px;
  background: #f1f4f7;
  border-right: 1px solid #e2e8ee;
}

.demo-sidebar .demo-filter {
  display: grid;
  grid-template-columns: 17px 1fr auto;
  align-items: center;
  gap: 5px;
  width: 100%;
  min-height: 31px;
  padding: 5px 7px;
  color: #596979;
  background: transparent;
  border: 0;
  border-radius: 5px;
  font-size: 0.61rem;
  text-align: left;
}

.demo-sidebar .demo-filter.active {
  color: var(--brand-deep);
  background: #fff;
  box-shadow: 0 3px 10px rgba(7, 24, 45, 0.07);
  font-weight: 600;
}

.demo-sidebar .demo-filter > i {
  color: var(--brand);
  font-size: 0.76rem;
  font-style: normal;
  text-align: center;
}

.demo-sidebar .demo-filter b {
  display: grid;
  min-width: 16px;
  height: 16px;
  place-items: center;
  padding-inline: 3px;
  color: #435b72;
  background: #dfe7ee;
  border-radius: 7px;
  font-size: 0.52rem;
}

.demo-sidebar .demo-filter b.danger {
  color: var(--product);
  background: var(--product-pale);
}

.today-view {
  padding: 19px 20px 15px;
  background: #fbfcfd;
}

.demo-heading,
.board-head,
.calendar-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.demo-overline {
  display: block;
  margin-bottom: 2px;
  color: #5f7081;
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-heading h2,
.board-head h2,
.calendar-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.23rem;
}

.focus-meter {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  min-width: 92px;
  color: #536475;
  font-size: 0.53rem;
}

.focus-meter i {
  width: 88px;
  height: 4px;
  overflow: hidden;
  background: #e2e7ec;
  border-radius: 3px;
}

.focus-meter b {
  display: block;
  width: 40%;
  height: 100%;
  background: var(--brand-mid);
  border-radius: inherit;
  transition: width 0.35s var(--ease);
}

.task-list {
  display: grid;
  gap: 7px;
}

.task-row {
  display: grid;
  grid-template-columns: 27px 1fr 28px;
  align-items: center;
  gap: 10px;
  min-height: 55px;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid #e5eaf0;
  border-left: 3px solid var(--brand-mid);
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(7, 24, 45, 0.035);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.task-row:nth-child(3) { border-left-color: var(--product); }
.task-row:nth-child(4) { border-left-color: var(--amber); }

.task-row.is-done {
  opacity: 0.57;
  border-left-color: #b5c0ca;
}

.task-row.is-done h3 {
  text-decoration: line-through;
  text-decoration-color: #95a3b1;
}

.task-check {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  padding: 0;
  color: transparent;
  background: #fff;
  border: 1px solid #bcc8d4;
  border-radius: 50%;
  cursor: pointer;
}

.task-check[aria-pressed="true"] {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.task-check svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.task-row h3 {
  margin: 0 0 3px;
  font-size: 0.68rem;
  letter-spacing: -0.015em;
}

.task-row p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: #5d6c7c;
  font-size: 0.53rem;
}

.tag {
  padding: 2px 5px;
  color: #375b79;
  background: #eaf3fb;
  border-radius: 3px;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tag-red { color: #a5132b; background: #ffedf0; }
.tag-amber { color: #8a5c0d; background: #fff3db; }
.tag-slate { color: #526477; background: #edf1f5; }
.owner-alt { background: #7b5eb0; }
.owner-third { color: #603900; background: #f4bb5d; }

.board-view,
.calendar-view {
  padding: 18px;
  background: #f8fafc;
}

.sample-note {
  color: #596a7b;
  font-size: 0.55rem;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.board-column {
  min-width: 0;
  padding: 9px;
  background: #edf1f4;
  border-radius: 7px;
}

.board-column > h3 {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0 0 9px;
  color: #576779;
  font-size: 0.61rem;
  letter-spacing: 0;
}

.board-column > h3 span {
  margin-left: auto;
  color: #566879;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #93a1af;
  border-radius: 50%;
}

.status-dot.progress { background: var(--brand-mid); }
.status-dot.done { background: var(--green); }

.board-column article {
  padding: 10px;
  margin-bottom: 8px;
  background: #fff;
  border: 1px solid #e0e6ec;
  border-radius: 6px;
  box-shadow: 0 3px 10px rgba(7, 24, 45, 0.04);
}

.board-column article:last-child { margin-bottom: 0; }
.board-column article.featured-task { border-top: 2px solid var(--brand-mid); }
.board-column article.completed-card { background: #f7f9fb; }

.board-column article small {
  display: block;
  margin-bottom: 3px;
  color: var(--brand);
  font-size: 0.43rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.board-column article strong {
  display: block;
  min-height: 28px;
  font-size: 0.62rem;
  line-height: 1.3;
}

.board-column article p {
  margin: 4px 0 8px;
  color: #5e6e7d;
  font-size: 0.49rem;
}

.board-column article div {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.board-column article div span {
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  font-size: 0.44rem;
  font-weight: 700;
}

.board-column article div b {
  color: #536475;
  font-size: 0.45rem;
}

.board-column article div b.priority-high { color: var(--product); }

.calendar-controls {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #536475;
  font-size: 0.54rem;
}

.calendar-controls span,
.calendar-controls b {
  display: grid;
  min-width: 24px;
  height: 23px;
  place-items: center;
  background: #fff;
  border: 1px solid #dfe6ed;
  border-radius: 4px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  overflow: hidden;
  background: #fff;
  border: 1px solid #e0e7ee;
  border-radius: 7px;
}

.calendar-grid > b {
  padding: 5px;
  color: #596a7b;
  background: #f2f5f7;
  border-right: 1px solid #e4eaf0;
  font-size: 0.48rem;
  text-align: center;
}

.calendar-grid > span {
  position: relative;
  min-height: 82px;
  padding: 6px;
  color: #526273;
  border-top: 1px solid #e5eaf0;
  border-right: 1px solid #e5eaf0;
  font-size: 0.52rem;
}

.calendar-grid .muted-day { color: #657586; }
.calendar-grid .today-cell { color: var(--brand); background: #f2f7fc; box-shadow: inset 0 0 0 1px var(--brand-mid); }

.calendar-event {
  display: block;
  overflow: hidden;
  margin-top: 5px;
  padding: 3px 4px;
  color: #1e5a85;
  background: #e6f2fb;
  border-left: 2px solid var(--brand-mid);
  border-radius: 2px;
  font-size: 0.42rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.calendar-event.amber { color: #805108; background: #fff2d9; border-left-color: var(--amber); }
.calendar-event.red { color: #9c1830; background: #ffebee; border-left-color: var(--product); }

.stage-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 176px;
  padding: 10px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(216, 228, 242, 0.85);
  border-radius: 9px;
  box-shadow: 0 15px 35px rgba(4, 17, 31, 0.22);
  animation: float-card 5s ease-in-out infinite;
}

.stage-card-top {
  top: 74px;
  right: -42px;
}

.stage-card-bottom {
  bottom: 45px;
  left: -48px;
  animation-delay: -2.4s;
}

.stage-icon {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  color: var(--brand-mid);
  background: var(--brand-paler);
  border-radius: 6px;
}

.stage-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.stage-card strong,
.stage-card small {
  display: block;
  line-height: 1.25;
}

.stage-card strong { font-size: 0.7rem; }
.stage-card small { color: #536475; font-size: 0.55rem; }

.stage-caption {
  position: relative;
  z-index: 3;
  margin: 10px 4px 0;
  color: #aabed2;
  font-size: 0.61rem;
  letter-spacing: 0.02em;
  text-align: right;
}

.pulse-dot {
  position: relative;
  width: 12px;
  height: 12px;
  margin-inline: 8px;
  background: var(--green);
  border-radius: 50%;
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid var(--green);
  border-radius: inherit;
  animation: pulse-ring 2s ease-out infinite;
}

.hero-foot {
  position: absolute;
  right: 0;
  bottom: 90px;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 28px;
  color: #8fa5bb;
  font-size: 0.72rem;
}

.hero-foot > span {
  flex: 0 0 auto;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-foot ul {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
  padding: 0;
  margin: 0;
  color: #c5d4e3;
  list-style: none;
}

.hero-foot li {
  position: relative;
}

.hero-foot li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -14px;
  width: 3px;
  height: 3px;
  background: var(--brand-bright);
  border-radius: 50%;
}

.section {
  position: relative;
  padding-block: clamp(92px, 10vw, 148px);
}

.section h2 {
  margin-bottom: 24px;
  font-size: clamp(1.95rem, 2.25vw, 2.8rem);
  font-weight: 600;
}

.section h2 em {
  color: var(--brand);
}

.section-copy > p:not(.kicker),
.section-heading > p,
.split-heading > p,
.trust-copy > p:not(.kicker),
.faq-intro > p:not(.kicker) {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.17rem);
  line-height: 1.72;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 62px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .kicker {
  justify-content: center;
}

.section-heading.centered > p:last-child {
  max-width: 670px;
  margin-inline: auto;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  font-weight: 600;
}

.text-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 0.2s ease;
}

.text-link:hover svg { transform: translateX(4px); }

.problem-section {
  background:
    linear-gradient(90deg, rgba(216, 228, 242, 0.36) 1px, transparent 1px),
    linear-gradient(rgba(216, 228, 242, 0.36) 1px, transparent 1px),
    var(--paper);
  background-size: 80px 80px;
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(590px, 1.28fr);
  gap: clamp(55px, 7vw, 100px);
  align-items: center;
}

.problem-section h2 {
  font-size: clamp(1.95rem, 2.15vw, 2.7rem);
}

.problem-section .section-copy > p:not(.kicker) {
  max-width: 520px;
  margin-bottom: 30px;
}

.before-after {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 45px 1.1fr;
  align-items: center;
  min-height: 455px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}

.compare-label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
  color: #5f7081;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-dot {
  width: 7px;
  height: 7px;
  background: var(--brand-mid);
  border-radius: 50%;
}

.compare-dot.red { background: var(--product); }

.chaos-canvas {
  position: relative;
  height: 350px;
  overflow: hidden;
  background: #f4f5f7;
  border: 1px dashed #ccd4dc;
  border-radius: 10px;
}

.chaos-canvas::before {
  content: "?";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: #9aa6b2;
  background: #fff;
  border: 1px solid #d4dce4;
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(7, 24, 45, 0.08);
  font-size: 1.15rem;
  font-weight: 700;
  transform: translate(-50%, -50%);
}

.source-card {
  position: absolute;
  z-index: 3;
  display: grid;
  grid-template-columns: 29px 1fr;
  gap: 1px 7px;
  min-width: 112px;
  padding: 8px 9px;
  color: #536273;
  background: #fff;
  border: 1px solid #dbe2e8;
  border-radius: 7px;
  box-shadow: 0 6px 15px rgba(7, 24, 45, 0.07);
}

.source-card i {
  grid-row: 1 / 3;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #7d8995;
  background: #edf0f3;
  border-radius: 5px;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
}

.source-card span { font-size: 0.65rem; font-weight: 600; }
.source-card small { color: #98a2ac; font-size: 0.49rem; }
.source-mail { top: 23px; left: 14px; transform: rotate(-2deg); }
.source-chat { top: 50px; right: 10px; transform: rotate(3deg); }
.source-sheet { bottom: 55px; left: 15px; transform: rotate(2deg); }
.source-file { right: 14px; bottom: 24px; transform: rotate(-3deg); }

.chaos-line {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 195px;
  height: 1px;
  border-top: 1px dashed #aeb9c4;
  transform-origin: left;
}

.line-one { transform: rotate(28deg); }
.line-two { transform: rotate(145deg); }
.line-three { transform: rotate(220deg); }

.connection-arrow {
  position: relative;
  z-index: 5;
  display: grid;
  width: 45px;
  height: 45px;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border: 6px solid #fff;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(30, 78, 140, 0.23);
}

.order-side {
  min-width: 0;
}

.context-card {
  min-height: 350px;
  padding: 25px;
  background: #fff;
  border: 1px solid var(--brand-line);
  border-top: 3px solid var(--brand-mid);
  border-radius: 10px;
  box-shadow: 0 15px 35px rgba(7, 24, 45, 0.09);
}

.context-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 30px;
  color: var(--brand);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.context-head b {
  padding: 4px 7px;
  color: var(--green);
  background: #e9f7f2;
  border-radius: 4px;
  letter-spacing: 0;
}

.context-card h3 {
  margin-bottom: 24px;
  font-size: 1.3rem;
}

.context-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 21px;
  color: #5f7081;
  font-size: 0.64rem;
}

.context-meta span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.context-meta i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  background: #7b5eb0;
  border-radius: 50%;
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 700;
}

.context-progress {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding-bottom: 24px;
  margin-bottom: 21px;
  border-bottom: 1px solid #e9edf1;
}

.context-progress > span {
  height: 6px;
  overflow: hidden;
  background: #e5ebf0;
  border-radius: 5px;
}

.context-progress b {
  display: block;
  width: 67%;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-mid));
}

.context-progress small { color: #5f7081; font-size: 0.57rem; }

.context-card ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0;
  color: #526375;
  font-size: 0.67rem;
  list-style: none;
}

.context-card li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.context-card li svg {
  width: 16px;
  height: 16px;
  padding: 3px;
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
  background: var(--green);
  border-radius: 50%;
}

.method-section {
  overflow: hidden;
  background: #fff;
}

.method-section::before {
  content: "GTD";
  position: absolute;
  top: 28px;
  right: -25px;
  color: #f3f6f9;
  font-size: clamp(9rem, 19vw, 18rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.method-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
  margin: 0;
  list-style: none;
}

.method-flow::before {
  content: "";
  position: absolute;
  top: 73px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--brand-line), var(--brand-mid), var(--brand-line));
}

.method-flow li {
  position: relative;
  z-index: 2;
  padding: 0 22px 24px;
  text-align: center;
}

.step-number {
  display: block;
  margin-bottom: 20px;
  color: #657586;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.step-icon {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 0 auto 21px;
  place-items: center;
  color: var(--brand);
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: 50%;
  box-shadow: 0 11px 26px rgba(30, 78, 140, 0.11);
}

.step-icon::after {
  content: "";
  position: absolute;
  top: 66px;
  width: 7px;
  height: 7px;
  background: var(--brand-mid);
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--brand-mid);
}

.step-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.method-flow h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.method-flow p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.features-section {
  background: var(--paper);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 70px;
  align-items: end;
  max-width: none;
}

.split-heading h2 {
  max-width: 800px;
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 4px;
}

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

.feature-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(7, 24, 45, 0.035);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease;
}

.feature-card:hover {
  border-color: #bdcfdf;
  box-shadow: 0 22px 48px rgba(7, 24, 45, 0.09);
  transform: translateY(-6px);
}

.feature-card h3 {
  max-width: 430px;
  margin-bottom: 13px;
  font-size: clamp(1.4rem, 2vw, 2rem);
}

.feature-card > p,
.feature-copy > p {
  max-width: 500px;
  color: var(--muted);
  line-height: 1.65;
}

.feature-index {
  position: absolute;
  top: 25px;
  right: 27px;
  color: #657586;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.feature-icon {
  display: grid;
  width: 47px;
  height: 47px;
  margin-bottom: 45px;
  place-items: center;
  color: var(--brand);
  background: var(--brand-paler);
  border: 1px solid var(--brand-line);
  border-radius: 9px;
}

.feature-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}

.feature-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.feature-wide .feature-icon {
  margin-bottom: 25px;
}

.agenda-card {
  min-height: 420px;
  background:
    linear-gradient(90deg, transparent 49.8%, rgba(216, 228, 242, 0.65) 50%, transparent 50.2%),
    #fff;
}

.date-stack {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 16px 8px 16px 20px;
}

.date-stack::before {
  content: "";
  position: absolute;
  top: 0;
  left: 55px;
  width: 1px;
  height: 100%;
  background: #dfe6ed;
}

.date-pill {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 13px;
  min-height: 54px;
  padding: 8px 15px 8px 7px;
  color: #5d6c7b;
  background: #f8fafc;
  border: 1px solid #e4e9ee;
  border-radius: 7px;
  font-size: 0.77rem;
}

.date-pill i {
  position: relative;
  z-index: 2;
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: #5f7081;
  background: #fff;
  border: 1px solid #d9e1e8;
  border-radius: 50%;
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 700;
}

.date-pill small {
  display: grid;
  min-width: 25px;
  height: 22px;
  place-items: center;
  color: #4f6376;
  background: #e7edf2;
  border-radius: 5px;
}

.date-pill.active {
  color: var(--brand-deep);
  background: var(--brand-paler);
  border-color: #b8d2e7;
  box-shadow: 0 8px 20px rgba(30, 78, 140, 0.08);
}

.date-pill.active i {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
}

.date-pill.overdue { color: #9c1830; }
.date-pill.overdue i { color: #fff; background: var(--product); border-color: var(--product); }
.date-pill.overdue small { color: var(--product); background: var(--product-pale); }

.mini-board {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  height: 98px;
  padding: 9px;
  background: #f0f3f6;
  border: 1px solid #e0e6ec;
  border-radius: 7px;
}

.mini-board > span {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 4px;
}

.mini-board i {
  display: block;
  height: 23px;
  background: #fff;
  border: 1px solid #dfe5ea;
  border-left: 3px solid #9aa8b5;
  border-radius: 3px;
  box-shadow: 0 2px 5px rgba(7, 24, 45, 0.05);
}

.mini-board i.blue { border-left-color: var(--brand-mid); }
.mini-board i.done { border-left-color: var(--green); opacity: 0.66; }

.search-card {
  background:
    radial-gradient(circle at 90% 85%, rgba(39, 139, 218, 0.09), transparent 160px),
    #fff;
}

.search-sample {
  position: absolute;
  right: 28px;
  bottom: 31px;
  left: 28px;
  display: grid;
  grid-template-columns: 23px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 53px;
  padding: 9px 13px;
  color: #5f7081;
  background: #fff;
  border: 1px solid #cdd8e2;
  border-radius: 7px;
  box-shadow: 0 12px 30px rgba(7, 24, 45, 0.09);
  font-size: 0.75rem;
}

.search-sample svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: var(--brand);
  stroke-linecap: round;
  stroke-width: 1.7;
}

.search-sample b {
  padding: 3px 7px;
  color: #526476;
  background: #f0f3f6;
  border: 1px solid #e1e6eb;
  border-radius: 4px;
  font-size: 0.54rem;
}

.delegation-card {
  min-height: 410px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 50%, rgba(39, 139, 218, 0.3), transparent 20rem),
    var(--brand-dark);
  border-color: #183958;
}

.delegation-card .feature-index { color: #6f8ba5; }
.delegation-card .feature-icon { color: #8bc9f5; background: rgba(39, 139, 218, 0.12); border-color: rgba(139, 201, 245, 0.2); }
.delegation-card p { color: #b8c9d9; }

.delegation-visual {
  display: grid;
  grid-template-columns: 105px 1fr 115px;
  align-items: center;
}

.delegation-visual > svg {
  width: 100%;
  overflow: visible;
}

.delegation-visual > svg path {
  fill: none;
  stroke: rgba(139, 201, 245, 0.55);
  stroke-dasharray: 5 5;
  stroke-width: 1.5;
}

.delegation-visual > svg circle { fill: var(--brand-bright); }

.person-stack {
  display: grid;
  gap: 15px;
}

.person-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(197, 219, 238, 0.16);
  border-radius: 7px;
}

.person-chip span {
  display: grid;
  width: 31px;
  height: 31px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  font-size: 0.57rem;
  font-weight: 700;
}

.person-chip b { color: #d7e4ef; font-size: 0.62rem; }
.person-chip.manager span { background: #7b5eb0; }

.file-row {
  position: absolute;
  right: 28px;
  bottom: 29px;
  left: 28px;
  display: grid;
  grid-template-columns: 42px 1fr 25px;
  align-items: center;
  gap: 11px;
  padding: 11px;
  background: #f7f9fb;
  border: 1px solid #e0e6ec;
  border-radius: 7px;
}

.file-row > span {
  display: grid;
  width: 40px;
  height: 46px;
  place-items: center;
  color: var(--product);
  background: var(--product-pale);
  border-radius: 5px;
  font-size: 0.55rem;
  font-weight: 700;
}

.file-row b,
.file-row small { display: block; }
.file-row b { font-size: 0.66rem; }
.file-row small { color: #8a97a4; font-size: 0.52rem; }
.file-row i { display: grid; width: 22px; height: 22px; place-items: center; color: #fff; background: var(--green); border-radius: 50%; font-size: 0.6rem; font-style: normal; }

.cost-meter {
  position: absolute;
  right: 28px;
  bottom: 30px;
  left: 28px;
}

.cost-meter > div {
  display: flex;
  justify-content: space-between;
  color: #5f7081;
  font-size: 0.62rem;
}

.cost-meter > div b { color: var(--ink-soft); }

.cost-meter > i {
  display: block;
  height: 10px;
  overflow: hidden;
  margin-block: 9px;
  background: #e6ebef;
  border-radius: 5px;
}

.cost-meter em {
  display: block;
  width: 71%;
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-mid));
  border-radius: inherit;
}

.process-section {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 18% 50%, rgba(39, 139, 218, 0.2), transparent 26rem),
    linear-gradient(135deg, #061525 0%, #0b2748 100%);
}

.process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image: radial-gradient(rgba(177, 203, 232, 0.3) 0.7px, transparent 0.7px);
  background-size: 18px 18px;
}

.process-linework {
  position: absolute;
  top: 50%;
  right: -8%;
  width: 56%;
  opacity: 0.08;
  filter: invert(1);
  mix-blend-mode: screen;
  transform: translateY(-50%);
}

.process-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(70px, 9vw, 130px);
  align-items: center;
}

.kicker-light { color: #8bc9f5; }

.process-copy h2 {
  font-size: clamp(2.05rem, 2.25vw, 2.85rem);
}

.process-copy h2 em { color: #8bc9f5; }

.process-copy > p:not(.kicker) {
  color: #bed0df;
  font-size: 1.06rem;
  line-height: 1.75;
}

.process-benefits {
  display: grid;
  gap: 17px;
  padding: 28px 0 0;
  margin: 28px 0 0;
  border-top: 1px solid var(--line-dark);
  list-style: none;
}

.process-benefits li {
  display: grid;
  grid-template-columns: 33px 1fr;
  gap: 13px;
}

.process-benefits li > span {
  color: #6f94b3;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.process-benefits b,
.process-benefits small { display: block; }
.process-benefits b { margin-bottom: 3px; color: #eef6fc; font-size: 0.9rem; }
.process-benefits small { color: #8fa7bb; font-size: 0.77rem; line-height: 1.5; }

.workflow-studio {
  width: min(100%, 660px);
  margin-left: auto;
  overflow: hidden;
  background: rgba(7, 24, 45, 0.86);
  border: 1px solid rgba(177, 203, 232, 0.22);
  border-radius: 14px;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
}

.workflow-studio-bar {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.055);
  border-bottom: 1px solid rgba(177, 203, 232, 0.16);
}

.workflow-studio-bar > div {
  display: flex;
  align-items: center;
  gap: 9px;
}

.workflow-studio-bar > div > span {
  width: 8px;
  height: 8px;
  background: #55a9e9;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(85, 169, 233, 0.12);
}

.workflow-studio-bar strong {
  color: #eef6fc;
  font-size: 0.78rem;
  font-weight: 600;
}

.workflow-studio-bar small {
  color: #6f94b3;
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.workflow-canvas {
  position: relative;
  min-height: 480px;
  background-image:
    radial-gradient(rgba(177, 203, 232, 0.2) 0.7px, transparent 0.7px),
    radial-gradient(circle at 50% 43%, rgba(39, 139, 218, 0.1), transparent 16rem);
  background-size: 18px 18px, auto;
}

.workflow-connectors {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  fill: none;
  stroke: rgba(85, 169, 233, 0.62);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
}

.workflow-connectors .workflow-loop {
  stroke: rgba(177, 203, 232, 0.44);
  stroke-dasharray: 5 6;
}

.workflow-node {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 200px;
  min-height: 70px;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(12, 43, 77, 0.96);
  border: 1px solid rgba(177, 203, 232, 0.23);
  border-radius: 8px;
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.24);
}

.workflow-node > div,
.workflow-node strong,
.workflow-node small,
.workflow-node em { display: block; min-width: 0; }

.workflow-node small {
  margin-bottom: 3px;
  color: #7fa7c4;
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.workflow-node strong {
  overflow: hidden;
  color: #f4f8fb;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workflow-node em {
  margin-top: 3px;
  overflow: hidden;
  color: #8fa7bb;
  font-size: 0.52rem;
  font-style: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.node-symbol {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #8bc9f5;
  background: rgba(39, 139, 218, 0.13);
  border: 1px solid rgba(85, 169, 233, 0.38);
  border-radius: 7px;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.workflow-start,
.workflow-review,
.workflow-decision {
  left: 50%;
  transform: translateX(-50%);
}

.workflow-start { top: 5px; }
.workflow-review { top: 104px; }
.workflow-decision { top: 204px; border-color: rgba(85, 169, 233, 0.55); }
.workflow-approval { top: 315px; left: calc(25.8% - 100px); }
.workflow-correction { top: 315px; left: calc(74.2% - 100px); }
.workflow-finish { top: 409px; left: calc(25.8% - 100px); border-color: rgba(74, 186, 147, 0.42); }
.workflow-finish .node-symbol { color: #8edec4; background: rgba(34, 151, 110, 0.12); border-color: rgba(74, 186, 147, 0.38); }

.route-label {
  position: absolute;
  z-index: 3;
  top: 286px;
  padding: 3px 6px;
  color: #87adc9;
  background: #09203a;
  border: 1px solid rgba(177, 203, 232, 0.18);
  border-radius: 3px;
  font-size: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.route-yes { left: 28%; }
.route-no { right: 17%; }

.workflow-types {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 14px 16px 16px;
  background: rgba(255, 255, 255, 0.035);
  border-top: 1px solid rgba(177, 203, 232, 0.13);
}

.workflow-types span {
  padding: 5px 8px;
  color: #9ab2c5;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(177, 203, 232, 0.14);
  border-radius: 3px;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.roles-section {
  background: #fff;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.role-card {
  position: relative;
  min-height: 415px;
  padding: 31px;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid #b7c5d2;
  border-radius: 10px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.role-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-6px);
}

.role-card-featured {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  border-top-color: #8bc9f5;
  box-shadow: 0 22px 50px rgba(30, 78, 140, 0.2);
}

.role-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 64px;
}

.role-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--brand);
  background: var(--brand-paler);
  border: 1px solid var(--brand-line);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
}

.role-card-featured .role-avatar {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.role-tag {
  color: #5f7081;
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.role-card-featured .role-tag { color: #bcd8ee; }

.role-card h3 {
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.role-card p {
  color: var(--muted);
  line-height: 1.65;
}

.role-card-featured p { color: #d4e3ef; }

.role-card ul {
  display: grid;
  gap: 9px;
  padding: 22px 0 0;
  margin: 22px 0 0;
  border-top: 1px solid #e5eaf0;
  color: #526274;
  font-size: 0.82rem;
  list-style: none;
}

.role-card-featured ul { color: #e0ebf4; border-top-color: rgba(255, 255, 255, 0.18); }

.role-card li {
  position: relative;
  padding-left: 17px;
}

.role-card li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--brand-mid);
  border-radius: 50%;
}

.role-card-featured li::before { background: #8bc9f5; }

.use-case-band {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 35px;
  padding: 22px 26px;
  margin-top: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 9px;
}

.use-case-band > span {
  color: #5f7081;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.use-case-band ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.use-case-band li {
  padding: 6px 11px;
  color: #526476;
  background: #fff;
  border: 1px solid #dfe6ed;
  border-radius: 5px;
  font-size: 0.72rem;
}

.trust-section {
  padding-block: clamp(82px, 9vw, 125px);
  background:
    radial-gradient(circle at 0 50%, rgba(39, 139, 218, 0.08), transparent 25rem),
    var(--brand-paler);
  border-block: 1px solid var(--brand-line);
}

.trust-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(60px, 9vw, 135px);
  align-items: center;
}

.trust-copy h2 {
  font-size: clamp(1.95rem, 2.15vw, 2.7rem);
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--brand-line);
  border: 1px solid var(--brand-line);
  border-radius: 10px;
}

.trust-list article {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 14px;
  min-height: 160px;
  padding: 25px;
  background: #fff;
}

.trust-list article > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--brand);
  background: var(--brand-paler);
  border-radius: 7px;
}

.trust-list svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.trust-list h3 {
  margin: 3px 0 7px;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.trust-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.faq-section {
  background: #fff;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(550px, 1.3fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-height) + 45px);
}

.faq-intro h2 {
  font-size: clamp(1.95rem, 2.15vw, 2.7rem);
}

.faq-intro > p:not(.kicker) {
  margin-bottom: 28px;
}

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

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

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr 26px;
  align-items: center;
  gap: 20px;
  padding: 26px 3px;
  font-size: 1.08rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #b9c6d2;
  border-radius: 50%;
}

.faq-list summary span::before,
.faq-list summary span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 1px;
  background: var(--brand);
  transform: translate(-50%, -50%);
  transition: transform 0.22s ease;
}

.faq-list summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details[open] summary {
  color: var(--brand);
}

.faq-list details p {
  max-width: 700px;
  padding: 0 50px 27px 3px;
  margin: -3px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.demo-section {
  padding-block: clamp(75px, 8vw, 110px);
  color: #fff;
  background: #050f1d;
}

.demo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(39, 139, 218, 0.28), transparent 30rem),
    linear-gradient(120deg, transparent 40%, rgba(30, 78, 140, 0.15));
  pointer-events: none;
}

.demo-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(55px, 8vw, 112px);
  align-items: center;
}

.demo-copy h2 {
  font-size: clamp(2.05rem, 2.25vw, 2.85rem);
}

.demo-copy > p:not(.kicker) {
  max-width: 540px;
  color: #b9cad9;
  font-size: 1.06rem;
  line-height: 1.72;
}

.demo-promise {
  display: grid;
  gap: 9px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--line-dark);
  color: #d5e3ee;
  font-size: 0.84rem;
}

.demo-promise span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.form-card {
  padding: clamp(25px, 4vw, 42px);
  color: var(--ink);
  background: #fff;
  border: 1px solid #d9e3ec;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.form-head {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-bottom: 23px;
  margin-bottom: 25px;
  border-bottom: 1px solid #e4e9ee;
}

.form-head > span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  color: var(--brand);
  background: var(--brand-paler);
  border: 1px solid var(--brand-line);
  border-radius: 50%;
  font-size: 0.58rem;
  font-weight: 700;
}

.form-head b,
.form-head small { display: block; }
.form-head b { font-size: 0.96rem; }
.form-head small { color: #5f7081; font-size: 0.68rem; }

.form-card form {
  display: grid;
  gap: 17px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.form-card label {
  display: grid;
  gap: 7px;
  color: #445466;
  font-size: 0.72rem;
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  color: var(--ink);
  background: #f9fbfc;
  border: 1px solid #cfd9e2;
  border-radius: 6px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-card input,
.form-card select {
  min-height: 47px;
  padding: 10px 12px;
}

.form-card textarea {
  min-height: 100px;
  padding: 11px 12px;
  resize: vertical;
}

.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus {
  background: #fff;
  border-color: var(--brand-mid);
  box-shadow: 0 0 0 3px rgba(39, 139, 218, 0.13);
}

.form-card ::placeholder { color: #657789; }

.form-card .consent {
  display: grid;
  grid-template-columns: 17px 1fr;
  align-items: start;
  gap: 9px;
  color: #586a7b;
  font-size: 0.65rem;
  font-weight: 400;
  line-height: 1.5;
}

.form-card .consent input {
  width: 16px;
  height: 16px;
  min-height: 0;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--brand);
}

.form-card a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-submit {
  width: 100%;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-status {
  padding: 11px 13px;
  margin: -3px 0 0;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.form-status[data-state="sending"] {
  color: #315f82;
  background: #eef6fc;
  border-color: #c6def1;
}

.form-status[data-state="success"] {
  color: #146447;
  background: #eaf8f2;
  border-color: #b9e4d3;
}

.form-status[data-state="error"] {
  color: #9d2737;
  background: #fff0f2;
  border-color: #efc1c8;
}

.form-note {
  margin: -5px 0 0;
  color: #5f7081;
  font-size: 0.64rem;
  text-align: center;
}

.site-footer {
  color: #c9d7e3;
  background: #050f1d;
  border-top: 1px solid rgba(210, 226, 241, 0.12);
}

.footer-main {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  padding-block: 70px 55px;
}

.brand-footer img {
  filter: brightness(0) invert(1);
}

.brand-footer .brand-divider { background: rgba(255, 255, 255, 0.2); }
.brand-footer .product-name { color: #8bc9f5; }

.footer-brand p {
  max-width: 340px;
  margin: 26px 0 0;
  color: #8fa2b5;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 8px;
  color: #fff;
  font-size: 0.77rem;
}

.footer-links a {
  color: #8fa2b5;
  font-size: 0.76rem;
  transition: color 0.2s ease;
}

.footer-links a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-block: 20px;
  color: #71869a;
  border-top: 1px solid rgba(210, 226, 241, 0.1);
  font-size: 0.66rem;
}

.demo-toast {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1300;
  display: grid;
  grid-template-columns: 35px 1fr;
  align-items: center;
  gap: 11px;
  min-width: 240px;
  padding: 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 17px 45px rgba(7, 24, 45, 0.2);
}

.demo-toast[hidden] { display: none; }

.demo-toast > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
}

.demo-toast strong,
.demo-toast small { display: block; }
.demo-toast strong { font-size: 0.75rem; }
.demo-toast small { color: var(--muted); font-size: 0.61rem; }

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.72s var(--ease), transform 0.72s var(--ease);
}

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

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes pulse-ring {
  0% { opacity: 0.8; transform: scale(0.65); }
  80%, 100% { opacity: 0; transform: scale(1.5); }
}

@media (max-width: 1180px) {
  .hero-layout {
    grid-template-columns: minmax(360px, 0.82fr) minmax(520px, 1.18fr);
    gap: 40px;
  }

  .hero h1 { font-size: clamp(2.2rem, 3.1vw, 3rem); }
  .stage-card-top { right: -15px; }
  .stage-card-bottom { left: -20px; }
  .problem-grid { grid-template-columns: 0.68fr 1.32fr; gap: 45px; }
  .before-after { padding: 15px; }
  .process-layout { gap: 65px; }
}

@media (max-width: 1020px) {
  :root { --header-height: 70px; }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 0 20px;
    background: rgba(255, 255, 255, 0.99);
    border-bottom: 1px solid transparent;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.35s var(--ease), opacity 0.2s ease, padding 0.35s var(--ease), border-color 0.2s ease;
  }

  .main-nav.is-open {
    max-height: calc(100vh - var(--header-height));
    padding-block: 14px 20px;
    border-color: var(--line);
    box-shadow: 0 20px 40px rgba(7, 24, 45, 0.12);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav > a {
    padding: 12px 9px;
  }

  .main-nav > a:not(.nav-cta)::after { display: none; }
  .main-nav .nav-cta { justify-content: center; margin-top: 8px; }
  .menu-toggle { display: block; }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 78px 195px;
  }

  .hero-copy {
    max-width: 760px;
    text-align: center;
    margin-inline: auto;
  }

  .eyebrow,
  .hero-actions,
  .hero-points { justify-content: center; }

  .hero-lead { margin-inline: auto; }
  .product-stage { width: min(100%, 760px); margin: 25px auto 0; }
  .product-window { transform: none; }
  .product-stage:hover .product-window { transform: translateY(-4px); }
  .hero-foot { bottom: 90px; flex-direction: column; gap: 8px; }

  .problem-grid,
  .process-layout,
  .trust-grid,
  .faq-layout,
  .demo-shell {
    grid-template-columns: 1fr;
  }

  .problem-grid { gap: 55px; }
  .problem-section .section-copy { max-width: 740px; }
  .before-after { max-width: 820px; }

  .method-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 42px 0;
  }

  .method-flow::before { display: none; }
  .step-icon::after { display: none; }

  .split-heading { grid-template-columns: 1fr; gap: 22px; }
  .split-heading > p { max-width: 650px; }

  .process-layout { gap: 65px; }
  .process-copy { max-width: 720px; }
  .workflow-studio { margin-inline: auto; }

  .role-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .role-card { padding: 25px; }
  .role-top { margin-bottom: 45px; }

  .trust-grid { gap: 52px; }
  .trust-copy { max-width: 700px; }

  .faq-layout { gap: 55px; }
  .faq-intro { position: static; max-width: 700px; }

  .demo-shell { gap: 55px; }
  .demo-copy { max-width: 720px; }
  .form-card { max-width: 760px; width: 100%; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .brand img { width: 122px; }
  .brand-divider { height: 24px; }

  .hero-layout { padding-block: 64px 175px; }
  .hero h1 { font-size: clamp(2rem, 5.8vw, 2.25rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-points { gap: 10px 16px; }
  .hero-foot { align-items: flex-start; bottom: 73px; }
  .hero-foot ul { gap: 7px 18px; }

  .product-stage { margin-top: 12px; }
  .product-window { min-height: 460px; border-radius: 9px; }
  .window-bar { grid-template-columns: 62px 1fr 30px; }
  .window-address { min-width: 0; width: 70%; }
  .product-toolbar { grid-template-columns: 55px 1fr 60px; padding-inline: 8px; }
  .demo-tabs button { padding: 6px 8px; }
  #panel-hoy { grid-template-columns: 1fr; }
  .demo-sidebar { display: none; }
  .today-view { padding: 15px 12px; }
  .task-row { min-height: 52px; padding: 7px 8px; }
  .task-row h3 { font-size: 0.63rem; }
  .board-view, .calendar-view { min-width: 0; max-width: 100%; padding: 13px 10px; }
  .board-grid { width: max-content; min-width: 560px; }
  .board-view { overflow-x: auto; overscroll-behavior-inline: contain; }
  .calendar-grid > span { min-height: 68px; padding: 4px; }
  .calendar-event { max-width: 58px; font-size: 0.36rem; }
  .stage-card { display: none; }

  .section { padding-block: 82px; }
  .section h2 { font-size: clamp(1.75rem, 6.3vw, 2.2rem); }
  .section-heading { margin-bottom: 45px; }

  .before-after {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 13px;
  }

  .connection-arrow {
    width: 41px;
    height: 41px;
    margin: -10px auto;
    transform: rotate(90deg);
  }

  .chaos-canvas { height: 280px; }
  .context-card { min-height: 315px; }

  .method-flow { grid-template-columns: repeat(2, 1fr); }
  .method-flow li { padding-inline: 14px; }

  .feature-grid { grid-template-columns: 1fr; }
  .feature-wide { grid-column: auto; grid-template-columns: 1fr; gap: 25px; }
  .feature-card { min-height: 390px; padding: 27px; }
  .feature-icon { margin-bottom: 34px; }
  .agenda-card { background: #fff; }
  .date-stack { padding-left: 0; }
  .delegation-card { min-height: 520px; }
  .delegation-visual { grid-template-columns: 90px 1fr 100px; }

  .workflow-studio { width: 100%; }

  .role-grid { grid-template-columns: 1fr; }
  .role-card { min-height: auto; }
  .use-case-band { grid-template-columns: 1fr; gap: 16px; }
  .use-case-band ul { justify-content: flex-start; }

  .trust-list { grid-template-columns: 1fr; }
  .trust-list article { min-height: 135px; }

  .form-row { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 45px; }
  .footer-links { gap: 22px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 480px) {
  .product-name { font-size: 0.73rem; }
  .hero h1 { font-size: clamp(1.95rem, 7.3vw, 2.1rem); }
  .hero-points { align-items: flex-start; flex-direction: column; }

  .window-address { font-size: 0; }
  .window-address::after { content: "Mi espacio"; font-size: 0.58rem; }
  .product-toolbar { grid-template-columns: 1fr 43px; }
  .toolbar-brand { display: none; }
  .demo-tabs { justify-self: start; }
  .demo-tabs button { padding-inline: 7px; font-size: 0.57rem; }
  .quick-add { width: 34px; height: 31px; justify-content: center; padding: 0; font-size: 0; }
  .quick-add span { font-size: 1rem; }
  .task-row { grid-template-columns: 24px 1fr 24px; gap: 7px; }
  .task-row p { display: block; }
  .task-row .tag { display: inline-block; margin-right: 4px; }

  .hero-foot > span { font-size: 0.62rem; }
  .hero-foot ul { font-size: 0.65rem; }
  .hero-foot li:not(:last-child)::after { right: -10px; }

  .method-flow { grid-template-columns: 1fr; gap: 32px; }
  .method-flow li { display: grid; grid-template-columns: 58px 1fr; column-gap: 16px; text-align: left; }
  .step-number { display: none; }
  .step-icon { grid-row: 1 / 3; width: 56px; height: 56px; margin: 0; }
  .method-flow h3 { margin: 3px 0 5px; }

  .feature-card { padding: 23px; }
  .date-pill { grid-template-columns: 38px 1fr auto; gap: 9px; }
  .delegation-visual { grid-template-columns: 76px 1fr 85px; }
  .person-chip { padding: 6px; }
  .person-chip span { width: 26px; height: 26px; }
  .person-chip b { font-size: 0.5rem; }

  .workflow-studio-bar { padding-inline: 13px; }
  .workflow-studio-bar small { display: none; }
  .workflow-canvas { min-height: 480px; }
  .workflow-node { width: 46%; grid-template-columns: 29px 1fr; gap: 7px; padding: 8px; }
  .workflow-start,
  .workflow-review,
  .workflow-decision { width: 70%; }
  .workflow-approval { left: 2%; }
  .workflow-correction { right: 2%; left: auto; }
  .workflow-finish { left: 2%; width: 50%; }
  .node-symbol { width: 28px; height: 32px; font-size: 0.45rem; }
  .workflow-node strong { font-size: 0.6rem; }
  .workflow-node em { font-size: 0.46rem; }
  .route-label { font-size: 0.34rem; }
  .route-yes { left: 19%; }
  .route-no { right: 7%; }

  .faq-list summary { font-size: 0.97rem; }
  .faq-list details p { padding-right: 4px; }

  .form-card { padding: 22px 18px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-links > div:last-child { grid-column: 1 / -1; }
}

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

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

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