* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: #0B1B41;
  -webkit-font-smoothing: antialiased;
  font-family: Barlow, Helvetica, sans-serif;
}

a { color: #FA7818; text-decoration: none; }
a:hover { color: #FFFFFF; }

input, button { font-family: inherit; }

.accent { color: #FA7818; }

.page {
  background: #0B1B41;
  color: #FFFFFF;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Header */

.site-header {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 26px 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

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

.brand__logo {
  width: 72px;
  height: 72px;
  display: block;
  background: #FFFFFF;
  border-radius: 50%;
  flex: 0 0 auto;
}

.brand__name {
  font-family: Archivo, Helvetica, sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 22px;
  letter-spacing: -0.03em;
  line-height: 1;
}

.badge {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #23386B;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #A9BAD9;
}

.badge__dot {
  width: 8px;
  height: 8px;
  background: #FA7818;
  display: block;
}

/* Hero */

.hero {
  flex: 1 1 auto;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(40px, 7vw, 92px) 22px clamp(36px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.hero__title {
  font-family: Archivo, Helvetica, sans-serif;
  font-weight: 900;
  font-size: clamp(46px, 8.4vw, 84px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  margin: 0;
  text-wrap: balance;
}

.hero__lead {
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
  color: #A9BAD9;
  margin: 26px 0 0;
  max-width: 30em;
  text-wrap: pretty;
}

/* Signup form */

.signup { margin-top: 34px; max-width: 560px; }

.signup__row { display: flex; flex-wrap: wrap; gap: 10px; }

#email-input {
  flex: 1 1 240px;
  min-width: 0;
  padding: 18px 18px;
  border: 2px solid #2C4174;
  background: #0F2350;
  color: #FFFFFF;
  font-size: 17px;
  font-weight: 500;
}

#email-input:focus {
  border-color: #FA7818;
  outline: none;
  background: #12295C;
}

#submit-btn {
  flex: 0 0 auto;
  border: none;
  background: #FA7818;
  color: #FFFFFF;
  font-family: Archivo, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 17px;
  padding: 18px 30px;
  cursor: pointer;
  letter-spacing: -0.01em;
}

#submit-btn:hover { background: #FFFFFF; color: #0B1B41; }
#submit-btn:disabled { cursor: default; opacity: 0.85; }

.signup__note {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  align-items: flex-start;
}

.note-dot {
  width: 8px;
  height: 8px;
  background: #FA7818;
  margin-top: 7px;
  flex: 0 0 auto;
}

.note-dot.is-error { background: #FF4A4A; }

.signup__note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: #A9BAD9;
  font-weight: 500;
}

.role-toggle {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.role-btn {
  border: 2px solid #2C4174;
  background: transparent;
  color: #A9BAD9;
  font-family: Archivo, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 16px;
  cursor: pointer;
}

.role-btn.is-active {
  border-color: #FA7818;
  background: #FA7818;
  color: #FFFFFF;
}

/* Stats column */

.stats { display: grid; gap: 12px; }

.count-card {
  border: 1px solid #23386B;
  background: #0F2350;
  padding: 26px;
}

.count-card__number {
  font-family: Archivo, Helvetica, sans-serif;
  font-weight: 900;
  font-size: clamp(38px, 5vw, 54px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: #FA7818;
}

.count-card__label {
  font-size: 16px;
  color: #A9BAD9;
  margin-top: 8px;
  font-weight: 500;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.pillar {
  border: 1px solid #23386B;
  background: #0F2350;
  padding: 20px;
}

.pillar__bar { height: 4px; width: 28px; background: #FA7818; }

.pillar__title {
  font-family: Archivo, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 17px;
  margin-top: 14px;
  letter-spacing: -0.01em;
}

.pillar__text {
  font-size: 14px;
  color: #A9BAD9;
  margin-top: 6px;
  line-height: 1.45;
}

/* Marquee */

.marquee {
  background: #FA7818;
  color: #FFFFFF;
  overflow: hidden;
  border-top: 1px solid #FA7818;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: nk-marquee 46s linear infinite;
  padding: 16px 0;
  font-family: Archivo, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: pre;
}

@keyframes nk-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* Services section */

.services-section { background: #FFFFFF; color: #10265A; }

.services-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(44px, 6vw, 76px) 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 4vw, 60px);
}

.section-title {
  font-family: Archivo, Helvetica, sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.4vw, 36px);
  letter-spacing: -0.035em;
  margin: 0 0 8px;
}

.section-sub {
  font-size: 17px;
  color: #5B6B8C;
  margin: 0 0 24px;
  font-weight: 500;
}

.service-list {
  display: grid;
  gap: 0;
  border-top: 1px solid #E2E7F0;
}

.service-row {
  display: flex;
  gap: 16px;
  align-items: baseline;
  padding: 16px 4px;
  border-bottom: 1px solid #E2E7F0;
}

.service-row__no {
  font-family: Archivo, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #FA7818;
  letter-spacing: 0.06em;
  flex: 0 0 26px;
}

.service-row__title {
  font-family: Archivo, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  flex: 1 1 auto;
}

.service-row__text {
  font-size: 14px;
  color: #5B6B8C;
  flex: 1 1 160px;
  line-height: 1.4;
  text-align: right;
}

.city-chips { display: flex; flex-wrap: wrap; gap: 8px; }

.city-chip {
  border: 1px solid #D7DEEB;
  background: #FFFFFF;
  padding: 9px 14px;
  font-size: 14px;
  font-weight: 600;
  color: #10265A;
}

.city-chip:hover { border-color: #FA7818; color: #FA7818; }

.company-cta {
  margin-top: 26px;
  border: 1px solid #E2E7F0;
  background: #F4F6FA;
  padding: 22px;
}

.company-cta__title {
  font-family: Archivo, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
}

.company-cta__text {
  font-size: 15px;
  color: #46567A;
  line-height: 1.5;
  margin: 8px 0 16px;
}

.company-cta__link {
  display: inline-block;
  border: 2px solid #FA7818;
  color: #FA7818;
  font-family: Archivo, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 20px;
}

.company-cta__link:hover { background: #FA7818; color: #FFFFFF; }

/* App section */

.app-section { background: #10265A; color: #FFFFFF; }

.app-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px) 22px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.app-eyebrow {
  font-family: Archivo, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #FA7818;
}

.app-title {
  font-family: Archivo, Helvetica, sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.6vw, 40px);
  letter-spacing: -0.035em;
  margin: 14px 0 12px;
  text-wrap: balance;
}

.app-text {
  font-size: 17px;
  line-height: 1.55;
  color: #A9BAD9;
  margin: 0;
  max-width: 32em;
  text-wrap: pretty;
}

.store-badges { display: flex; flex-wrap: wrap; gap: 10px; }

.store-badge {
  border: 2px solid #2C4174;
  padding: 14px 22px;
  min-width: 150px;
}

.store-badge__soon { font-size: 13px; color: #A9BAD9; font-weight: 600; }

.store-badge__name {
  font-family: Archivo, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 19px;
  margin-top: 2px;
}

/* Footer */

.site-footer {
  background: #FFFFFF;
  border-top: 1px solid #E2E7F0;
}

.site-footer__inner {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 26px 22px 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #5B6B8C;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-footer__logo {
  width: 36px;
  height: 36px;
  display: block;
  border-radius: 50%;
}
