:root {
      --blue: #079bf4;
      --blue-dark: #0077bd;
      --black: #090a0c;
      --ink: #181b20;
      --muted: #68707a;
      --line: #dfe4e8;
      --soft: #f2f5f7;
      --white: #ffffff;
      --radius: 22px;
      --radius-small: 14px;
      --shadow: 0 22px 65px rgba(9, 20, 31, 0.09);
      --wrap: 1160px;
      --header-height: 78px;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: var(--white);
    }

    body {
      margin: 0;
      min-width: 320px;
      overflow-x: hidden;
      background: var(--white);
      color: var(--ink);
      font-family: "Poppins", Arial, Helvetica, sans-serif;
      font-size: 16px;
      line-height: 1.68;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

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

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

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    .skip-link {
      position: fixed;
      z-index: 1000;
      top: 12px;
      left: 12px;
      padding: 10px 14px;
      border-radius: 8px;
      background: var(--white);
      color: var(--black);
      transform: translateY(-150%);
    }

    .skip-link:focus {
      transform: translateY(0);
    }

    .wrap {
      width: min(var(--wrap), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: relative;
      z-index: 20;
      height: var(--header-height);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      background: var(--black);
      color: var(--white);
    }

    .site-header__inner {
      display: flex;
      width: min(1320px, calc(100% - 40px));
      height: 100%;
      margin: 0 auto;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .site-logo {
      display: inline-flex;
      align-items: center;
    }

    .site-logo img {
      width: auto;
      height: 40px;
      object-fit: contain;
    }

    .back-home {
      display: inline-flex;
      min-height: 44px;
      padding: 0 20px;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.28);
      border-radius: 999px;
      color: var(--white);
      font-size: 0.83rem;
      font-weight: 650;
      transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
    }

    .back-home:hover {
      border-color: var(--blue);
      background: var(--blue);
      transform: translateY(-1px);
    }

    .hero {
      padding: clamp(78px, 10vw, 144px) 0 clamp(76px, 9vw, 126px);
      background:
        radial-gradient(circle at 82% 20%, rgba(7, 155, 244, 0.18), transparent 34%),
        linear-gradient(145deg, #050607 0%, #0c1116 60%, #071622 100%);
      color: var(--white);
    }

    .hero__inner {
      max-width: 920px;
    }

    .eyebrow {
      margin: 0 0 13px;
      color: var(--blue);
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.17em;
      text-transform: uppercase;
    }

    h1,
    h2,
    h3 {
      margin-top: 0;
      color: inherit;
      line-height: 1.08;
      letter-spacing: -0.04em;
    }

    h1 {
      max-width: 860px;
      margin-bottom: 25px;
      font-size: clamp(3rem, 7vw, 6.25rem);
      font-weight: 700;
    }

    h2 {
      margin-bottom: 18px;
      font-size: clamp(2.15rem, 4.6vw, 4rem);
      font-weight: 650;
    }

    h3 {
      margin-bottom: 15px;
      font-size: clamp(1.35rem, 2.3vw, 1.82rem);
      font-weight: 650;
      letter-spacing: -0.03em;
    }

    .hero__intro {
      max-width: 760px;
      margin: 0;
      color: rgba(255, 255, 255, 0.72);
      font-size: clamp(1.03rem, 1.65vw, 1.25rem);
      line-height: 1.72;
    }

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

    .button {
      display: inline-flex;
      min-height: 52px;
      padding: 0 24px;
      align-items: center;
      justify-content: center;
      border: 1px solid transparent;
      border-radius: 999px;
      font-size: 0.87rem;
      font-weight: 700;
      text-align: center;
      transition:
        border-color 180ms ease,
        background 180ms ease,
        color 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
    }

    .button:hover {
      transform: translateY(-2px);
    }

    .button--primary {
      background: var(--blue);
      color: var(--white);
      box-shadow: 0 13px 34px rgba(7, 155, 244, 0.27);
    }

    .button--primary:hover {
      background: var(--blue-dark);
    }

    .button--outline-light {
      border-color: rgba(255, 255, 255, 0.32);
      background: transparent;
      color: var(--white);
    }

    .button--outline-light:hover {
      border-color: var(--white);
      background: var(--white);
      color: var(--black);
    }

    .button--outline {
      border-color: #cfd5da;
      background: var(--white);
      color: var(--ink);
    }

    .button--outline:hover {
      border-color: var(--blue);
      color: var(--blue-dark);
    }

    .section {
      padding: clamp(78px, 9vw, 126px) 0;
      scroll-margin-top: 24px;
    }

    .section--soft {
      background: var(--soft);
    }

    .section--dark {
      background: var(--black);
      color: var(--white);
    }

    .section-header {
      max-width: 780px;
      margin-bottom: 42px;
    }

    .section-header p:not(.eyebrow) {
      margin: 0;
      color: var(--muted);
      font-size: 1.03rem;
    }

    .section--dark .section-header p:not(.eyebrow) {
      color: rgba(255, 255, 255, 0.68);
    }


    /* Starting-point cards */
    .choice-section {
      padding-top: clamp(72px, 8vw, 108px);
      padding-bottom: clamp(72px, 8vw, 108px);
    }

    .choice-section__header {
      display: grid;
      grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.7fr);
      align-items: end;
      gap: 50px;
      margin-bottom: 38px;
    }

    .choice-section__header h2 {
      margin-bottom: 0;
    }

    .choice-section__header > p {
      max-width: 520px;
      margin: 0;
      color: var(--muted);
      font-size: 1rem;
      line-height: 1.7;
    }

    .choice-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .choice-card {
      position: relative;
      display: flex;
      min-height: 300px;
      padding: 28px;
      overflow: hidden;
      flex-direction: column;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: #fff;
      box-shadow: 0 10px 32px rgba(9, 20, 31, 0.045);
      transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
    }

    .choice-card::before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      height: 4px;
      background: var(--blue);
    }

    .choice-card:hover {
      border-color: rgba(7, 155, 244, 0.52);
      box-shadow: 0 20px 55px rgba(9, 20, 31, 0.09);
      transform: translateY(-4px);
    }

    .choice-card__top {
      margin-bottom: 14px;
    }

    .choice-card__label {
      display: block;
      margin: 0;
      color: var(--blue);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    .choice-card h3 {
      display: block;
      min-height: 2.16em;
      max-width: 340px;
      margin: 0 0 14px;
      font-size: clamp(1.55rem, 2.5vw, 2.05rem);
      line-height: 1.08;
    }

    .choice-card > p {
      max-width: 355px;
      margin: 0 0 28px;
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.65;
    }

    .choice-card .button {
      align-self: flex-start;
      margin-top: auto;
    }

    .form-layout {
      display: grid;
      grid-template-columns: minmax(0, 0.65fr) minmax(520px, 1.35fr);
      align-items: start;
      gap: clamp(36px, 6vw, 78px);
    }

    .form-copy {
      position: sticky;
      top: 28px;
    }

    .form-copy p:not(.eyebrow) {
      color: var(--muted);
    }

    .form-copy__steps {
      display: grid;
      gap: 16px;
      margin-top: 29px;
    }

    .form-copy__step {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 13px;
      align-items: start;
    }

    .form-copy__step span {
      display: grid;
      width: 34px;
      height: 34px;
      place-items: center;
      border-radius: 50%;
      background: rgba(7, 155, 244, 0.12);
      color: var(--blue-dark);
      font-size: 0.73rem;
      font-weight: 700;
    }

    .form-copy__step p {
      margin: 4px 0 0;
      font-size: 0.89rem;
    }

    .form-panel {
      overflow: hidden;
      border: 1px solid rgba(17, 24, 39, 0.1);
      border-radius: 28px;
      background: var(--white);
      box-shadow: var(--shadow);
    }

    .form-panel__heading {
      display: flex;
      padding: 25px 30px;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    }

    .form-panel__heading h3 {
      margin: 4px 0 0;
      font-size: 1.27rem;
      letter-spacing: -0.025em;
    }

    .form-panel__eyebrow {
      margin: 0;
      color: var(--blue);
      font-size: 0.67rem;
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
    }

    .form-panel__note {
      color: #7b8289;
      font-size: 0.7rem;
      text-align: right;
    }

    .jotform-embed {
      min-height: 590px;
      padding: 8px 14px 14px;
      background: var(--white);
    }

    .jotform-embed iframe {
      display: block;
      width: 100% !important;
      border: 0 !important;
    }

    #license-existing-images .jotform-embed {
      min-height: 1040px;
    }

    .email-panel {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 28px;
      padding: clamp(30px, 5vw, 54px);
      align-items: center;
      border: 1px solid rgba(255, 255, 255, 0.11);
      border-radius: 28px;
      background:
        radial-gradient(circle at 86% 15%, rgba(7, 155, 244, 0.22), transparent 34%),
        #101317;
    }

    .email-panel h2 {
      margin-bottom: 14px;
      font-size: clamp(2rem, 4vw, 3.4rem);
    }

    .email-panel p:not(.eyebrow) {
      max-width: 720px;
      margin: 0;
      color: rgba(255, 255, 255, 0.69);
    }

    .site-footer {
      padding: 30px 0;
      background: #050607;
      color: rgba(255, 255, 255, 0.62);
      font-size: 0.76rem;
    }

    .site-footer__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 25px;
    }

    .site-footer__links {
      display: flex;
      flex-wrap: wrap;
      gap: 17px;
    }

    .site-footer a:hover {
      color: var(--white);
    }

    :focus-visible {
      outline: 3px solid rgba(7, 155, 244, 0.42);
      outline-offset: 4px;
    }

    @media (max-width: 980px) {
      .choice-section__header {
        grid-template-columns: 1fr;
        gap: 16px;
      }

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

      .choice-card {
        min-height: 0;
      }

      .choice-card h3 {
        min-height: 0;
      }

      .form-layout {
        grid-template-columns: 1fr;
      }

      .form-copy {
        position: static;
      }
    }

    @media (max-width: 700px) {
      :root {
        --header-height: 70px;
      }

      .wrap,
      .site-header__inner {
        width: min(100% - 28px, var(--wrap));
      }

      .site-logo img {
        height: 34px;
      }

      .back-home {
        min-height: 40px;
        padding: 0 16px;
        font-size: 0.76rem;
      }

      .hero {
        padding: 70px 0 78px;
      }

      h1 {
        font-size: clamp(2.7rem, 13vw, 4.4rem);
      }

      .section {
        padding: 72px 0;
      }

      .choice-section {
        padding-top: 66px;
        padding-bottom: 66px;
      }

      .choice-section__header {
        margin-bottom: 28px;
      }

      .choice-card {
        padding: 24px;
        border-radius: 18px;
      }

      .choice-card h3 {
        font-size: 1.65rem;
      }

      .form-panel {
        border-radius: 20px;
      }

      .form-panel__heading {
        display: block;
        padding: 23px 20px;
      }

      .form-panel__note {
        display: block;
        margin-top: 7px;
        text-align: left;
      }

      .jotform-embed {
        padding: 0;
      }

      .email-panel {
        grid-template-columns: 1fr;
        border-radius: 21px;
      }

      .email-panel .button {
        justify-self: start;
      }

      .site-footer__inner {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }
