/* ============================================
   Design Tokens
   ============================================ */
:root {
  --color-blue: #0597ff;
  --color-dark: #222;
  --color-body: #555;
  --color-white: #fff;
  --color-input-bg: #fafafa;
  --color-input-border: #cbcbcb;
  --color-green-dot: #70f9ca;
  --color-border-light: #ededed;
  --color-nav-border: rgba(255, 255, 255, 0.07);
  --font-primary: 'Nunito Sans', sans-serif;
  --color-error: #e74c3c;
  --color-card-bg: #f8f9fa;
  --max-width: 1200px;
}

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-primary);
  color: var(--color-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

/* ============================================
   Layout Utilities
   ============================================ */
.sec__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 56px;
}

/* ============================================
   Shared Components
   ============================================ */
.colour-bar {
  display: block;
  width: 160px;
  height: 8px;
}

.eyebrow {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-blue);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {
  .sec__inner {
    padding: 0 15px;
  }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  background: var(--color-dark);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
}

.hero__nav {
  display: flex;
  align-items: center;
  height: 77px;
  border-bottom: 1px solid var(--color-nav-border);
}

.hero__logo img {
  width: 318px;
  height: auto;
}

.hero__layout {
  display: flex;
  gap: 88px;
  padding: 88px 0 100px;
}

.hero__left {
  flex: 1;
  max-width: 580px;
}

.hero__eyebrow {
  margin-top: 22px;
}

.hero__title {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 68px;
  line-height: 72.76px;
  letter-spacing: -0.68px;
  color: var(--color-white);
  margin-top: 35px;
}

.hero__title--accent {
  display: block;
  margin-top: 25px;
}

.hero__title--blue {
  color: var(--color-blue);
}

.hero__copy {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: 17px;
  line-height: 28px;
  color: var(--color-white);
  margin-top: 45px;
}

.hero__chips {
  margin-top: 48px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 17px;
  height: 34px;
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid var(--color-white);
  border-radius: 40px;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.82);
}

.chip__dot {
  width: 7px;
  height: 7px;
  background: var(--color-green-dot);
  border-radius: 50%;
}

/* ============================================
   Form Card
   ============================================ */
.form-card {
  width: 420px;
  flex-shrink: 0;
  background: var(--color-white);
  border-radius: 3px;
  position: relative;
}

.form-card__bar {
  height: 4px;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(90deg, #0597ff 0%, #763dbe 60%, #70f9cb 100%);
}

.form-card__content,
.form-card__thankyou {
  padding: 44px;
}

.form-card__eyebrow {
  letter-spacing: 1.4px;
}

.form-card__title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 26px;
  line-height: 31.2px;
  color: var(--color-dark);
  margin-top: 8px;
}

.form-card__sub {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  line-height: 21.7px;
  color: var(--color-body);
  margin-top: 14px;
}

.form-fields {
  margin-top: 30px;
}

.form-row {
  display: flex;
  gap: 12px;
}

.form-field {
  margin-bottom: 12px;
}

.form-field--half {
  flex: 1;
}

.form-label {
  display: block;
  font-weight: 700;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.33px;
  color: var(--color-dark);
  margin-bottom: 7px;
}

.form-input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  background: var(--color-input-bg);
  border: 1px solid var(--color-input-border);
  border-radius: 2px;
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--color-dark);
  outline: none;
  transition: border-color 0.2s;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

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

.form-input.is-invalid {
  border-color: var(--color-error);
}

.form-btn {
  width: 100%;
  height: 52px;
  margin-top: 12px;
  background: var(--color-blue);
  color: var(--color-white);
  border: none;
  border-radius: 2px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.6px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.form-btn:hover {
  opacity: 0.9;
}

.form-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-error {
  font-size: 13px;
  color: var(--color-error);
  margin-top: 8px;
  text-align: center;
}

/* ============================================
   Hero — Mobile
   ============================================ */
@media (max-width: 768px) {
  .hero__logo img {
    width: 233px;
    height: auto;
  }

  .hero__nav {
    height: 62px;
  }

  .hero__layout {
    flex-direction: column;
    gap: 32px;
    padding: 88px 0 40px;
  }

  .hero__left {
    max-width: 100%;
  }

  .hero__title {
    font-size: 36px;
    line-height: 40px;
    letter-spacing: -0.36px;
  }

  .hero__copy {
    font-size: 15px;
    line-height: 24px;
  }

  .form-card {
    width: 100%;
  }

  .form-card__content,
  .form-card__thankyou {
    padding: 16px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* ============================================
   Challenge (Section 2)
   ============================================ */
.challenge {
  background: var(--color-white);
  border-top: 1px solid var(--color-border-light);
  padding: 128px 0;
}

.challenge__inner .colour-bar {
  margin-bottom: 22px;
}

.challenge__grid {
  display: flex;
  gap: 88px;
}

.challenge__left {
  flex: 0 0 456px;
}

.challenge__left .eyebrow {
  margin-bottom: 14px;
}

.challenge__headline {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 54px;
  line-height: 59.4px;
  letter-spacing: -0.54px;
  color: var(--color-dark);
}

.challenge__headline--blue {
  display: block;
  margin-top: 25px;
  color: var(--color-blue);
}

.challenge__right {
  flex: 1;
}

.challenge__copy p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 28.8px;
  color: var(--color-body);
  margin-bottom: 18px;
}

.pullquote {
  background: var(--color-white);
  border-radius: 2px;
  padding: 28px 0;
  margin-top: 30px;
}

.pullquote p {
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  line-height: 42px;
  color: var(--color-blue);
  max-width: 424px;
}

/* ============================================
   Advantages (Section 3)
   ============================================ */
.advantages {
  background: #f5f7fa;
  padding: 101px 0 120px;
}

.advantages__header {
  margin-bottom: 30px;
}

.advantages__header .eyebrow {
  margin-top: 14px;
}

.advantages__headline {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 54px;
  line-height: 59.4px;
  letter-spacing: -0.54px;
  color: var(--color-dark);
  margin-top: 14px;
  max-width: 575px;
}

.advantages__headline--blue {
  display: block;
  margin-top: 25px;
  color: var(--color-blue);
}

.adv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 30px;
}

.adv-card {
  background: var(--color-white);
  padding: 48px 40px 40px;
  border-radius: 2px;
}

.adv-card__num {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-blue);
  display: block;
  margin-bottom: 12px;
}

.adv-card__title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.adv-card__body {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 25.6px;
  color: var(--color-body);
  margin-bottom: 24px;
}

.adv-list {
  list-style: none;
}

.adv-list li {
  position: relative;
  padding-left: 16px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 13px;
  line-height: 18.2px;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.adv-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-blue);
}

/* ============================================
   Market Intel (Section 4)
   ============================================ */
.market-intel {
  background: var(--color-dark);
  padding: 100px 0;
}

.intel__grid {
  display: flex;
  gap: 67px;
  align-items: flex-start;
}

.intel__left {
  flex: 0 0 560px;
}

.intel__left .eyebrow {
  margin-top: 14px;
}

.intel__headline {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 42px;
  line-height: 48px;
  letter-spacing: -0.42px;
  color: var(--color-white);
  margin-top: 14px;
}

.intel__copy {
  margin-top: 24px;
}

.intel__copy p {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 28.8px;
  color: rgba(255, 255, 255, 0.7);
}

.intel__byline {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 24px;
}

.intel-cta {
  display: inline-block;
  padding: 12px 25px;
  border: 1px solid var(--color-white);
  border-radius: 2px;
  color: var(--color-white);
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  margin-top: 24px;
  transition: background 0.2s, color 0.2s;
}

.intel-cta:hover {
  background: var(--color-blue);
  color: var(--color-white);
}

.stat-block {
  margin-top: 32px;
}

.stat-num {
  display: block;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 80px;
  line-height: 1;
  color: var(--color-blue);
}

.stat-label {
  display: block;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 8px;
}

.intel__right {
  flex: 1;
  padding-top: 55px;
}

.intel__screenshot {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

/* ============================================
   Video (Section 5)
   ============================================ */
.video-section {
  background: var(--color-white);
  padding: 77px 0 120px;
}

.video__headline {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 54px;
  line-height: 59.4px;
  letter-spacing: -0.54px;
  color: var(--color-dark);
  margin-bottom: 48px;
}

.video__wrapper {
  position: relative;
  max-width: 992px;
  margin: 0 auto;
}

.video__placeholder {
  position: relative;
  aspect-ratio: 992 / 559;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #111;
}

.video__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}

.video__play:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* ============================================
   Closing CTA (Section 6)
   ============================================ */
.closing-cta {
  background: var(--color-dark);
  padding: 100px 0;
}

.closing__layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 88px;
}

.closing__left {
  max-width: 732px;
}

.closing__left .eyebrow {
  margin-top: 14px;
}

.closing__headline {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 42px;
  line-height: 48px;
  color: var(--color-white);
  margin-top: 14px;
}

.closing__sub {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 16px;
  line-height: 27.5px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
}

.closing__btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-shrink: 0;
  padding-top: 28px;
}

.btn-primary,
.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 380px;
  height: 54px;
  border-radius: 2px;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.6px;
  text-align: center;
  transition: opacity 0.2s;
}

.btn-primary {
  background: var(--color-blue);
  color: var(--color-white);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.btn-outline:hover {
  background: var(--color-blue);
  color: var(--color-white);
}

/* ============================================
   Footer
   ============================================ */

/* Pre-footer bar */
.footer__pre {
  padding: 20px 0;
}

.footer__pre-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__pre-text,
.footer__pre-contact {
  font-size: 13px;
  color: var(--color-white);
}

/* Main footer */
.footer {
  background: #111;
}

.footer__main {
  padding: 48px 0 32px;
}

.footer__logo {
  margin-bottom: 36px;
}

.footer__logo-img {
  width: 200px;
  height: auto;
  opacity: 0.9;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.footer__col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

.footer__col ul {
  list-style: none;
}

.footer__col li {
  margin-bottom: 8px;
}

.footer__col a {
  font-size: 13px;
  color: var(--color-white);
  transition: opacity 0.2s;
}

.footer__col a:hover {
  opacity: 0.7;
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__bottom p {
  font-size: 12px;
  color: var(--color-white);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__legal a {
  font-size: 12px;
  color: var(--color-white);
  transition: opacity 0.2s;
}

.footer__legal a:hover {
  opacity: 0.7;
}

.footer__legal span {
  font-size: 12px;
  color: var(--color-white);
}

/* Social icons */
.footer__social-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--color-white);
  color: #1a1c24;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

/* ============================================
   Mobile Responsive — Sections 2-7
   ============================================ */
@media (max-width: 768px) {
  .challenge {
    padding: 60px 0;
  }

  .challenge__grid {
    flex-direction: column;
    gap: 40px;
  }

  .challenge__left {
    flex: none;
  }

  .challenge__headline {
    font-size: 32px;
    line-height: 36px;
  }

  .pullquote p {
    font-size: 22px;
    line-height: 28px;
  }

  .advantages {
    padding: 60px 0;
  }

  .advantages__headline {
    font-size: 32px;
    line-height: 36px;
    max-width: 100%;
  }

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

  .adv-card {
    padding: 24px 16px;
  }

  .adv-card__title {
    font-size: 22px;
  }

  .market-intel {
    padding: 60px 0;
  }

  .intel__grid {
    flex-direction: column;
    gap: 32px;
  }

  .intel__left {
    flex: none;
  }

  .intel__headline {
    font-size: 28px;
    line-height: 32px;
  }

  .stat-num {
    font-size: 56px;
  }

  .video-section {
    padding: 40px 0 60px;
  }

  .video__headline {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 24px;
  }

  .video__play svg {
    width: 48px;
    height: 48px;
  }

  .closing-cta {
    padding: 50px 0;
  }

  .closing__layout {
    flex-direction: column;
    gap: 32px;
  }

  .closing__headline {
    font-size: 28px;
    line-height: 32px;
  }

  .closing__btns {
    width: 100%;
    padding-top: 0;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  .footer__pre-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer__links {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .footer__legal {
    flex-wrap: wrap;
    justify-content: center;
  }
}
