:root {
  --navy: #083e78;
  --navy-bubble: #14508c;
  --blue: #0f5fad;
  --cyan: #1fb1ff;
  --text: #1c2b3a;
  --muted: oklch(37.2% 0.044 257.287);
  --bg: #f2f4f7;
  --panel: #edf1f5;
  --white: #ffffff;
  --shadow: 0 0.75rem 1.875rem rgba(13, 42, 74, 0.12);
  --radius: 1.25rem;
  --container: 75rem;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.55;
}

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

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

.text-primary {
  color: var(--text);
}

.text-secondary {
  color: var(--muted);
}

.text-inverse {
  color: var(--white);
}

.text-brand {
  color: #0d417a;
}

.text-accent {
  color: var(--cyan);
}

.text-accent-strong {
  color: #1a9de4;
}

.bg-white {
  background: var(--white);
}

.bg-panel {
  background: var(--panel);
}

.bg-brand {
  background: #063f78;
}

.bg-accent-soft {
  background: #e8f6ff;
}

.container,
.topbar>div {
  width: min(calc(100% - 3rem), var(--container));
  margin: 0 auto;

  @media (max-width: 45rem) {
    width: min(calc(100% - 2rem), var(--container));
  }
}

.section {
  padding: 4.5rem 0;

  @media (max-width: 45rem) {
    padding-top: 3.25rem;
    padding-bottom: 3.5rem;
  }
}

[name="toxin"] {
  display: none;
}

h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
  line-height: 1.15;
  font-weight: 600;
}

h2 {
  margin: 0 0 1.125rem;
  font-size: clamp(1.55rem, 2vw, 2.45rem);
  line-height: 1.2;
  font-weight: 600;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 30rem;
  background: linear-gradient(135deg, var(--navy) 0%, #0a4b92 60%, #0b3d76 100%);
  isolation: isolate;

  @media (max-width: 1100px) {
    min-height: 20rem;
  }

  @media (max-width: 45rem) {
    &::before {
      top: 3.75rem;
      right: -3rem;
      left: auto;
      width: 9.5rem;
      height: 9.5rem;
    }

    &::after {
      top: 12rem;
      right: 0.875rem;
      width: 5.75rem;
      height: 5.75rem;
    }
  }
}

.visually-hidden {
  position: absolute;
}

.hero-bubbles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  filter: url(#hero-goo);
}

.bubble {
  --size: 12rem;
  --start-x: 0rem;
  --start-y: 0rem;
  --drift-x: 0rem;
  --drift-y: 0rem;
  --duration: 26s;
  --delay: 0s;
  position: absolute;
  width: var(--size);
  height: var(--size);
  left: 50%;
  top: 50%;
  border-radius: 50%;
  background: var(--navy-bubble);
  opacity: 0.88;
  box-shadow: 0 0 3rem rgba(20, 80, 140, 0.22);
  transform: translate3d(var(--start-x), var(--start-y), 0) scale(1);
  animation: bubble-drift var(--duration) ease-in-out infinite alternate;
  animation-delay: var(--delay);
}

.bubble-1 {
  --size: 19.75rem;
  --start-x: -28rem;
  --start-y: -10rem;
  --drift-x: 8rem;
  --drift-y: 4rem;
  --duration: 32s;
}

.bubble-2 {
  --size: 7.5rem;
  --start-x: -7rem;
  --start-y: -13rem;
  --drift-x: 5rem;
  --drift-y: 8rem;
  --duration: 29s;
  --delay: -9s;
}

.bubble-3 {
  --size: 7.5rem;
  --start-x: 18rem;
  --start-y: -11rem;
  --drift-x: -7rem;
  --drift-y: 7rem;
  --duration: 36s;
  --delay: -5s;
}

.bubble-4 {
  --size: 7.5rem;
  --start-x: 33rem;
  --start-y: -2rem;
  --drift-x: -10rem;
  --drift-y: 5rem;
  --duration: 32s;
  --delay: -15s;
}

.bubble-5 {
  --size: 7.5rem;
  --start-x: -20rem;
  --start-y: 11rem;
  --drift-x: 9rem;
  --drift-y: -6rem;
  --duration: 36s;
  --delay: -12s;
}

.bubble-6 {
  --size: 7.5rem;
  --start-x: 24rem;
  --start-y: 12rem;
  --drift-x: -8rem;
  --drift-y: -7rem;
  --duration: 35s;
  --delay: -18s;
}

.bubble-small {
  --size: 4.5rem;
  opacity: 0.82;
}

.bubble-7 {
  --start-x: -15rem;
  --start-y: -1rem;
  --drift-x: 6rem;
  --drift-y: 3rem;
  --duration: 23.8s;
  --delay: -4s;
}

.bubble-8 {
  --start-x: 3rem;
  --start-y: -16rem;
  --drift-x: 3rem;
  --drift-y: 6rem;
  --duration: 25.2s;
  --delay: -11s;
}

.bubble-9 {
  --start-x: 30rem;
  --start-y: -12rem;
  --drift-x: -6rem;
  --drift-y: 5rem;
  --duration: 24.5s;
  --delay: -8s;
}

.bubble-10 {
  --start-x: -10rem;
  --start-y: 14rem;
  --drift-x: 7rem;
  --drift-y: -4rem;
  --duration: 25.9s;
  --delay: -15s;
}

.bubble-11 {
  --start-x: 18rem;
  --start-y: 16rem;
  --drift-x: -5rem;
  --drift-y: -6rem;
  --duration: 23.1s;
  --delay: -19s;
}

@keyframes bubble-drift {
  0% {
    transform: translate3d(var(--start-x), var(--start-y), 0) scale(0.96);
  }

  50% {
    transform: translate3d(calc(var(--start-x) + (var(--drift-x) * 0.45)),
        calc(var(--start-y) + (var(--drift-y) * 0.45)),
        0) scale(1.04);
  }

  100% {
    transform: translate3d(calc(var(--start-x) + var(--drift-x)),
        calc(var(--start-y) + var(--drift-y)),
        0) scale(1);
  }
}

.topbar {
  position: relative;

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
  }

  div {
    position: relative;
    z-index: 2;
    padding: 0.8rem 0;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: -0.02em;

  .respond {
    font-weight: 600;
    opacity: 0.95;
    font-style: italic;
  }
}

h2 .brand {
  font-size: inherit;
  line-height: inherit;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 60rem;
  padding: 4rem 0 5.5rem;

  @media (max-width:1100px) {
    max-width: 40rem;
  }

  @media (max-width: 60rem) {
    padding: 2.75rem 0 4.25rem;
  }
}

@media (max-width: 60rem) {
  .bubble-1 {
    --start-x: -16rem;
    --start-y: -6rem;
    --drift-x: 6rem;
    --drift-y: 6rem;
  }

  .bubble-2 {
    --start-x: -2rem;
    --start-y: -10rem;
    --drift-x: 3rem;
    --drift-y: 5rem;
  }

  .bubble-3 {
    --start-x: 10rem;
    --start-y: -8rem;
    --drift-x: -5rem;
    --drift-y: 5rem;
  }

  .bubble-4 {
    --start-x: 20rem;
    --start-y: -1rem;
    --drift-x: -7rem;
    --drift-y: 4rem;
  }

  .bubble-5 {
    --start-x: -12rem;
    --start-y: 10rem;
    --drift-x: 6rem;
    --drift-y: -4rem;
  }

  .bubble-6 {
    --start-x: 15rem;
    --start-y: 10rem;
    --drift-x: -6rem;
    --drift-y: -5rem;
  }

  .bubble-7 {
    --start-x: -10rem;
    --start-y: 0rem;
    --drift-x: 5rem;
    --drift-y: 3rem;
  }

  .bubble-8 {
    --start-x: 2rem;
    --start-y: -12rem;
    --drift-x: 2rem;
    --drift-y: 5rem;
  }

  .bubble-9 {
    --start-x: 20rem;
    --start-y: -8rem;
    --drift-x: -5rem;
    --drift-y: 4rem;
  }

  .bubble-10 {
    --start-x: -8rem;
    --start-y: 10rem;
    --drift-x: 5rem;
    --drift-y: -3rem;
  }

  .bubble-11 {
    --start-x: 12rem;
    --start-y: 11rem;
    --drift-x: -4rem;
    --drift-y: -5rem;
  }
}

@media (max-width: 45rem) {
  .bubble {
    opacity: 0.82;
  }

  .bubble-1 {
    --size: 8.45rem;
    --start-x: -8rem;
    --start-y: -4rem;
    --drift-x: 4rem;
    --drift-y: 4rem;
  }

  .bubble-2 {
    --size: 5.5rem;
    --start-x: 0rem;
    --start-y: -7rem;
    --drift-x: 2rem;
    --drift-y: 4rem;
  }

  .bubble-3 {
    --size: 5.5rem;
    --start-x: 8rem;
    --start-y: -5rem;
    --drift-x: -4rem;
    --drift-y: 4rem;
  }

  .bubble-4 {
    --size: 4rem;
    --start-x: 14rem;
    --start-y: 0rem;
    --drift-x: -5rem;
    --drift-y: 3rem;
  }

  .bubble-5 {
    --size: 5rem;
    --start-x: -6rem;
    --start-y: 8rem;
    --drift-x: 4rem;
    --drift-y: -3rem;
  }

  .bubble-6 {
    --size: 5rem;
    --start-x: 10rem;
    --start-y: 8rem;
    --drift-x: -4rem;
    --drift-y: -4rem;
  }

  .bubble-small {
    --size: 3.5rem;
  }

  .bubble-7 {
    --start-x: -5rem;
    --start-y: 0rem;
    --drift-x: 3rem;
    --drift-y: 2rem;
  }

  .bubble-8 {
    --start-x: 0rem;
    --start-y: -8rem;
    --drift-x: 2rem;
    --drift-y: 4rem;
  }

  .bubble-9 {
    --start-x: 12rem;
    --start-y: -6rem;
    --drift-x: -3rem;
    --drift-y: 3rem;
  }

  .bubble-10 {
    --start-x: -4rem;
    --start-y: 7rem;
    --drift-x: 3rem;
    --drift-y: -2rem;
  }

  .bubble-11 {
    --start-x: 8rem;
    --start-y: 8rem;
    --drift-x: -3rem;
    --drift-y: -3rem;
  }
}

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

.lead {
  margin: 0;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 400;
}

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: center;

  @media (max-width: 60rem) {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.notice-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.375rem;
  border-radius: 0.625rem;
  box-shadow: 0 0.5rem 1.25rem rgba(31, 177, 255, 0.12);

  svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
  }
}

.copy {
  p {
    margin: 0 0 1.125rem;
    max-width: 37.5rem;
    font-size: 1rem;
  }
}

.image-card {
  min-height: 20rem;
  overflow: hidden;
  border-radius: 0.625rem;
  background: #dbe8f3;
  box-shadow: var(--shadow);

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

.form-band {
  padding: 4.5rem 0 5.25rem;

  @media (max-width: 45rem) {
    padding-top: 3.25rem;
    padding-bottom: 3.5rem;
  }
}

.form-card {
  width: min(100%, 38rem);
  margin: 0 auto;
  padding: 2.125rem 2.125rem 1.75rem;
  border: 0.0625rem solid rgba(8, 62, 120, 0.06);
  border-radius: 0.5rem;
  box-shadow: 0 0.875rem 2rem rgba(6, 47, 93, 0.12);

  h3 {
    margin: 0;
    text-align: center;
    font-size: clamp(1.6rem, 2vw, 2.2rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
  }

  @media (max-width: 45rem) {
    padding: 1.5rem 1.125rem 1.25rem;
  }
}

.form-sub {
  margin: 0.5rem 0 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
}

form {
  display: grid;
  gap: 0.875rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;

  @media (max-width: 45rem) {
    grid-template-columns: 1fr;
  }
}

label {
  display: block;
  margin-bottom: 0.375rem;
  color: #3d4b5b;
  font-size: 0.85rem;
  font-weight: 400;
}

input,
textarea {
  width: 100%;
  padding: 0.75rem 0.875rem;
  border: 0.0625rem solid #d8dfe7;
  border-radius: 0.25rem;
  background: #fff;
  color: var(--text);
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;

  &:focus {
    border-color: #2a79cc;
    box-shadow: 0 0 0 0.25rem rgba(42, 121, 204, 0.12);
  }
}

textarea {
  min-height: 7.25rem;
  resize: vertical;
}

.btn {
  padding: 0.875rem 1.125rem;
  border: 0;
  border-radius: 0.25rem;
  background: #0f5fad;
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0.625rem 1.125rem rgba(15, 95, 173, 0.24);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;

  &:hover {
    transform: translateY(-0.0625rem);
    background: #0c559b;
  }

  &:active {
    transform: translateY(0);
  }
}

.about {
  padding: 4rem 0 5rem;
  text-align: center;

  p {
    width: min(57.5rem, 100%);
    margin: 0 auto;
    color: #5f6d79;
    font-size: 1.05rem;
  }

  @media (max-width: 45rem) {
    padding-top: 3.25rem;
    padding-bottom: 3.5rem;
  }
}

footer {
  padding: 1.375rem 1rem 1rem;
  text-align: center;
  font-size: 0.88rem;

  >div {
    font-weight: 300;
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }

  a {
    text-decoration: underline;
  }
}
