* {
  box-sizing: border-box;
}

:root {
  --navy: #10233f;
  --blue: #2867d8;
  --blue2: #4285f4;
  --light-blue: #eef5ff;
  --bg: #f7f9fc;
  --text: #172033;
  --muted: #6f7d91;
  --border: #e2e8f0;
  --white: #fff;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: white;
}

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

button {
  font: inherit;
  cursor: pointer;
}

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

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(226,232,240,.8);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo,
.modal-logo {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--blue);
  color: white;
  font-size: 22px;
  font-weight: 800;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-text strong {
  font-size: 20px;
}

.brand-text small {
  color: var(--muted);
  font-size: 11px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}

.nav-links > a {
  color: #4d5a6d;
}

.login-link {
  font-weight: 600;
}

.nav-cta,
.primary {
  border: 0;
  background: var(--blue);
  color: white;
  border-radius: 10px;
  padding: 11px 17px;
  font-weight: 650;
}

/* HERO */

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, #dceaff 0, transparent 30%),
    radial-gradient(circle at 5% 80%, #eef5ff 0, transparent 32%),
    linear-gradient(180deg, #fbfdff, #fff);
}

.hero-grid {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1fr .9fr;
  align-items: center;
  gap: 80px;
  padding-top: 65px;
  padding-bottom: 80px;
}

.eyebrow {
  display: inline-block;
  padding: 7px 11px;
  background: var(--light-blue);
  color: var(--blue);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
}

.hero h1 {
  margin: 22px 0;
  font-size: clamp(48px, 5vw, 70px);
  line-height: 1.03;
  letter-spacing: -.045em;
}

.hero h1 span {
  color: var(--blue);
}

.hero-text {
  max-width: 610px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.large {
  padding: 14px 21px;
  border-radius: 11px;
  font-weight: 650;
}

.secondary {
  border: 1px solid var(--border);
  background: white;
}

.hero-note {
  color: var(--muted);
  font-size: 12px;
  margin-top: 17px;
}

/* DEMO */

.hero-card {
  background: white;
  padding: 22px;
  border-radius: 22px;
  box-shadow:
    0 30px 80px rgba(24,55,100,.16);
  border: 1px solid #e7edf5;
  transform: rotate(1deg);
}

.window-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 25px;
}

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

.demo-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-logo {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  border-radius: 9px;
  background: var(--blue);
  color: white;
  font-weight: 800;
}

.demo-brand div:last-child {
  display: flex;
  flex-direction: column;
}

.demo-brand small {
  color: var(--muted);
  font-size: 10px;
}

.demo-storage {
  margin-top: 30px;
  padding: 18px;
  background: #f8faff;
  border-radius: 12px;
}

.demo-storage-top {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
}

.demo-progress {
  height: 6px;
  margin-top: 12px;
  background: #e4eaf3;
  border-radius: 20px;
}

.demo-progress div {
  width: 24%;
  height: 100%;
  border-radius: 20px;
  background: var(--blue);
}

.demo-upload {
  margin-top: 15px;
  padding: 27px;
  text-align: center;
  border: 2px dashed #d4deea;
  border-radius: 12px;
}

.demo-upload .cloud {
  font-size: 29px;
}

.demo-upload strong,
.demo-upload span {
  display: block;
}

.demo-upload span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.demo-file {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  padding: 13px;
  background: #fafbfc;
  border-radius: 9px;
  font-size: 11px;
}

.demo-file small {
  color: var(--muted);
}

/* TRUST */

.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  padding: 25px 20px;
  text-align: center;
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
}

/* GENERAL */

.section {
  padding: 100px 0;
}

.section-heading {
  max-width: 700px;
  margin: 0 auto 55px;
  text-align: center;
}

.section-heading > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.section-heading h2 {
  margin: 12px 0;
  font-size: 38px;
  letter-spacing: -.03em;
}

.section-heading p {
  color: var(--muted);
  line-height: 1.7;
}

/* FEATURES */

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

.feature {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.feature-icon {
  font-size: 28px;
}

.feature h3 {
  margin: 18px 0 8px;
}

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

/* PRICING */

.pricing-section {
  background: var(--bg);
}

.plans {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.plan {
  position: relative;
  padding: 28px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
}

.plan.featured {
  border: 2px solid var(--blue);
  transform: translateY(-8px);
  box-shadow: 0 18px 50px rgba(40,103,216,.12);
}

.popular {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 11px;
  border-radius: 20px;
  background: var(--blue);
  color: white;
  font-size: 10px;
  font-weight: 700;
  white-space: nowrap;
}

.plan h3 {
  font-size: 20px;
}

.plan-storage {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.price {
  margin: 22px 0 5px;
  font-size: 34px;
  font-weight: 800;
}

.price small {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}

.plan-description {
  min-height: 48px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.plan-button {
  width: 100%;
  margin-top: 18px;
  padding: 11px;
  border-radius: 9px;
  border: 1px solid var(--blue);
  color: var(--blue);
  background: white;
  font-weight: 650;
}

.plan.featured .plan-button {
  color: white;
  background: var(--blue);
}

.plans-loading {
  grid-column: 1/-1;
  text-align: center;
  color: var(--muted);
}

/* CTA */

.final-cta {
  padding: 75px 0;
}

.final-box {
  padding: 48px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.final-box h2 {
  margin: 0 0 8px;
}

.final-box p {
  margin: 0;
  opacity: .8;
}

.white-button {
  border: 0;
  padding: 14px 20px;
  border-radius: 10px;
  background: white;
  color: var(--blue);
  font-weight: 700;
}

/* FOOTER */

footer {
  padding: 35px 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
}

.footer-content strong,
.footer-content span {
  display: block;
}

.footer-content strong {
  color: var(--text);
}

/* MODAL */

.hidden {
  display: none !important;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10,25,47,.65);
  backdrop-filter: blur(5px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(430px, 100%);
  padding: 35px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 30px 100px rgba(0,0,0,.25);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 18px;
  border: 0;
  background: transparent;
  font-size: 26px;
  color: var(--muted);
}

.modal-card h2 {
  margin: 24px 0 7px;
}

.modal-card > p {
  color: var(--muted);
  font-size: 14px;
}

.modal-card label {
  display: block;
  margin: 18px 0 7px;
  font-size: 12px;
  font-weight: 650;
}

.modal-card input {
  width: 100%;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 9px;
  outline: none;
  font: inherit;
}

.modal-card input:focus {
  border-color: var(--blue);
}

.register-submit {
  width: 100%;
  margin-top: 22px;
  padding: 13px;
}

.form-error {
  margin-top: 14px;
  color: #c33e4c;
  font-size: 13px;
}

.already {
  margin-top: 22px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

.already a {
  color: var(--blue);
  font-weight: 650;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    transform: none;
  }

  .plans {
    grid-template-columns: repeat(2, 1fr);
  }

  .features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 650px) {
  .nav-links > a:not(.login-link) {
    display: none;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-cta {
    display: none;
  }

  .hero-grid {
    padding-top: 45px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .trust-grid,
  .plans {
    grid-template-columns: 1fr;
  }

  .plan.featured {
    transform: none;
  }

  .final-box {
    gap: 25px;
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-content {
    gap: 20px;
    flex-direction: column;
  }
}

/* NextData BETA */
.brand-name {
  display: flex;
  align-items: center;
  gap: 8px;
}

.beta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 7px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .08em;
  color: #fff;
  background: #f59e0b;
}

.beta-note {
  margin-top: 18px;
  max-width: 560px;
  padding: 12px 15px;
  border: 1px solid rgba(245, 158, 11, .28);
  border-radius: 12px;
  background: rgba(245, 158, 11, .07);
  font-size: 13px;
  line-height: 1.55;
}

.beta-note strong {
  font-weight: 700;
}



/* ---------------------------------------------------------
   NextData public footer
--------------------------------------------------------- */

.site-footer {
  background: #0d1b32;
  color: #fff;
  padding: 65px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 45px;
}

.footer-brand strong {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
}

.footer-brand p {
  max-width: 330px;
  margin: 0;
  color: #aebbd0;
  line-height: 1.7;
}

.footer-column strong {
  display: block;
  margin-bottom: 17px;
  font-size: 15px;
}

.footer-column a {
  display: block;
  color: #aebbd0;
  text-decoration: none;
  margin: 11px 0;
  transition: color .2s ease;
}

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

.footer-bottom {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.10);

  display: flex;
  justify-content: space-between;
  gap: 20px;

  color: #8493aa;
  font-size: 14px;
}

.footer-beta {
  display: inline-block;
  margin-top: 15px;
  padding: 5px 10px;

  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;

  color: #b9c7da;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
