/* =========================================================
   NESTI DESIGN TOKENS
   Change these values to create a branded site variant.
   ========================================================= */

:root {
  /* Brand palette */
  --orange: #f15523;
  --deep-blue: #223843;
  --seafoam: #a5d3d4;
  --cream: #f9f8ea;
  --charcoal: #161611;
  --ink: #161611;
  --paper: #f6f6f4;

  /* Typography */
  --mono: "IBM Plex Mono", "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --display: var(--font-display), "Noto Sans", Arial, ui-sans-serif, system-ui, sans-serif;
}

/* =========================================================
   LOCAL DISPLAY FONT
   Greek and Latin subsets used by this site.
   ========================================================= */

@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/_vinext_fonts/noto-sans-33dd56ba1189/noto-sans-7475028b.woff2") format("woff2");
  unicode-range: U+1F00-1FFF;
}

@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/_vinext_fonts/noto-sans-33dd56ba1189/noto-sans-8aae2b94.woff2") format("woff2");
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}

@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/_vinext_fonts/noto-sans-33dd56ba1189/noto-sans-4461f1e7.woff2") format("woff2");
  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;
}

@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/_vinext_fonts/noto-sans-33dd56ba1189/noto-sans-3b5318ba.woff2") format("woff2");
  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;
}

/* =========================================================
   RESET
   ========================================================= */

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

html {
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}

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

ol,
ul {
  padding: 0;
}

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

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

/* =========================================================
   SITE STYLES
   ========================================================= */

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  color: var(--ink);
  background: var(--paper);
  font: 400 16px/1.55 var(--mono);
  margin: 0
}

a {
  color: inherit
}

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

h1, h2, h3 {
  font-family: var(--display);
  letter-spacing: 0;
  font-weight: 400
}

h1 {
  max-width: 760px;
  margin-bottom: 44px;
  font-size: clamp(46px, 6.3vw, 90px);
  line-height: .98
}

h2 {
  margin-bottom: 28px;
  font-size: clamp(34px, 4.5vw, 64px);
  line-height: 1.02
}

h3 {
  font-size: 28px;
  line-height: 1.18
}

.shell {
  width: min(1340px, 100% - 48px);
  margin-inline: auto
}

.eyebrow {
  font: 700 12px/1.2 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 24px
}

.pill {
  background: var(--charcoal);
  max-width: 280px;
  min-height: 48px;
  color: var(--paper);
  text-align: center;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  padding: 10px 22px;
  font-size: 12px;
  line-height: 1.25;
  text-decoration: none;
  display: inline-flex;
  transition: transform .2s ease, background-color .2s ease, color .2s ease
}

.pill:hover {
  color: var(--charcoal);
  background: var(--orange);
  transform: translateY(-2px)
}

.pill:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px
}

.icon-pill {
  border-radius: 50%;
  width: 52px;
  min-width: 52px;
  max-width: 52px;
  height: 52px;
  min-height: 52px;
  padding: 0;
  font-size: 23px;
  line-height: 1
}

.header .icon-pill {
  margin-left: 48px
}

.hero {
  background: var(--seafoam);
  min-height: 100svh
}

.header {
  border-bottom: 1px solid rgba(22, 22, 17, .35);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 92px;
  display: grid
}

.logo {
  width: 104px;
  text-decoration: none;
  display: inline-flex
}

.header .logo {
  width: 136px
}

.logo img {
  width: 100%;
  height: auto;
  display: block
}

.footer-logo {
  width: 102px
}

nav {
  justify-content: flex-end;
  align-items: center;
  gap: 26px;
  display: flex
}

nav a {
  text-underline-offset: 5px;
  font-size: 16.8px;
  text-decoration-thickness: 1px
}

.hero-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  gap: 48px;
  min-height: calc(100svh - 92px);
  padding-block: 80px;
  display: grid
}

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

.hero h1 {
  font-size: clamp(46px, 4.7vw, 68px)
}

.hero-notes {
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 610px;
  display: grid
}

.hero-notes p:first-child {
  font-size: clamp(16px, 1.4vw, 20px)
}

.hero-notes p {
  margin: 0
}

.hero-screenshot, .registration-screenshot, .demo-shot {
  margin: 0;
  border: 1px solid rgba(22, 22, 17, .18);
  border-radius: 20px;
  overflow: hidden
}

.hero-screenshot {
  background: var(--paper);
  box-shadow: 0 28px 60px rgba(22, 22, 17, .12)
}

.hero-screenshot img, .registration-screen, .demo-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block
}

.flow-band {
  background: var(--cream);
  padding-block: 100px
}

.flow-layout {
  display: block
}

.flow-heading {
  margin-bottom: 70px;
}

.flow-list {
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid
}

.flow-list li {
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  min-height: 150px;
  align-items: center;
  padding: 28px;
  font-size: clamp(17px, 1.8vw, 24px);
  display: flex
}

.solution {
  padding-block: 120px
}

.split {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 80px;
  display: grid
}

.sticky-heading {
  align-self: start;
  position: sticky;
  top: 32px
}

.sticky-heading h2 {
  white-space: nowrap
}

.sticky-heading h2:after {
  content: "";
  background: var(--orange);
  width: 100%;
  height: 6px;
  margin-top: 28px;
  display: block
}

.prose p {
  max-width: 680px
}

.large-prose p {
  font: 400 19px/1.6 var(--mono);
  margin-bottom: 28px
}

.demo-showcase {
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-top: 72px;
  display: flex
}

.demo-shot {
  aspect-ratio: 3 / 4;
  width: min(760px, 100%);
  background: var(--paper)
}

.demo-shot img {
  object-fit: contain
}

.demo-link {
  max-width: none;
  min-height: 54px;
  padding-inline: 30px;
  font-size: 14px
}

.demo-prompt p {
  margin: 0 0 18px;
  font-size: 16px
}

.flow-demo-prompt {
  margin-top: 48px
}

.solution-demo-prompt {
  margin-top: 36px
}

.online {
  background: var(--seafoam);
  padding-block: 120px
}

.online-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 110px;
  display: grid
}

.online .prose p {
  margin-bottom: 24px
}

.registration-screenshot {
  aspect-ratio: 1.08 / 1;
  background: var(--paper);
  box-shadow: 0 24px 48px rgba(22, 22, 17, .1);
  position: relative
}

.registration-screen {
  object-fit: contain
}

.registration-qr {
  width: 118px;
  height: 118px;
  border: 8px solid var(--paper);
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(22, 22, 17, .2);
  position: absolute;
  right: 20px;
  bottom: 20px
}

.audiences {
  background: var(--cream);
  padding-block: 96px
}

.audience-strip {
  grid-template-columns: minmax(220px, .7fr) minmax(0, 1.3fr);
  align-items: start;
  gap: 80px;
  display: grid
}

.audience-strip>p:last-child {
  max-width: 820px;
  margin: 0;
  font: 400 clamp(28px, 3.8vw, 52px)/1.15 var(--display)
}

.features {
  padding-block: 120px;
  background: var(--paper)
}

.benefit-list {
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  display: grid;
  padding: 0
}

.benefit-item {
  border-bottom: 1px solid var(--ink);
  border-right: 1px solid var(--ink);
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 22px;
  min-height: 330px;
  padding: 36px 30px;
  display: grid
}

.benefit-item:nth-child(even) {
  border-right: 0
}

.benefit-item-accent {
  background: var(--cream)
}

.benefit-item-dark {
  color: var(--paper);
  background: var(--deep-blue);
  border-color: var(--deep-blue)
}

.benefit-number {
  font-size: 15px
}

.benefit-item h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(30px, 2.8vw, 42px)
}

.benefit-item p {
  max-width: 760px;
  margin: 0 0 18px;
  font-size: 17px
}

.pricing {
  background: var(--deep-blue);
  color: var(--paper);
  padding-block: 120px
}

.pricing-grid {
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 100px;
  display: grid
}

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

.pricing-demo-prompt {
  max-width: 540px;
  margin-top: auto
}

.pricing-demo-link {
  color: var(--deep-blue);
  background: var(--paper);
  text-align: left;
  justify-content: flex-start;
  max-width: 540px
}

.pricing-copy>p:last-of-type {
  max-width: 540px
}

.price-panel {
  padding: 32px 0
}

.room-included {
  border-left: 3px solid var(--paper);
  max-width: 520px;
  margin: 0 0 38px;
  padding-left: 18px
}

.price {
  font: 400 clamp(62px, 8vw, 110px)/.9 var(--display);
  margin: 30px 0 42px
}

.price span {
  font: 400 16px/1.5 var(--mono);
  margin-top: 12px;
  display: block
}

.price-panel ul {
  margin: 24px 0 40px;
  padding-left: 0;
  list-style: none
}

.price-panel li {
  border-top: 1px solid rgba(246, 246, 244, .5);
  padding: 11px 0
}

.price-panel li:before {
  content: "→ "
}

.extra-rooms {
  border-top: 1px solid rgba(246, 246, 244, .5);
  border-bottom: 1px solid rgba(246, 246, 244, .5);
  margin: 0 0 36px;
  padding: 28px 0 12px
}

.extra-rooms .eyebrow {
  margin-bottom: 18px
}

.extra-rooms p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 16px
}

.free-months {
  border: 1px solid var(--paper);
  border-radius: 25px;
  margin: 20px 0 0;
  padding: 10px 18px;
  display: inline-block
}

.start {
  background: var(--cream);
  padding-block: 88px
}

.start-intro {
  max-width: 800px;
  margin-bottom: 48px
}

.start-intro>p:not(.eyebrow) {
  max-width: 680px
}

.setup-list {
  border-top: 1px solid var(--ink)
}

.setup-list article {
  border-bottom: 1px solid var(--ink);
  grid-template-columns: 112px minmax(0, 760px);
  justify-content: space-between;
  align-items: center;
  min-height: 155px;
  padding: 24px 0;
  display: grid
}

.setup-icon {
  width: 80px;
  height: 80px;
  color: var(--orange);
  justify-self: center;
  place-items: center;
  display: grid
}

.setup-list article>div:last-child {
  justify-self: end;
  width: 100%
}

.setup-list h3 {
  margin-bottom: 14px
}

.setup-list p {
  max-width: 760px;
  margin: 0
}

.contact {
  background: var(--charcoal);
  color: var(--paper);
  padding: 64px 0
}

.contact-grid {
  grid-template-columns: 1.15fr .85fr;
  gap: 100px;
  margin-bottom: 64px;
  display: grid
}

.origin-story {
  margin-top: 24px;
  margin-bottom: 0
}

.origin-story blockquote {
  max-width: 980px;
  margin: 0;
  border-left: 4px solid var(--orange);
  padding: 8px 0 8px 40px
}

.origin-story p {
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: -.02em
}

.contact-links {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 48px;
  display: flex
}

.contact-links a {
  text-underline-offset: 5px
}

.callback-strip {
  background: var(--charcoal);
  color: var(--paper);
  padding: 0 0 56px
}

.callback-intro {
  margin: 0 auto 28px;
  font-size: 18px
}

.callback-form {
  grid-template-columns: 1fr 1fr 52px;
  align-items: end;
  gap: 28px;
  display: grid
}

.form-field {
  flex-direction: column;
  display: flex
}

.form-field label {
  text-transform: uppercase;
  margin-bottom: 4px;
  font-size: 11px
}

.form-field input {
  width: 100%;
  color: var(--paper);
  caret-color: var(--orange);
  font: 400 18px/1.4 var(--mono);
  background: 0 0;
  border: 0;
  border-bottom: 1px solid rgba(246, 246, 244, .75);
  border-radius: 0;
  outline: 0;
  padding: 10px 0 12px
}

.form-field input:focus {
  border-bottom-width: 2px;
  border-bottom-color: var(--orange)
}

.callback-form button {
  background: var(--cream);
  width: 52px;
  height: 52px;
  color: var(--charcoal);
  cursor: pointer;
  border: 0;
  border-radius: 50%;
  place-items: center;
  padding: 0;
  display: grid;
  transition: transform .2s ease, background-color .2s ease
}

.callback-form button:hover:not(:disabled) {
  background: var(--orange);
  transform: translateY(-2px)
}

.callback-form button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px
}

footer {
  background: var(--cream);
  padding-block: 28px
}

footer .shell {
  justify-content: space-between;
  align-items: center;
  display: flex
}

.footer-left {
  align-items: flex-end;
  gap: 20px;
  display: flex
}

.whitelab-logo {
  width: 54.4px;
  display: inline-flex
}

.whitelab-logo img {
  width: 100%;
  height: auto;
  display: block
}

footer p {
  margin: 0;
  font-size: 22px;
  line-height: 1
}

@media (width<=980px) {
  .header {
    grid-template-columns: auto 1fr
  }

  .header nav {
    display: none
  }

  .header .pill {
    justify-self: end
  }

  .header .icon-pill {
    margin-left: 0
  }

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

  .hero-screenshot {
    width: min(520px, 100%);
    margin-inline: auto;
    transform: none
  }

  .flow-layout, .split, .online-grid, .pricing-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px
  }

  .audience-strip {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px
  }

  .sticky-heading {
    position: static
  }

  .benefit-item {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 28px;
    grid-column: auto;
    border-right: 0;
    padding-inline: 32px
  }

  .benefit-list {
    grid-template-columns: 1fr
  }

  .callback-form {
    grid-template-columns: 1fr 1fr 52px
  }
}

@media (width<=680px) {
  body {
    font-size: 14px
  }

  .shell {
    width: min(100% - 32px, 1200px)
  }

  .header {
    gap: 12px;
    min-height: 76px
  }

  .header .pill {
    max-width: 190px;
    min-height: 42px;
    padding: 8px 14px;
    font-size: 9px
  }

  .header .icon-pill {
    width: 44px;
    min-width: 44px;
    max-width: 44px;
    min-height: 44px;
    padding: 0;
    font-size: 20px
  }

  .hero-grid {
    min-height: auto;
    padding-block: 70px 44px
  }

  h1 {
    font-size: 48px
  }

  h2 {
    font-size: 40px
  }

  .hero-notes {
    grid-template-columns: 1fr
  }

  .hero-notes p:first-child {
    white-space: normal;
    grid-column: auto
  }

  .flow-heading {
    margin-bottom: 44px
  }

  .flow-list {
    grid-template-columns: 1fr
  }

  .flow-list li {
    min-height: 105px;
    padding: 22px
  }

  .flow-band, .solution, .online, .audiences, .features, .pricing, .start, .contact {
    padding-block: 80px
  }

  .start, .contact {
    padding-block: 52px
  }

  .origin-story {
    margin-top: 16px;
    margin-bottom: 0
  }

  .origin-story blockquote {
    border-left-width: 3px;
    padding: 4px 0 4px 24px
  }

  .benefit-item {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 0;
    padding: 28px 18px
  }

  .benefit-item h2 {
    margin-bottom: 16px;
    font-size: 26px
  }

  .benefit-item p {
    font-size: 14px
  }

  .audience-strip>p:last-child {
    font-size: 32px
  }

  .registration-screenshot {
    aspect-ratio: 1 / 1
  }

  .registration-qr {
    width: 88px;
    height: 88px;
    border-width: 6px;
    right: 12px;
    bottom: 12px
  }

  .demo-showcase {
    gap: 24px;
    margin-top: 44px
  }

  .setup-list article {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
    padding: 24px 0
  }

  .setup-icon {
    display: none
  }

  .contact-grid {
    gap: 36px
  }

  .origin-story p {
    font-size: 18px
  }

  .price {
    font-size: 68px
  }

  .callback-form {
    grid-template-columns: 1fr;
    gap: 22px
  }

  .callback-form button {
    justify-self: end
  }
}

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

/* Contact form behavior — visually neutral until feedback is shown. */
.contact-trap {
  position: absolute;
  left: -10000px;
  opacity: 0;
  pointer-events: none;
}

.form-feedback {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  color: var(--paper);
  font-size: 13px;
}

.form-feedback.is-visible {
  display: block;
}

.form-feedback.is-error {
  color: #ffb08c;
}

.callback-form button:disabled {
  cursor: wait;
  opacity: 0.65;
}

@media (prefers-reduced-motion: reduce) {
  .pill,
  .callback-form button {
    transition: none;
  }

  .pill:hover,
  .callback-form button:hover:not(:disabled) {
    transform: none;
  }
}
