/*
 * Vew's front door, in the Texor family style (see texor-talk's landing.css): light and airy, Plus Jakarta
 * Sans, the family's globe colours on decoration only. Vew's own blue and red come from its mark.
 */

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url(assets/fonts/plus-jakarta-sans-latin-wght-normal.woff2) format('woff2-variations');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url(assets/fonts/plus-jakarta-sans-latin-ext-wght-normal.woff2) format('woff2-variations');
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}

:root {
  /* The blue of the Vew mark's upper lid, and a deeper one that carries white text. */
  --v-blue: #226db4;
  --v-blue-deep: #1a5794;
  --v-red: #e42527;
  --ink: #0b1b3e;
  --body: #5b6675;
  --muted: #98a1b0;
  --bg: #f6f7fa;
  --surface: #ffffff;
  --tile: #eef0f5;
  --line: #e4e7ee;
  --sans:
    'Plus Jakarta Sans', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --width: 1240px;
  color-scheme: light;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
}
kbd {
  font: 600 0.8em var(--sans);
  padding: 0.1em 0.45em;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-bottom-width: 2px;
}
:focus-visible {
  outline: 3px solid rgb(34 109 180 / 45%);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ── header ───────────────────────────────────────────────────────────────── */

.lp__header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgb(246 247 250 / 82%);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms;
}
.lp__header.is-scrolled {
  border-bottom-color: var(--line);
}
.lp__header-inner {
  max-width: var(--width);
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.lp__brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  margin-right: auto;
}
.lp__brand img {
  width: 44px;
  height: 44px;
}
/* "Texor" above the product name, like the Talk and Finvoice logos. */
.lp__brand-text {
  display: grid;
  line-height: 1;
}
.lp__brand-text small {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.lp__brand-text b {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.lp__nav {
  display: flex;
  gap: 2rem;
}
.lp__nav a,
.lp__signin {
  color: var(--body);
  text-decoration: none;
  font-weight: 500;
  transition: color 120ms;
}
.lp__nav a:hover,
.lp__signin:hover {
  color: var(--ink);
}
.lp__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.lp__cta {
  border-radius: 10px;
  background: var(--v-blue);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  transition:
    background 140ms,
    transform 140ms;
}
.lp__cta:hover {
  background: var(--v-blue-deep);
  transform: translateY(-1px);
}

/* ── hero ─────────────────────────────────────────────────────────────────── */

.lp__hero {
  max-width: var(--width);
  margin: 0 auto;
  padding: 3.5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.lp__family {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.35rem 0.9rem 0.35rem 0.65rem;
  margin-bottom: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  text-decoration: none;
  transition: border-color 140ms;
}
.lp__family:hover {
  border-color: var(--muted);
}
.lp__family img {
  height: 1.05rem;
  width: auto;
}
.lp__family span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--body);
}
.lp__title {
  font-size: clamp(2.9rem, 7vw, 5.6rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 1.4rem;
}
.lp__accent {
  color: var(--v-blue);
}
.lp__sub {
  font-size: clamp(1.02rem, 1.4vw, 1.22rem);
  line-height: 1.65;
  color: var(--body);
  margin: 0 auto 2.2rem;
  max-width: 40rem;
  text-wrap: pretty;
}
.lp__downloads {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}
.lp__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 12px;
  font: 600 1.05rem var(--sans);
  padding: 1rem 1.8rem;
  text-decoration: none;
  cursor: pointer;
  transition:
    background 140ms,
    border-color 140ms,
    transform 140ms,
    box-shadow 140ms;
}
.lp__btn--primary {
  border: 0;
  background: var(--v-blue);
  color: #fff;
  box-shadow: 0 10px 24px rgb(34 109 180 / 28%);
}
.lp__btn--primary:hover {
  background: var(--v-blue-deep);
  transform: translateY(-1px);
}
.lp__btn--ghost {
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink);
}
.lp__btn--ghost:hover {
  border-color: var(--muted);
  transform: translateY(-1px);
}
.lp__os {
  width: 1.2rem;
  height: 1.2rem;
  flex: none;
}
.lp__meta {
  margin: 1.1rem 0 0;
  font-size: 0.875rem;
  color: var(--body);
}
/* After a download click: how to open it, as a toast at the bottom of the screen. */
.lp__notice {
  position: fixed;
  z-index: 20;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  width: min(34rem, calc(100% - 2rem));
  margin: 0;
  padding: 0.9rem 1.15rem;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.5;
  text-align: left;
  box-shadow: 0 18px 40px rgb(11 27 62 / 30%);
}
.lp__notice[hidden] {
  display: none;
}

/* Screenshots: the Vew window as a floating card. */
.lp__shot {
  position: relative;
  margin: 0;
}
.lp__shot img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgb(11 27 62 / 8%),
    0 30px 60px -18px rgb(11 27 62 / 28%),
    0 12px 24px -12px rgb(11 27 62 / 16%);
}
.lp__shot--hero {
  margin-top: 3.5rem;
  width: 100%;
  max-width: 1160px;
}
/* The family's spectrum, blurred into a field behind the hero picture. */
.lp__wash {
  position: absolute;
  inset: 8% -4% -6%;
  z-index: 0;
  border-radius: 40%;
  filter: blur(70px);
  opacity: 0.45;
  background: conic-gradient(
    from 200deg,
    #fb0102,
    #fa5908,
    #faa813,
    #f3f21b,
    #a9ee25,
    #36e13b,
    #4addb1,
    #52d8d8,
    #5dafd0,
    #6187ce,
    #6766cc,
    #fb0102
  );
}
.lp__chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 14px 30px rgb(11 27 62 / 16%);
  white-space: nowrap;
}
.lp__chip--left {
  left: -1.5rem;
  bottom: 18%;
}
.lp__chip--right {
  right: -1.5rem;
  top: 16%;
}
.lp__chip .dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #1fb85b;
  box-shadow: 0 0 0 4px rgb(31 184 91 / 18%);
}

/* ── the family ───────────────────────────────────────────────────────────── */

.lp__familyband {
  max-width: var(--width);
  margin: 0 auto;
  padding: 3.5rem 2rem 1rem;
  text-align: center;
}
.lp__familyband h2 {
  margin: 0 0 1.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--body);
}
.lp__apps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.75rem;
}
.lp__apps li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
}
.lp__apps .tile {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: var(--surface);
  display: grid;
  place-items: center;
  box-shadow:
    0 0 0 1px var(--line),
    0 6px 14px rgb(11 27 62 / 6%);
}
.lp__apps img {
  width: 1.7rem;
  height: 1.7rem;
}

/* ── feature cards ────────────────────────────────────────────────────────── */

.lp__strip {
  max-width: var(--width);
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
}
.lp__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.lp__feature {
  display: grid;
  gap: 0.45rem;
  align-content: start;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  transition:
    border-color 140ms,
    box-shadow 140ms,
    transform 140ms;
}
.lp__feature:hover {
  border-color: var(--tile-ink);
  box-shadow: 0 18px 34px rgb(11 27 62 / 8%);
  transform: translateY(-2px);
}
.lp__feature-tile {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 12px;
  background: var(--tile-bg);
  color: var(--tile-ink);
  display: grid;
  place-items: center;
  margin-bottom: 0.35rem;
}
.lp__feature-tile svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}
.lp__feature strong {
  font-size: 1rem;
}
.lp__feature span:last-child {
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--body);
}
/* One stop of the Texor globe each. */
.lp__feature--red {
  --tile-bg: #fdeaea;
  --tile-ink: #c62222;
}
.lp__feature--amber {
  --tile-bg: #fef2df;
  --tile-ink: #a96a05;
}
.lp__feature--green {
  --tile-bg: #e6f9e7;
  --tile-ink: #1a8c2f;
}
.lp__feature--teal {
  --tile-bg: #e3f7f4;
  --tile-ink: #11897a;
}

/* ── showcase rows ────────────────────────────────────────────────────────── */

.lp__row {
  max-width: var(--width);
  margin: 0 auto;
  padding: 4.5rem 2rem;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.25fr);
  gap: 4rem;
  align-items: center;
}
.lp__row--flip {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.8fr);
}
.lp__row--flip .lp__row-copy {
  order: 2;
}
.lp__eyebrow {
  margin: 0 0 0.6rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--v-blue);
}
.lp__row h2,
.lp__section-head h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin: 0 0 1rem;
  text-wrap: balance;
}
.lp__row-copy > p:not(.lp__eyebrow) {
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 1.25rem;
}
.lp__ticks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.lp__ticks li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--ink);
  font-weight: 500;
}
.lp__ticks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 50%;
  background: var(--v-blue)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m6 12.5 4 4 8-9' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center / 70% no-repeat;
}

/* ── security ─────────────────────────────────────────────────────────────── */

.lp__section {
  max-width: var(--width);
  margin: 0 auto;
  padding: 4.5rem 2rem;
}
.lp__section-head {
  max-width: 44rem;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.lp__section-head p:not(.lp__eyebrow) {
  margin: 0;
  color: var(--body);
  font-size: 1.05rem;
  line-height: 1.6;
}
.lp__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.lp__card {
  display: grid;
  gap: 0.45rem;
  align-content: start;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  transition:
    border-color 140ms,
    box-shadow 140ms,
    transform 140ms;
}
.lp__card:hover {
  border-color: var(--v-blue);
  box-shadow: 0 18px 34px rgb(11 27 62 / 8%);
  transform: translateY(-2px);
}
.lp__card strong {
  font-size: 1.05rem;
}
.lp__card span {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--body);
}

/* ── where it runs ────────────────────────────────────────────────────────── */

.lp__global {
  max-width: var(--width);
  margin: 0 auto;
  padding: 1rem 2rem 4.5rem;
}
.lp__global ul {
  list-style: none;
  margin: 0;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.lp__global strong {
  display: block;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.lp__global span {
  color: var(--body);
  font-size: 0.9rem;
}

/* ── download band ────────────────────────────────────────────────────────── */

.lp__band {
  background: var(--ink);
  background-image:
    radial-gradient(40rem 22rem at 85% 0%, rgb(34 109 180 / 38%), transparent 62%),
    radial-gradient(30rem 18rem at 5% 100%, rgb(228 37 39 / 16%), transparent 60%);
  color: #eaeefb;
  padding: 5rem 2rem;
}
.lp__band .lp__section-head h2 {
  color: #fff;
}
.lp__steps {
  list-style: none;
  margin: 0 auto 3rem;
  padding: 0;
  max-width: 1060px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.lp__steps li {
  display: grid;
  gap: 0.5rem;
  align-content: start;
}
.lp__steps strong {
  color: #fff;
  font-size: 1.1rem;
}
.lp__steps span:last-child {
  color: #a9b6d4;
  font-size: 0.95rem;
  line-height: 1.6;
}
.lp__step-no {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--v-blue);
  color: #fff;
  font-weight: 700;
}
.lp__platforms {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}
.lp__platform {
  display: grid;
  align-content: start;
  justify-items: center;
  text-align: center;
  gap: 0.45rem;
  padding: 2rem 1.5rem;
  border-radius: 20px;
  background: rgb(255 255 255 / 6%);
  border: 1px solid rgb(255 255 255 / 12%);
}
.lp__platform.is-yours {
  border-color: rgb(255 255 255 / 40%);
  background: rgb(255 255 255 / 10%);
}
.lp__platform-icon {
  width: 2.2rem;
  height: 2.2rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.lp__platform strong {
  color: #fff;
  font-size: 1.2rem;
}
.lp__platform > span {
  color: #a9b6d4;
  font-size: 0.92rem;
  margin-bottom: 0.8rem;
}
.lp__platform small {
  color: #a9b6d4;
  font-size: 0.82rem;
}
.lp__platform small a {
  color: #fff;
}
.lp__btn--light {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 12px 30px rgb(0 0 0 / 28%);
}
.lp__btn--light:hover {
  background: #e8eefb;
  transform: translateY(-1px);
}
.lp__all {
  text-align: center;
  margin: 2rem 0 0;
}
.lp__all a {
  color: #cfd8ee;
  font-size: 0.92rem;
}

/* ── FAQ ──────────────────────────────────────────────────────────────────── */

.lp__faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}
.lp__faq details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 0 1.4rem;
}
.lp__faq summary {
  cursor: pointer;
  list-style: none;
  padding: 1.15rem 0;
  font-weight: 600;
  font-size: 1.02rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.lp__faq summary::-webkit-details-marker {
  display: none;
}
.lp__faq summary::after {
  content: '+';
  color: var(--v-blue);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 160ms;
}
.lp__faq details[open] summary::after {
  transform: rotate(45deg);
}
.lp__faq details p {
  margin: 0 0 1.2rem;
  color: var(--body);
  line-height: 1.65;
}

/* ── footer ───────────────────────────────────────────────────────────────── */

.lp__foot {
  max-width: var(--width);
  margin: 0 auto;
  padding: 2.5rem 2rem 3rem;
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  text-align: center;
  border-top: 1px solid var(--line);
}
.lp__foot-brand img {
  height: 1.35rem;
  width: auto;
}
.lp__foot p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--body);
}
.lp__foot nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.lp__foot nav a {
  color: var(--body);
  font-size: 0.875rem;
  text-decoration: none;
}
.lp__foot nav a:hover {
  color: var(--ink);
}
.lp__foot small {
  color: var(--body);
}

/* ── motion ───────────────────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 600ms ease,
    transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.is-in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── small screens ────────────────────────────────────────────────────────── */

@media (max-width: 960px) {
  .lp__nav {
    display: none;
  }
  .lp__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lp__row {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.25rem;
  }
  .lp__row--flip {
    grid-template-columns: 1fr;
  }
  .lp__row--flip .lp__row-copy {
    order: 0;
  }
  .lp__grid,
  .lp__global ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .lp__chip {
    display: none;
  }
}
@media (max-width: 640px) {
  .lp__header-inner {
    padding: 0.85rem 1rem;
    gap: 1rem;
  }
  .lp__signin {
    display: none;
  }
  .lp__hero {
    padding: 2.25rem 1rem 1rem;
  }
  .lp__downloads {
    flex-direction: column;
    width: 100%;
  }
  .lp__btn {
    width: 100%;
  }
  .lp__shot--hero {
    margin-top: 2.25rem;
  }
  .lp__strip,
  .lp__section,
  .lp__global,
  .lp__familyband {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .lp__features,
  .lp__grid,
  .lp__steps,
  .lp__platforms {
    grid-template-columns: 1fr;
  }
  .lp__band {
    padding: 3.5rem 1rem;
  }
}
