@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

html {
  scroll-behavior: smooth;
}

/* Google Form POST target (invisible iframe) — scoped to this landing root */
#hdw-tradeshow-root .gf-submit-frame {
  position: fixed;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  border: 0;
}

#hdw-tradeshow-root .hidden {
  display: none !important;
}

@scope (#hdw-tradeshow-root) {
  :scope {
    --bg: #f8f6ee;
    --bg-card: #ffffff;
    --bg-dark: #0f1218;
    --grid: #e8e4d2;
    --grid-strong: #ddd8c2;
    --ink: #0f0f1a;
    --ink-2: #2a2a35;
    --muted: #5c5c66;
    --muted-2: #8b8b94;
    --line: #e5e1d2;
    --line-card: #ece8da;
    --pink: #ff4d7d;
    --teal: #1dbd8c;
    --teal-light: #3dd9c2;
    --grad-1: #7f5bff;
    --grad-2: #4b8bff;
    --grad-3: #3dd9c2;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-pill: 999px;

    font-family: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  :scope *,
  :scope *::before,
  :scope *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  .grid-bg {
    position: relative;
    background-color: var(--bg);
    background-image:
      linear-gradient(var(--grid) 1px, transparent 1px),
      linear-gradient(90deg, var(--grid) 1px, transparent 1px);
    background-size: 48px 48px;
    background-position: -1px -1px;
  }

  .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .grad {
    background: linear-gradient(95deg, var(--grad-1) 0%, var(--grad-2) 50%, var(--grad-3) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }

  .star {
    position: absolute;
    width: 32px;
    height: 32px;
    color: var(--pink);
    pointer-events: none;
  }

  .hero {
    position: relative;
    padding: 56px 0 96px;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: start;
  }

  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1.5px solid var(--ink);
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
    background: rgba(248, 246, 238, 0.6);
  }

  .hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--pink);
    border-radius: 50%;
  }

  .hdw-hero-headline {
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -2.5px;
    color: var(--ink);
    margin-bottom: 28px;
  }

  .hdw-hero-headline .hdw-hero-line {
    display: block;
  }

  .hdw-hero-headline .grad {
    display: inline-block;
  }

  .hero-sub {
    font-size: 18px;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.55;
    margin-bottom: 12px;
  }

  .hero-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
  }

  .hero-meta-sep {
    color: var(--muted-2);
    font-weight: 400;
  }

  .hero-meta-booth {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--ink);
    color: #fff;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.8em;
  }

  .hero-meta-booth strong {
    color: var(--pink);
    font-weight: 800;
  }

  .hero-star-1 {
    top: 60px;
    right: 44%;
  }

  .form-card {
    background: var(--bg-card);
    border: 1px solid var(--line-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 20px 60px -20px rgba(15, 18, 24, 0.12);
    position: relative;
  }

  .form-card h3 {
    color: var(--ink);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: -0.4px;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }

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

  .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-2);
    margin-bottom: 6px;
    letter-spacing: 0.2px;
  }

  .form-group input {
    width: 100%;
    padding: 11px 14px;
    background: #faf8ee;
    border: 1px solid var(--line-card);
    border-radius: 10px;
    color: var(--ink);
    font-size: 14px;
    font-family: inherit;
    transition:
      border-color 0.15s ease,
      background 0.15s ease;
  }

  .form-group input:focus {
    outline: none;
    border-color: var(--teal);
    background: #ffffff;
  }

  .form-group input::placeholder {
    color: var(--muted-2);
  }

  .form-submit {
    width: 100%;
    padding: 14px;
    background: var(--ink);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    margin-top: 8px;
    font-family: inherit;
    transition:
      background 0.15s ease,
      transform 0.15s ease;
  }

  .form-submit:hover:not(:disabled) {
    background: #1c1c28;
    transform: translateY(-1px);
  }

  .form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }

  .form-disclaimer {
    font-size: 11px;
    color: var(--muted-2);
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
  }

  .lead-form-thankyou {
    text-align: center;
    padding: 24px 0;
  }

  .lead-form-thankyou-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
  }

  .lead-form-thankyou h3 {
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--ink);
  }

  .lead-form-thankyou > p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
  }

  .lead-form-reset {
    margin-top: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--teal);
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-family: inherit;
  }

  .lead-form-reset:hover {
    color: var(--grad-1);
  }

  .section {
    padding: 96px 0;
    position: relative;
  }

  .section-header {
    text-align: center;
    margin-bottom: 64px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .section-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--grad-1);
    margin-bottom: 18px;
  }

  .section h2 {
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    color: var(--ink);
  }

  .section-sub {
    font-size: 18px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto;
  }

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

  .feature-card {
    background: var(--bg-card);
    border: 1px solid var(--line-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition:
      transform 0.2s ease,
      border-color 0.2s ease,
      box-shadow 0.2s ease;
  }

  .feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--grad-2);
    box-shadow: 0 16px 40px -16px rgba(75, 139, 255, 0.2);
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
  }

  .feature-icon.icon-1 {
    background: rgba(127, 91, 255, 0.12);
    color: var(--grad-1);
  }

  .feature-icon.icon-2 {
    background: rgba(255, 77, 125, 0.12);
    color: var(--pink);
  }

  .feature-icon.icon-3 {
    background: rgba(29, 189, 140, 0.12);
    color: var(--teal);
  }

  .feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.4px;
  }

  .feature-card p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.6;
  }

  .feature-card-tag {
    display: inline-block;
    margin-top: 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--grad-1);
  }

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

  .team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
    max-width: 960px;
    margin: 0 auto;
  }

  .team-card {
    background: var(--bg-card);
    border: 1px solid var(--line-card);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    text-align: center;
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;
  }

  .team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px -16px rgba(15, 15, 26, 0.12);
  }

  .team-avatar {
    width: 168px;
    height: 168px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--grad-1), var(--grad-3));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    border: 3px solid #fff;
    box-shadow: 0 6px 20px -6px rgba(15, 15, 26, 0.25);
  }

  .team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .team-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
  }

  .team-card .role {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 18px;
  }

  .team-card .book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px 8px 16px;
    background: var(--ink);
    color: #fff;
    text-decoration: none;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    transition: transform 0.15s ease;
  }

  .team-card .book:hover {
    transform: translateY(-1px);
  }

  .team-card .book .arr {
    width: 18px;
    height: 18px;
    background: #fff;
    color: var(--ink);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .star-2 {
    top: 38%;
    left: 6%;
    width: 24px;
    height: 24px;
  }

  .star-3 {
    top: 24%;
    right: 8%;
    width: 28px;
    height: 28px;
  }

  .star-4 {
    bottom: 18%;
    right: 12%;
    width: 22px;
    height: 22px;
    opacity: 0.7;
  }

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

    .feature-grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .feature-card {
      padding: 28px;
    }

    .team-grid {
      grid-template-columns: 1fr;
      max-width: 440px;
    }
  }

  @media (max-width: 640px) {
    .container {
      padding: 0 20px;
    }

    .hero {
      padding: 36px 0 64px;
    }

    .hdw-hero-headline {
      letter-spacing: -1.5px;
    }

    .form-card {
      padding: 24px;
    }

    .form-row {
      grid-template-columns: 1fr;
      gap: 0;
    }

    .section {
      padding: 64px 0;
    }

    .star {
      width: 24px;
      height: 24px;
    }

    .hero-meta {
      gap: 6px 12px;
      font-size: 16px;
    }

    .hero-meta-sep {
      display: none;
    }
  }
}

/*
 * Purpose-Built / Workflow Engine / for Last-Mile — edit these clamps only (file ends here).
 * Typical ranges: min ≈ smallest phones, middle = vw scaling, max = large desktop cap.
 */
#hdw-tradeshow-root .hdw-hero-headline .hdw-hero-line {
  font-size: clamp(70px, 12vw, 90px);
  line-height: 1.08;
}

@media (max-width: 640px) {
  #hdw-tradeshow-root .hdw-hero-headline .hdw-hero-line {
    font-size: clamp(24px, 5vw, 34px);
  }
}
