:root {
  --vanko-navy: #081d3a;
  --vanko-cyan: #0db6ca;
  --vanko-white: #ffffff;
  --vanko-ink-soft: #496178;
  --vanko-border: rgba(8, 29, 58, 0.09);
  --vanko-shadow: 0 24px 70px rgba(8, 29, 58, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--vanko-white);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--vanko-navy);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}

.vanko-page {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 56px);
  background:
    radial-gradient(circle at top left, rgba(13, 182, 202, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(8, 29, 58, 0.08), transparent 38%),
    linear-gradient(145deg, #ffffff 0%, #f7fbfd 48%, #ffffff 100%);
}

.vanko-card {
  width: min(100%, 760px);
  padding: clamp(30px, 6vw, 58px);
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--vanko-border);
  border-radius: 8px;
  box-shadow: var(--vanko-shadow);
  backdrop-filter: blur(14px);
}

.vanko-card-compact {
  width: min(100%, 640px);
}


.vanko-logo {
  display: block;
  width: min(100%, 680px);
  max-width: 100%;
  height: auto;
  margin: 0 auto clamp(18px, 4vw, 30px);
}

.vanko-logo-small {
  width: min(100%, 520px);
  max-width: 100%;
}

.vanko-kicker {
  margin: 0 0 14px;
  color: var(--vanko-cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 680px;
  margin: 0 auto;
  color: var(--vanko-navy);
  font-size: clamp(2.15rem, 6vw, 4.55rem);
  font-weight: 850;
  line-height: 1.03;
  letter-spacing: 0;
}

.vanko-subtitle {
  max-width: 620px;
  margin: 22px auto 0;
  color: var(--vanko-ink-soft);
  font-size: clamp(1.05rem, 2.5vw, 1.36rem);
  font-weight: 600;
}

.vanko-line {
  max-width: 650px;
  margin: 22px auto 0;
  color: rgba(8, 29, 58, 0.72);
  font-size: clamp(0.96rem, 2.1vw, 1.08rem);
}

@media (prefers-reduced-motion: no-preference) {
  .landing-ready .vanko-card {
    animation: vanko-enter 520ms ease-out both;
  }
}

@keyframes vanko-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 560px) {
  .vanko-page {
    padding: 18px;
  }

  .vanko-card {
    padding: 28px 22px 30px;
  }

  .vanko-logo {
    width: min(78vw, 320px);
  }
}

.mobile-first-layout {
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(460px, 1.05fr);
  column-gap: clamp(48px, 6vw, 96px);
  row-gap: clamp(12px, 2vw, 24px);
  align-items: center;
}

.mobile-photo-note-wrap {
  display: flex;
  align-items: flex-start;
  margin-top: clamp(26px, 3.2vw, 42px);
  margin-left: clamp(8px, 1.5vw, 24px);
}

.mobile-photo-note {
  width: clamp(340px, 30vw, 390px);
  max-width: 100%;
  transform: translateX(clamp(55px, 6vw, 105px));
}

.mobile-photo-note img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.mobile-first-demo-stack {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0;
  width: 100%;
  min-width: 0;
}

.aremio-mobile-showcase {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.aremio-mobile-screen-carousel {
  position: relative;
  width: clamp(340px, 28vw, 500px);
  max-width: 100%;
  aspect-ratio: 3 / 4.55;
  display: grid;
  place-items: center;
  filter: drop-shadow(0 30px 54px rgba(6, 27, 61, 0.18));
}

.aremio-mobile-screen {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translateY(10px) scale(0.985);
  transition: opacity 0.65s ease, transform 0.65s ease;
  pointer-events: none;
}

.aremio-mobile-screen.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.mobile-first-benefits-stack {
  display: grid;
  gap: 16px;
  width: min(720px, 100%);
  min-width: 0;
}

.mobile-first-benefit-line {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  background: #ffffff;
  border: 1px solid rgba(6, 27, 61, 0.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 34px rgba(6, 27, 61, 0.05);
  min-width: 0;
}

.benefit-dot {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  font-weight: 900;
  flex: 0 0 auto;
}

.benefit-blue {
  background: #eef6ff;
  color: #0078dc;
}

.benefit-green {
  background: #eafaf2;
  color: #19b879;
}

.benefit-purple {
  background: #f3edff;
  color: #8257e6;
}

.benefit-orange {
  background: #fff2e2;
  color: #ff9f1c;
}

.mobile-first-benefit-line h3 {
  margin: 0 0 7px;
  color: #061b3d;
  font-size: 0.95rem;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.mobile-first-benefit-line p {
  margin: 0;
  color: #41506b;
  font-size: 0.82rem;
  line-height: 1.38;
}

.mobile-first-image-cards {
  grid-column: 1 / -1;
  width: min(1180px, 100%);
  margin: clamp(-64px, -4vw, -36px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 24px;
  align-items: stretch;
  justify-items: stretch;
}

.mobile-first-image-cards img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(6, 27, 61, 0.10));
}

@media (max-width: 1180px) {
  .mobile-first-layout {
    grid-template-columns: 1fr;
  }

  .mobile-first-image-cards {
    grid-column: 1;
    width: min(760px, 100%);
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

@media (max-width: 620px) {
  .mobile-first-image-cards {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mobile-first-image-cards img {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 820px) {
  .mobile-photo-note-wrap {
    margin-top: 28px;
    margin-left: 0;
    justify-content: center;
  }

  .mobile-photo-note {
    width: min(300px, 88vw);
    transform: none;
  }

  .mobile-first-image-cards {
    margin-top: 12px;
  }
}

.preview-landing {
  margin: 0;
  background:
    radial-gradient(circle at 0 0, rgba(13, 182, 202, 0.08), transparent 34%),
    radial-gradient(circle at 100% 20%, rgba(8, 29, 58, 0.08), transparent 35%),
    #fdfefe;
  color: var(--vanko-navy);
}

.pl-container {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.pl-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(8, 29, 58, 0.08);
}

.pl-header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.pl-brand img {
  width: 172px;
  height: auto;
  display: block;
}

.pl-nav {
  display: flex;
  gap: clamp(12px, 2vw, 22px);
  justify-content: center;
  flex-wrap: wrap;
}

.pl-nav a {
  color: rgba(8, 29, 58, 0.82);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 640;
}

.pl-nav a:hover,
.pl-nav a:focus-visible {
  color: var(--vanko-cyan);
}

.pl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

.pl-btn-primary {
  background: linear-gradient(120deg, #081d3a, #0a3158);
  color: #fff;
  box-shadow: 0 14px 28px rgba(8, 29, 58, 0.2);
}

.pl-btn-primary:hover,
.pl-btn-primary:focus-visible {
  transform: translateY(-1px);
}

.pl-btn-ghost {
  border-color: rgba(8, 29, 58, 0.2);
  color: var(--vanko-navy);
  background: #fff;
}

.pl-menu-btn {
  display: none;
  justify-self: end;
  border: 1px solid rgba(8, 29, 58, 0.2);
  border-radius: 10px;
  padding: 9px 12px;
  background: #fff;
  color: var(--vanko-navy);
  font-weight: 700;
}

.pl-hero {
  padding: 74px 0 50px;
}

.pl-hero-grid {
  display: grid;
  gap: 36px;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
}

.pl-eyebrow {
  margin: 0;
  color: var(--vanko-cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  font-weight: 800;
}

.pl-hero h1 {
  margin: 14px 0 0;
  max-width: 720px;
  line-height: 1.04;
  font-size: clamp(2rem, 4.4vw, 3.8rem);
}

.pl-hero h1 span {
  color: var(--vanko-cyan);
}

.pl-lead {
  margin: 20px 0 0;
  max-width: 680px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  color: rgba(8, 29, 58, 0.78);
}

.pl-hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pl-pocket {
  margin: 16px 0 0;
  color: #45617d;
  font-weight: 640;
}

.pl-visual {
  position: relative;
  min-height: 480px;
}

.pl-halo {
  position: absolute;
  inset: 8% 8% auto;
  height: 66%;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(13, 182, 202, 0.23), rgba(13, 182, 202, 0));
}

.pl-road {
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 13%;
  height: 12px;
  background: repeating-linear-gradient(90deg, rgba(13, 182, 202, 0.95), rgba(13, 182, 202, 0.95) 24px, rgba(13, 182, 202, 0.2) 24px, rgba(13, 182, 202, 0.2) 44px);
  border-radius: 999px;
}

.pl-phone {
  position: absolute;
  width: min(360px, 74%);
  aspect-ratio: 10 / 18;
  left: 50%;
  transform: translateX(-50%);
  top: 6%;
  border-radius: 42px;
  background: #0c1527;
  box-shadow: 0 30px 60px rgba(8, 29, 58, 0.3);
  padding: 16px;
}

.pl-phone-notch {
  width: 34%;
  height: 14px;
  background: #172b4a;
  border-radius: 999px;
  margin: 0 auto 10px;
}

.pl-phone-screen {
  height: calc(100% - 24px);
  border-radius: 30px;
  background: linear-gradient(160deg, #fdfefe, #ebf9fb);
  display: grid;
  place-items: center;
}

.pl-phone-screen img {
  width: 78%;
  height: auto;
}

.pl-float {
  position: absolute;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(8, 29, 58, 0.08);
  box-shadow: 0 12px 24px rgba(8, 29, 58, 0.12);
  color: var(--vanko-navy);
  font-size: 0.84rem;
  font-weight: 700;
}

.pl-f1 { top: 12%; left: 0; animation: pl-float 4s ease-in-out infinite; }
.pl-f2 { top: 28%; right: -2%; animation: pl-float 4.4s ease-in-out infinite; }
.pl-f3 { top: 47%; left: -1%; animation: pl-float 4.8s ease-in-out infinite; }
.pl-f4 { top: 64%; right: 2%; animation: pl-float 5.2s ease-in-out infinite; }
.pl-f5 { top: 79%; left: 11%; animation: pl-float 4.5s ease-in-out infinite; }

.pl-section {
  padding: 64px 0;
}

.pl-section h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1.2;
}

.pl-grid-cards {
  margin-top: 26px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pl-card {
  padding: 22px;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(8, 29, 58, 0.08);
  box-shadow: 0 14px 30px rgba(8, 29, 58, 0.08);
}

.pl-card h3 {
  margin: 0;
  font-size: 1.12rem;
}

.pl-card p {
  margin: 8px 0 0;
  color: rgba(8, 29, 58, 0.76);
}

.pl-band {
  background: linear-gradient(150deg, rgba(13, 182, 202, 0.09), rgba(8, 29, 58, 0.05));
}

.pl-band p,
.pl-cta p {
  margin: 14px 0 0;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  color: rgba(8, 29, 58, 0.78);
  max-width: 860px;
}

.pl-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 11px;
}

.pl-list li {
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(8, 29, 58, 0.08);
  box-shadow: 0 8px 20px rgba(8, 29, 58, 0.06);
  font-weight: 620;
}

.pl-cta {
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(13, 182, 202, 0.08));
}

.pl-cta .pl-btn {
  margin-top: 24px;
}

.pl-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
}

.pl-modal[hidden] {
  display: none;
}

.pl-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 29, 58, 0.45);
}

.pl-modal-dialog {
  position: relative;
  width: min(560px, calc(100% - 24px));
  border-radius: 18px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 26px 52px rgba(8, 29, 58, 0.28);
}

.pl-modal-dialog h2 {
  margin: 0 0 14px;
}

.pl-modal-close {
  position: absolute;
  right: 14px;
  top: 10px;
  border: none;
  background: transparent;
  font-size: 1.9rem;
  line-height: 1;
  color: rgba(8, 29, 58, 0.7);
  cursor: pointer;
}

.pl-form {
  display: grid;
  gap: 12px;
}

.pl-form label {
  display: grid;
  gap: 6px;
  font-size: 0.93rem;
  font-weight: 640;
}

.pl-form input,
.pl-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(8, 29, 58, 0.2);
  padding: 10px 12px;
  font: inherit;
}

.pl-note {
  margin: 10px 0 0;
  color: rgba(8, 29, 58, 0.6);
  font-size: 0.9rem;
}

@keyframes pl-float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
  100% { transform: translateY(0); }
}

@media (max-width: 1040px) {
  .pl-header-inner {
    grid-template-columns: auto auto;
    grid-template-areas:
      "brand menu"
      "nav nav";
    row-gap: 12px;
    padding: 12px 0;
  }

  .pl-brand { grid-area: brand; }
  .pl-menu-btn { grid-area: menu; display: inline-flex; }
  .pl-nav {
    grid-area: nav;
    display: none;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .pl-nav.is-open {
    display: flex;
  }

  .pl-btn-header {
    display: none;
  }

  .pl-hero-grid {
    grid-template-columns: 1fr;
  }

  .pl-visual {
    margin-top: 8px;
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .pl-container {
    width: min(1140px, calc(100% - 24px));
  }

  .pl-section {
    padding: 52px 0;
  }

  .pl-grid-cards {
    grid-template-columns: 1fr;
  }

  .pl-visual {
    min-height: 370px;
  }

  .pl-float {
    font-size: 0.75rem;
    padding: 8px 11px;
  }
}