:root {
  color-scheme: light;
  --landing-bg: #f8fbff;
  --landing-paper: #ffffff;
  --landing-ink: #10213a;
  --landing-muted: #617083;
  --landing-line: #dbe7ee;
  --landing-teal: #1dbf9b;
  --landing-teal-dark: #177b73;
  --landing-blue: #2f7cff;
  --landing-blue-dark: #1c4fc3;
  --landing-navy: #0d2532;
  --landing-amber: #d29a2e;
  --landing-soft: #edf7ff;
  font-family: Aptos, "Segoe UI Variable", "Segoe UI", Tahoma, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.page-landing {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(90deg, rgba(47, 124, 255, 0.045) 1px, transparent 1px) 0 0 / 80px 80px,
    linear-gradient(180deg, #ffffff 0%, var(--landing-bg) 44%, #ffffff 100%);
  color: var(--landing-ink);
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.landing-header,
.landing-page,
.landing-footer {
  font-family: inherit;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 80px;
  padding: 0 max(24px, calc((100vw - 1360px) / 2));
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--landing-line);
  backdrop-filter: blur(18px);
}

.landing-header::after {
  content: "";
  position: absolute;
  right: max(24px, calc((100vw - 1360px) / 2));
  bottom: 0;
  left: max(24px, calc((100vw - 1360px) / 2));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 124, 255, 0.54), transparent);
}

.landing-brand,
.landing-nav,
.landing-header-actions,
.landing-hero-actions,
.landing-trust-list,
.landing-product-topbar,
.landing-table-toolbar,
.landing-contact-actions {
  display: flex;
  align-items: center;
}

.landing-brand {
  gap: 0.75rem;
  color: var(--landing-ink);
  text-decoration: none;
}

.landing-brand-mark {
  width: 44px;
  height: 44px;
  color: var(--landing-blue-dark);
}

.landing-brand span {
  display: grid;
  line-height: 1;
}

.landing-brand strong {
  font-size: 1.7rem;
  font-weight: 900;
}

.landing-brand small {
  margin-top: 0.24rem;
  color: var(--landing-muted);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.landing-nav {
  gap: clamp(1.2rem, 3vw, 3.2rem);
}

.landing-nav a,
.landing-login,
.landing-footer a,
.landing-cockpit a {
  color: var(--landing-ink);
  text-decoration: none;
}

.landing-nav a,
.landing-login {
  position: relative;
  font-size: 0.98rem;
  font-weight: 760;
}

.landing-nav a::after,
.landing-login::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  background: var(--landing-teal);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

.landing-nav a:hover::after,
.landing-login:hover::after {
  transform: scaleX(1);
}

.landing-header-actions {
  gap: 1rem;
}

.landing-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.72rem 1.35rem;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.98rem;
  font-weight: 820;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

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

.landing-button::before {
  content: "";
  position: absolute;
  inset: -45%;
  z-index: -1;
  background:
    radial-gradient(circle at var(--fx-x, 50%) var(--fx-y, 50%), rgba(255, 255, 255, 0.42), transparent 28%),
    linear-gradient(120deg, transparent 34%, rgba(255, 255, 255, 0.36), transparent 66%);
  opacity: 0;
  transform: translateX(-18%);
  transition: opacity 0.18s ease, transform 0.42s ease;
}

.landing-button:hover::before {
  opacity: 1;
  transform: translateX(18%);
}

.landing-button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--landing-blue), var(--landing-blue-dark));
  box-shadow: 0 16px 30px rgba(47, 124, 255, 0.28);
}

.landing-button-secondary {
  color: var(--landing-blue-dark);
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(47, 124, 255, 0.52);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.landing-page {
  overflow: hidden;
}

.landing-page section[id] {
  scroll-margin-top: 96px;
}

.landing-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(600px, 1.14fr);
  align-items: center;
  gap: clamp(1.8rem, 3vw, 3.8rem);
  width: min(1360px, calc(100% - 88px));
  min-height: calc(100vh - 80px);
  margin: 0 auto;
  padding: clamp(2rem, 3.6vw, 4.2rem) 0 2.8rem;
  overflow: hidden;
}

.landing-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -12vw;
  z-index: -1;
  width: min(46vw, 680px);
  height: 100%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.58) 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(135deg, rgba(195, 243, 233, 0.88), rgba(47, 124, 255, 0.18));
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
}

.landing-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, #3a8dff, #1dbf9b, #8ec5ff, #3a8dff);
  background-size: 220% 100%;
  animation: landing-accent-flow 7s linear infinite;
}

.landing-hero h1,
.landing-workflow h2,
.landing-feature-panels h2,
.landing-cockpit h2,
.landing-contact-copy h2 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
}

.landing-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.9rem, 5vw, 5.2rem);
  line-height: 0.98;
}

.landing-hero-copy p {
  max-width: 44rem;
  margin: 1.35rem 0 0;
  color: var(--landing-muted);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.55;
}

.landing-hero-actions {
  gap: 1.35rem;
  margin-top: 2.35rem;
}

.landing-grid-icon {
  display: inline-grid;
  grid-template-columns: repeat(2, 6px);
  gap: 4px;
}

.landing-grid-icon::before,
.landing-grid-icon::after {
  content: "";
  width: 16px;
  height: 16px;
  background:
    linear-gradient(currentColor 0 0) 0 0 / 6px 6px no-repeat,
    linear-gradient(currentColor 0 0) 10px 0 / 6px 6px no-repeat,
    linear-gradient(currentColor 0 0) 0 10px / 6px 6px no-repeat,
    linear-gradient(currentColor 0 0) 10px 10px / 6px 6px no-repeat;
}

.landing-grid-icon::after {
  display: none;
}

.landing-trust-list {
  flex-wrap: wrap;
  gap: 1.55rem;
  padding: 0;
  margin: 2.25rem 0 0;
  list-style: none;
  color: var(--landing-muted);
  font-size: 0.9rem;
}

.landing-trust-list li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.landing-trust-list svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--landing-teal-dark);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.landing-hero-visual {
  position: relative;
  display: grid;
  align-items: center;
}

.landing-product {
  position: relative;
  display: grid;
  grid-template-columns: 154px minmax(0, 1fr);
  min-height: 492px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(12, 37, 48, 0.18);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.landing-product::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(255, 255, 255, 0.62) 45%, transparent 56%),
    linear-gradient(180deg, transparent, rgba(47, 124, 255, 0.05));
  mix-blend-mode: screen;
  opacity: 0.55;
  transform: translateX(-55%);
  animation: landing-product-sheen 6.5s ease-in-out infinite;
}

.landing-product-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1rem 0.85rem;
  color: rgba(255, 255, 255, 0.84);
  background: linear-gradient(180deg, #102b3a, #071923 62%, #083836);
}

.landing-product-sidebar a {
  padding: 0.58rem 0.65rem;
  border-radius: 6px;
  color: inherit;
  font-size: 0.86rem;
  font-weight: 760;
  text-decoration: none;
}

.landing-product-sidebar .is-active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(58, 141, 255, 0.9), rgba(28, 79, 195, 0.95));
}

.landing-product-logo {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.45rem 0.42rem;
  border-radius: 8px;
  color: #ffffff;
}

.landing-product-logo svg {
  width: 28px;
  height: 28px;
}

.landing-product-logo strong {
  font-size: 1rem;
  line-height: 1;
}

.landing-user {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 0.05rem 0.55rem;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.landing-user span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  font-weight: 800;
}

.landing-user strong,
.landing-user small {
  line-height: 1.1;
}

.landing-product-main {
  display: grid;
  align-content: start;
  gap: 1rem;
  padding: 1.05rem 1.15rem 1.2rem;
}

.landing-product-topbar {
  justify-content: space-between;
  gap: 1rem;
}

.landing-product-topbar h2 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 900;
}

.landing-product-topbar span {
  display: block;
  margin-top: 0.18rem;
  color: var(--landing-muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.landing-product button,
.landing-table-toolbar button,
.landing-report-card button {
  min-height: 34px;
  padding: 0.45rem 0.8rem;
  border: 0;
  border-radius: 5px;
  color: #ffffff;
  background: var(--landing-blue);
  font-size: 0.82rem;
  font-weight: 760;
}

.landing-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.landing-metrics-grid article,
.landing-entry-list,
.landing-report-card,
.landing-table-card,
.landing-feature-grid article {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--landing-line);
  border-radius: 8px;
}

.landing-metrics-grid article {
  min-height: 112px;
  padding: 0.85rem;
}

.landing-metrics-grid small,
.landing-metrics-grid span {
  color: var(--landing-muted);
  font-size: 0.75rem;
  font-weight: 760;
}

.landing-metrics-grid strong {
  display: block;
  margin: 0.62rem 0 0.5rem;
  font-size: clamp(1.08rem, 1.35vw, 1.42rem);
  line-height: 1;
}

.landing-dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1rem;
}

.landing-entry-list,
.landing-report-card {
  padding: 0.9rem;
}

.landing-entry-list h3,
.landing-report-card h3,
.landing-table-card h3,
.landing-feature-grid h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
}

.landing-entry-list article {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  align-items: center;
  gap: 0.7rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--landing-line);
  font-size: 0.88rem;
}

.landing-entry-list article:last-child {
  border-bottom: 0;
}

.landing-entry-list article span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--landing-teal);
}

.landing-entry-list small {
  color: var(--landing-muted);
  white-space: nowrap;
}

.landing-chart {
  margin: 0.75rem 0;
}

.landing-chart svg {
  display: block;
  width: 100%;
  height: 172px;
}

.landing-chart .grid {
  fill: none;
  stroke: #dce8ef;
  stroke-width: 1;
}

.landing-chart .area {
  fill: url(#chartFill);
}

.landing-chart .line {
  fill: none;
  stroke: var(--landing-teal-dark);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.landing-report-card button {
  width: 100%;
  color: var(--landing-blue-dark);
  background: #ffffff;
  border: 1px solid rgba(47, 124, 255, 0.52);
}

.landing-hero-metrics {
  position: absolute;
  right: -2.2rem;
  display: grid;
  gap: 0.9rem;
  width: 174px;
}

.landing-hero-metrics article {
  display: grid;
  gap: 0.18rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(12, 37, 48, 0.13);
  backdrop-filter: blur(14px);
}

.landing-hero-metrics span {
  color: var(--landing-muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.landing-hero-metrics strong {
  color: var(--landing-ink);
  font-size: 1.45rem;
}

.landing-hero-metrics small {
  color: var(--landing-teal-dark);
  font-weight: 800;
}

.landing-scroll-cue {
  display: block;
  width: 16px;
  height: 16px;
  margin: -1.6rem auto 1.6rem;
  border-right: 2px solid #95a5a5;
  border-bottom: 2px solid #95a5a5;
  transform: rotate(45deg);
  animation: landing-cue-bounce 1.8s ease-in-out infinite;
}

.landing-workflow {
  padding: 3.7rem max(44px, calc((100vw - 1360px) / 2)) 4.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.78);
  border-top: 1px solid var(--landing-line);
}

.landing-workflow h2,
.landing-feature-panels h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.landing-workflow > p,
.landing-feature-panels > p {
  margin: 0.7rem 0 0;
  color: var(--landing-muted);
  font-size: 1.12rem;
}

.landing-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
  padding: 1.1rem;
  background: #ffffff;
  border: 1px solid var(--landing-line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(12, 37, 48, 0.08);
}

.landing-steps article {
  position: relative;
  min-width: 0;
  padding: 1.15rem 1rem;
}

.landing-steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 38px;
  right: -1.7rem;
  width: 2.4rem;
  height: 1px;
  background: #b9c5cc;
}

.landing-step-icon {
  display: inline-grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-bottom: 1rem;
  border-radius: 50%;
  color: var(--landing-blue);
  background: linear-gradient(180deg, #eff5ff, #e4eeff);
  box-shadow: inset 0 0 0 1px rgba(47, 124, 255, 0.16);
}

.landing-step-icon::before {
  content: "";
  width: 32px;
  height: 32px;
  border: 3px solid currentColor;
  border-radius: 50%;
}

.landing-step-icon.check::before {
  border-radius: 7px;
  box-shadow: inset 9px -7px 0 -6px currentColor;
}

.landing-step-icon.file::before,
.landing-step-icon.chart::before,
.landing-step-icon.team::before,
.landing-step-icon.repeat::before {
  border-radius: 7px;
}

.landing-step-icon.repeat::before {
  border-right-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  transform: rotate(-16deg);
}

.landing-step-icon.team::before {
  border-radius: 50%;
  box-shadow: 20px 10px 0 -10px currentColor, -20px 10px 0 -10px currentColor;
}

.landing-steps h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 900;
}

.landing-steps p,
.landing-feature-grid p,
.landing-feature-grid li,
.landing-cockpit p,
.landing-contact-copy p,
.landing-footer p {
  color: var(--landing-muted);
  line-height: 1.5;
}

.landing-feature-panels {
  padding: 4.5rem max(44px, calc((100vw - 1360px) / 2));
  background:
    linear-gradient(90deg, rgba(47, 124, 255, 0.045) 1px, transparent 1px) 0 0 / 80px 80px,
    #f8fbff;
}

.landing-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 3rem;
}

.landing-feature-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.2rem;
  min-height: 248px;
  padding: 1.35rem;
  box-shadow: 0 16px 36px rgba(12, 37, 48, 0.07);
}

.landing-feature-grid .landing-step-icon {
  width: 60px;
  height: 60px;
  margin: 0;
}

.landing-feature-grid .landing-step-icon::before {
  width: 28px;
  height: 28px;
  border-width: 2.5px;
}

.landing-feature-grid p {
  margin: 0.45rem 0 0;
}

.landing-feature-grid ul {
  grid-column: 1 / -1;
  display: grid;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.landing-feature-grid li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.45rem;
  margin: 0;
}

.landing-feature-grid li::before {
  content: "\2713";
  color: var(--landing-teal-dark);
  font-weight: 900;
}

.landing-cockpit {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3.2rem max(44px, calc((100vw - 1360px) / 2));
  border: 1px solid var(--landing-line);
  border-left: 0;
  border-right: 0;
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.landing-cockpit h2,
.landing-contact-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.landing-cockpit a {
  color: var(--landing-blue-dark);
  font-weight: 800;
}

.landing-pricing {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) repeat(2, minmax(240px, 0.82fr));
  gap: 1rem;
  align-items: stretch;
  padding: 4rem max(44px, calc((100vw - 1360px) / 2));
  background: #ffffff;
  border-bottom: 1px solid var(--landing-line);
}

.landing-pricing-copy h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0;
}

.landing-pricing-copy p {
  max-width: 36rem;
  margin: 1rem 0 0;
  color: var(--landing-muted);
  line-height: 1.55;
}

.landing-pricing-copy ul {
  display: grid;
  gap: 0.72rem;
  padding: 0;
  margin: 2rem 0 0;
  list-style: none;
}

.landing-pricing-copy li,
.landing-price-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.5rem;
  color: var(--landing-muted);
  line-height: 1.4;
}

.landing-pricing-copy li::before,
.landing-price-card li::before {
  content: "\2713";
  color: var(--landing-teal-dark);
  font-weight: 900;
}

.landing-price-card {
  position: relative;
  display: grid;
  gap: 0.78rem;
  min-height: 410px;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--landing-line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(12, 37, 48, 0.07);
}

.landing-price-card.is-highlighted {
  border: 2px solid var(--landing-blue);
  background:
    linear-gradient(180deg, rgba(47, 124, 255, 0.1), transparent 34%),
    #ffffff;
  box-shadow: 0 24px 60px rgba(47, 124, 255, 0.18);
}

.landing-price-card small {
  position: absolute;
  top: -15px;
  left: 50%;
  padding: 0.28rem 0.7rem;
  border-radius: 5px;
  color: #ffffff;
  background: var(--landing-blue);
  font-weight: 800;
  transform: translateX(-50%);
}

.landing-price-card h3 {
  margin: 0;
  font-size: 1.12rem;
  font-weight: 900;
}

.landing-price-card strong {
  display: block;
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
}

.landing-price-card span {
  color: var(--landing-muted);
}

.landing-price-card em {
  display: inline-flex;
  width: fit-content;
  margin-top: 0.35rem;
  padding: 0.42rem 0.66rem;
  border-radius: 999px;
  color: var(--landing-blue-dark);
  background: rgba(142, 197, 255, 0.24);
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 900;
}

.landing-price-card ul {
  display: grid;
  gap: 0.58rem;
  align-content: start;
  padding: 0;
  margin: 0.25rem 0 0;
  list-style: none;
  font-size: 0.94rem;
}

.landing-price-card .landing-button {
  align-self: end;
  width: 100%;
  min-height: 42px;
}

.landing-table-card {
  padding: 1.25rem;
  overflow-x: auto;
  box-shadow: 0 22px 55px rgba(12, 37, 48, 0.08);
}

.landing-table-toolbar {
  justify-content: space-between;
  margin-bottom: 1rem;
}

.landing-table-card table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.landing-table-card th,
.landing-table-card td {
  padding: 0.92rem 0.75rem;
  border-bottom: 1px solid var(--landing-line);
  text-align: left;
}

.landing-table-card th {
  color: var(--landing-muted);
  font-weight: 800;
}

.status {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 0.4rem;
  border-radius: 50%;
}

.status.green {
  background: #1d9b63;
}

.status.amber {
  background: var(--landing-amber);
}

.status.blue {
  background: var(--landing-blue);
}

.landing-contact {
  display: grid;
  grid-template-columns: minmax(15rem, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  margin: 3.2rem max(44px, calc((100vw - 1360px) / 2));
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(16, 24, 32, 0.09);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff, #f4f8ff);
  box-shadow: 0 22px 58px rgba(10, 31, 44, 0.08);
}

.landing-contact-copy p {
  margin: 0.95rem 0 0;
}

.landing-contact-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.landing-contact-actions span {
  flex-basis: 100%;
  color: var(--landing-muted);
  font-weight: 760;
  text-align: right;
}

.landing-footer {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
  gap: 2rem;
  padding: 2.4rem max(44px, calc((100vw - 1360px) / 2));
  color: rgba(255, 255, 255, 0.82);
  background: #0d2532;
}

.landing-footer strong {
  display: block;
  color: #ffffff;
}

.landing-footer nav,
.landing-footer div {
  display: grid;
  align-content: start;
  gap: 0.5rem;
}

.landing-footer a,
.landing-footer span {
  color: rgba(255, 255, 255, 0.76);
}

.fx-reveal {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.68s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.68s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--fx-delay, 0ms);
}

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

.fx-tilt {
  transform:
    translateY(var(--fx-float-y, 0))
    rotate(var(--fx-float-r, 0deg))
    rotateX(var(--fx-rotate-x, 0deg))
    rotateY(var(--fx-rotate-y, 0deg));
  transform-style: preserve-3d;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.fx-tilt:hover {
  box-shadow: 0 34px 86px rgba(12, 37, 48, 0.22);
}

@keyframes landing-accent-flow {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 220% 0;
  }
}

@keyframes landing-product-sheen {
  0%, 42% {
    transform: translateX(-62%);
  }
  72%, 100% {
    transform: translateX(62%);
  }
}

@keyframes landing-cue-bounce {
  0%, 100% {
    transform: rotate(45deg) translateY(0);
  }
  50% {
    transform: rotate(45deg) translate(6px, 6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fx-reveal,
  .fx-tilt,
  .landing-button::before {
    transition: none;
  }

  .landing-hero::after,
  .landing-product::after,
  .landing-scroll-cue {
    animation: none;
  }
}

@media (max-width: 1500px) {
  .landing-hero-metrics {
    display: none;
  }
}

@media (max-width: 1120px) {
  .landing-header {
    padding-right: 24px;
    padding-left: 24px;
  }

  .landing-nav {
    gap: 1.2rem;
  }

  .landing-hero {
    grid-template-columns: 1fr;
    width: min(100% - 48px, 900px);
    min-height: auto;
  }

  .landing-hero h1 {
    max-width: 14ch;
  }

  .landing-product {
    grid-template-columns: 140px minmax(0, 1fr);
    min-height: auto;
  }

  .landing-steps,
  .landing-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-steps article::after {
    display: none;
  }

  .landing-cockpit,
  .landing-pricing,
  .landing-contact,
  .landing-footer {
    grid-template-columns: 1fr;
  }

  .landing-contact-actions {
    justify-content: flex-start;
  }

  .landing-contact-actions span {
    text-align: left;
  }
}

@media (max-width: 720px) {
  .landing-header {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.85rem;
    padding: 0.95rem 1rem 1rem;
  }

  .landing-header::after {
    right: 1rem;
    left: 1rem;
  }

  .landing-brand {
    min-width: 0;
  }

  .landing-brand strong {
    font-size: 1.35rem;
  }

  .landing-brand-mark {
    width: 38px;
    height: 38px;
  }

  .landing-nav {
    order: 3;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0.55rem;
    overflow: visible;
  }

  .landing-nav a {
    padding: 0.56rem 0.82rem;
    border: 1px solid rgba(47, 124, 255, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 22px rgba(13, 37, 50, 0.08);
    font-size: 0.92rem;
    line-height: 1;
    white-space: nowrap;
  }

  .landing-nav a::after {
    display: none;
  }

  .landing-header-actions {
    margin-left: 0;
  }

  .landing-login {
    display: none;
  }

  .landing-button {
    width: 100%;
    min-height: 44px;
  }

  .landing-header-actions .landing-button {
    width: auto;
    min-height: 42px;
    padding: 0.72rem 1rem;
    white-space: nowrap;
  }

  .landing-hero {
    width: min(100% - 24px, 620px);
    gap: 1.4rem;
    padding-top: 1.65rem;
  }

  .landing-hero::before {
    right: -38vw;
    width: 82vw;
    opacity: 0.55;
  }

  .landing-hero h1 {
    max-width: 11ch;
    font-size: clamp(2.2rem, 10.8vw, 3rem);
    line-height: 1.01;
  }

  .landing-hero-copy p {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.5;
  }

  .landing-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.82rem;
    margin-top: 1.4rem;
  }

  .landing-trust-list {
    margin-top: 1.6rem;
    gap: 1rem;
    font-size: 0.94rem;
  }

  .landing-product {
    grid-template-columns: 1fr;
  }

  .landing-product-sidebar {
    display: none;
  }

  .landing-product-main {
    padding: 1rem;
  }

  .landing-table-card {
    padding: 1rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .landing-table-card::-webkit-scrollbar {
    display: none;
  }

  .landing-product-topbar,
  .landing-dashboard-grid,
  .landing-metrics-grid {
    grid-template-columns: 1fr;
    display: grid;
    align-items: stretch;
  }

  .landing-workflow,
  .landing-feature-panels,
  .landing-cockpit,
  .landing-pricing,
  .landing-footer {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .landing-contact {
    margin-right: 1rem;
    margin-left: 1rem;
  }

  .landing-steps,
  .landing-feature-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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