:root {
  --sw-ink: #0b0c0e;
  --sw-paper: #f7f6f1;
  --sw-white: #ffffff;
  --sw-line: #0b0c0e;
  --sw-muted: #60636b;
  --sw-accent: #ff5d7d;
  --sw-accent-2: #f4f61c;
  --sw-container: 1200px;
  --sw-shadow: 6px 6px 0 var(--sw-ink);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--sw-paper);
  color: var(--sw-ink);
  font-family: Inter, "Helvetica Neue", Arial, "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  letter-spacing: 0;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

.sw-page-opening {
  --sw-opening-panel: var(--sw-accent);
  --sw-opening-highlight: var(--sw-accent-2);
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0;
  overflow: hidden;
  background: var(--sw-ink);
  color: var(--sw-white);
  pointer-events: none;
  animation: sw-page-opening-away 900ms cubic-bezier(.77, 0, .18, 1) 500ms both;
}

.sw-page-opening::before {
  content: "";
  position: absolute;
  inset: 0 50% 0 0;
  background: var(--sw-opening-panel);
  animation: sw-page-opening-panel 580ms cubic-bezier(.77, 0, .18, 1) 260ms both;
}

.sw-page-opening span {
  position: relative;
  z-index: 1;
  font-size: clamp(44px, 8vw, 124px);
  font-weight: 950;
  line-height: .82;
  text-align: center;
  text-transform: uppercase;
}

.sw-page-opening span:last-child {
  color: var(--sw-opening-highlight);
  -webkit-text-stroke: 2px var(--sw-ink);
}

.td-body .sw-page-opening {
  --sw-opening-panel: var(--td-cyan);
  --sw-opening-highlight: var(--sw-accent-2);
}

.biz-body .sw-page-opening {
  --sw-opening-panel: var(--biz-green);
  --sw-opening-highlight: var(--sw-accent-2);
}

@keyframes sw-page-opening-panel {
  to { transform: translateX(-110%); }
}

@keyframes sw-page-opening-away {
  0% { clip-path: inset(0); }
  100% { clip-path: inset(0 0 100% 0); visibility: hidden; }
}

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

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

svg {
  width: 1em;
  height: 1em;
}

.sw-container {
  width: min(calc(100% - 64px), var(--sw-container));
  margin-inline: auto;
}

.sw-skip {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  translate: 0 -140%;
  padding: 10px 14px;
  border: 2px solid var(--sw-ink);
  background: var(--sw-accent-2);
  font-weight: 900;
}

.sw-skip:focus {
  translate: 0 0;
}

.sw-header {
  position: fixed;
  z-index: 200;
  top: 18px;
  right: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  pointer-events: none;
}

.sw-header > * {
  pointer-events: auto;
}

.sw-brand {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  border: 2px solid var(--sw-ink);
  background: var(--sw-white);
  box-shadow: 4px 4px 0 var(--sw-ink);
}

.sw-brand-mark {
  display: grid;
  place-items: center;
  align-self: stretch;
  width: 56px;
  border-right: 2px solid var(--sw-ink);
  background: var(--sw-accent);
  color: var(--sw-white);
  font-size: 16px;
  font-weight: 950;
}

.sw-brand-copy {
  display: grid;
  padding: 8px 15px;
  line-height: 1.1;
}

.sw-brand-copy strong {
  font-size: 13px;
  font-weight: 950;
}

.sw-brand-copy small {
  margin-top: 4px;
  color: var(--sw-muted);
  font-size: 8px;
  font-weight: 850;
}

.sw-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 50px;
  border: 2px solid var(--sw-ink);
  background: var(--sw-ink);
  box-shadow: 4px 4px 0 var(--sw-accent);
}

.sw-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 17px;
  color: var(--sw-white);
  font-size: 11px;
  font-weight: 850;
}

.sw-nav a:hover,
.sw-nav a[aria-current="page"] {
  background: var(--sw-accent-2);
  color: var(--sw-ink);
}

.sw-header-cta,
.sw-menu-button {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 0;
  border: 2px solid var(--sw-ink);
  background: var(--sw-accent-2);
  box-shadow: 4px 4px 0 var(--sw-ink);
  color: var(--sw-ink);
  cursor: pointer;
}

.sw-header-cta svg,
.sw-menu-button svg {
  width: 22px;
  height: 22px;
}

.sw-menu-button {
  display: none;
}

.sw-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 5px 9px;
  border: 2px solid currentColor;
  font-size: 10px;
  font-weight: 950;
  line-height: 1.2;
}

.sw-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--sw-accent);
}

.sw-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.sw-section-head h2 {
  max-width: 760px;
  margin: 0;
  font-size: 48px;
  font-weight: 950;
  line-height: 1.16;
}

.sw-section-head > p {
  margin: 0;
  color: var(--sw-muted);
  font-size: 14px;
  font-weight: 650;
}

.sw-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 12px 20px;
  border: 2px solid var(--sw-ink);
  background: var(--sw-white);
  color: var(--sw-ink);
  font-size: 12px;
  font-weight: 950;
  transition: translate 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.sw-button:hover {
  translate: -2px -2px;
}

.sw-button-primary {
  background: var(--sw-ink);
  box-shadow: 5px 5px 0 var(--sw-accent);
  color: var(--sw-white);
}

.sw-button-primary:hover {
  background: var(--sw-accent);
  box-shadow: 7px 7px 0 var(--sw-ink);
}

.sw-button-light {
  background: var(--sw-white);
  box-shadow: 4px 4px 0 var(--sw-ink);
}

.sw-button-light:hover {
  background: var(--sw-accent-2);
}

.sw-proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 2px solid var(--sw-ink);
  background: var(--sw-white);
}

.sw-proof > div {
  min-height: 104px;
  padding: 22px 28px;
  border-left: 2px solid var(--sw-ink);
}

.sw-proof > div:first-child {
  border-left: 0;
}

.sw-proof strong,
.sw-proof span {
  display: block;
}

.sw-proof strong {
  font-size: 22px;
  font-weight: 950;
  line-height: 1.2;
}

.sw-proof span {
  margin-top: 5px;
  color: var(--sw-muted);
  font-size: 10px;
  font-weight: 750;
}

.sw-contact {
  padding: 112px 0 128px;
  border-top: 3px solid var(--sw-ink);
  background: var(--sw-accent-2);
}

.sw-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(500px, 1.18fr);
  gap: 70px;
  align-items: start;
}

.sw-contact-copy h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 950;
  line-height: 1.15;
}

.sw-contact-copy > p:not(.sw-kicker) {
  max-width: 520px;
  margin: 24px 0 0;
  font-size: 14px;
  font-weight: 700;
}

.sw-contact-points {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.sw-contact-points li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  font-weight: 850;
}

.sw-contact-points svg {
  color: var(--sw-accent);
}

.sw-form {
  display: grid;
  gap: 18px;
  padding: 34px;
  border: 3px solid var(--sw-ink);
  background: var(--sw-white);
  box-shadow: 8px 8px 0 var(--sw-ink);
}

.sw-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.sw-form label {
  display: grid;
  gap: 7px;
  color: var(--sw-ink);
  font-size: 11px;
  font-weight: 900;
}

.sw-form input,
.sw-form select,
.sw-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  border: 2px solid var(--sw-ink);
  border-radius: 0;
  background: var(--sw-white);
  color: var(--sw-ink);
  font-size: 13px;
}

.sw-form textarea {
  min-height: 130px;
  resize: vertical;
}

.sw-form input:focus,
.sw-form select:focus,
.sw-form textarea:focus {
  outline: 3px solid var(--sw-accent);
  outline-offset: 1px;
}

.sw-consent {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 9px !important;
  font-weight: 700 !important;
}

.sw-consent input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
}

.sw-consent a {
  text-decoration: underline;
}

.sw-form-note {
  min-height: 1.6em;
  margin: 0;
  color: var(--sw-muted);
  font-size: 10px;
  font-weight: 700;
}

.sw-form-note.is-error {
  color: #b42318;
}

.sw-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.sw-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: end;
  padding: 54px max(32px, calc((100% - var(--sw-container)) / 2));
  border-top: 2px solid var(--sw-ink);
  background: var(--sw-ink);
  color: var(--sw-white);
}

.sw-footer h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.15;
}

.sw-footer p {
  margin: 10px 0 0;
  color: #bfc0c4;
  font-size: 11px;
}

.sw-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 11px;
  font-weight: 800;
}

.sw-mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .sw-container {
    width: min(calc(100% - 40px), var(--sw-container));
  }

  .sw-header {
    grid-template-columns: auto 1fr auto;
    right: 14px;
    left: 14px;
  }

  .sw-menu-button {
    display: inline-grid;
    justify-self: end;
  }

  .sw-header-cta {
    display: none;
  }

  .sw-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    justify-self: stretch;
    align-items: stretch;
    padding: 12px;
    box-shadow: 6px 6px 0 var(--sw-accent);
  }

  .sw-nav.is-open {
    display: grid;
  }

  .sw-nav a {
    min-height: 48px;
    border-bottom: 1px solid #35363a;
  }

  .sw-section-head,
  .sw-contact-layout {
    grid-template-columns: 1fr;
  }

  .sw-proof {
    grid-template-columns: 1fr 1fr;
  }

  .sw-proof > div:nth-child(3) {
    border-top: 2px solid var(--sw-ink);
    border-left: 0;
  }

  .sw-proof > div:nth-child(4) {
    border-top: 2px solid var(--sw-ink);
  }

  .sw-contact-layout {
    gap: 44px;
  }
}

@media (max-width: 600px) {
  body {
    padding-bottom: 72px;
  }

  .sw-container {
    width: min(calc(100% - 28px), var(--sw-container));
  }

  .sw-header {
    top: 12px;
  }

  .sw-brand {
    min-height: 52px;
  }

  .sw-brand-mark {
    width: 48px;
  }

  .sw-brand-copy {
    padding-inline: 11px;
  }

  .sw-brand-copy strong {
    font-size: 11px;
  }

  .sw-brand-copy small {
    display: none;
  }

  .sw-menu-button {
    width: 52px;
    height: 52px;
  }

  .sw-section-head {
    gap: 18px;
    margin-bottom: 34px;
  }

  .sw-section-head h2,
  .sw-contact-copy h2 {
    font-size: 34px;
  }

  .sw-section-head > p {
    font-size: 12px;
  }

  .sw-proof > div {
    min-height: 90px;
    padding: 18px 16px;
  }

  .sw-proof strong {
    font-size: 18px;
  }

  .sw-contact {
    padding: 80px 0 96px;
  }

  .sw-form {
    gap: 15px;
    padding: 22px 18px;
    box-shadow: 5px 5px 0 var(--sw-ink);
  }

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

  .sw-footer {
    grid-template-columns: 1fr;
    padding: 42px 20px;
  }

  .sw-footer nav {
    justify-content: flex-start;
  }

  .sw-mobile-cta {
    position: fixed;
    z-index: 210;
    right: 14px;
    bottom: 12px;
    left: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 54px;
    border: 2px solid var(--sw-ink);
    background: var(--sw-accent-2);
    box-shadow: 4px 4px 0 var(--sw-ink);
    color: var(--sw-ink);
    font-size: 12px;
    font-weight: 950;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sw-page-opening {
    display: none;
  }

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
